/* ============================================
   DASHBOARD STYLES
============================================ */

/* Sidebar */
.dashboard-sidebar {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    padding: 24px;
    position: sticky;
    top: 100px;
}

.dashboard-sidebar .user-card {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.dashboard-sidebar .user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #075a9f;
    padding: 3px;
    margin: 0 auto 12px;
    background: #fff;
}

.dashboard-sidebar .user-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.dashboard-sidebar .user-email {
    font-size: 13px;
    color: #6c757d;
    word-break: break-all;
}

.dashboard-sidebar .profile-completion {
    margin-top: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.dashboard-sidebar .profile-completion .progress {
    height: 6px;
    border-radius: 10px;
    background: #e9ecef;
}

.dashboard-sidebar .profile-completion .progress-bar {
    background: linear-gradient(90deg, #075a9f, #00b4d8);
    border-radius: 10px;
}

.dashboard-sidebar .nav-menu {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.dashboard-sidebar .nav-menu li {
    margin-bottom: 2px;
}

.dashboard-sidebar .nav-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    color: #4a4a5a;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.dashboard-sidebar .nav-menu li a:hover {
    background: #e8f0fe;
    color: #075a9f;
}

.dashboard-sidebar .nav-menu li a.active {
    background: #075a9f;
    color: #fff;
}

.dashboard-sidebar .nav-menu li a i {
    width: 20px;
    font-size: 16px;
    text-align: center;
}

.dashboard-sidebar .nav-menu li a .badge {
    margin-left: auto;
    background: #dc3545;
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 50px;
    min-width: 20px;
    text-align: center;
}

/* Application Status Badges */
.badge-pending { background: #fff3cd; color: #856404; }
.badge-reviewed { background: #cce5ff; color: #004085; }
.badge-shortlisted { background: #d1ecf1; color: #0c5460; }
.badge-interview { background: #d4edda; color: #155724; }
.badge-offered { background: #c3e6cb; color: #155724; }
.badge-rejected { background: #f8d7da; color: #721c24; }
.badge-withdrawn { background: #e2e3e5; color: #383d41; }

/* Responsive */
@media (max-width: 992px) {
    .dashboard-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .dashboard-sidebar {
        padding: 16px;
    }
    .dashboard-sidebar .user-avatar {
        width: 60px;
        height: 60px;
    }
    .dashboard-sidebar .user-name {
        font-size: 16px;
    }
    .dashboard-sidebar .nav-menu li a {
        padding: 8px 12px;
        font-size: 13px;
    }
}