/* Light Theme - Clean and Professional */
* {
    font-family: 'Inter', sans-serif;
}

body {
    background: #ffffff;
    min-height: 100vh;
}

.navbar {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 10000 !important;
}

.navbar-brand {
    font-weight: 700;
    color: #0d6efd !important;
    font-size: 1.5rem;
}

.card {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background: white;
}

.card-header {
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
    border-radius: 10px 10px 0 0 !important;
}

.stat-card {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    padding: 0.6rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 1.2rem;
    color: #0d6efd;
    margin-right: 0.75rem;
}

.info-item strong {
    color: #212529;
    margin-right: 0.5rem;
}

.info-item span {
    color: #6c757d;
}

/* User Avatar */
.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #212529;
}

.user-avatar.small {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
}