/* Ultra Modern Dark Blue & White Theme */
:root {
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-darker: #1e293b;
    --primary-light: #dbeafe;
    --secondary: #374151;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    
    --dark: #111827;
    --darker: #0f172a;
    --light: #f8fafc;
    --lighter: #fcfdff;
    --white: #ffffff;
    --gray: #6b7280;
    --gray-light: #d1d5db;
    --gray-lighter: #e5e7eb;
    
    --border-radius: 16px;
    --border-radius-lg: 20px;
    --border-radius-xl: 20px;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    
    --transition: ease-in-out 0.1s ;
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f9fcff 100%);
    color: var(--dark);
    line-height: 1.6;
    min-height: 100vh;
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--lighter);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
    transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Ultra Modern Login Page */
.login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 440px;
    padding: 20px;
}

.login-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--glass-shadow);
    padding: 50px 40px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header .logo {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
}

.login-header h2 {
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1.75rem;
}

.login-header p {
    color: var(--gray);
    font-size: 1rem;
}

.login-form .form-group {
    margin-bottom: 24px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    z-index: 2;
}

.login-form input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
    font-weight: 500;
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.btn-login {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--border-radius);
    background: var(--primary);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.btn-login:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* Elegant Blob Backgrounds */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.1;
    z-index: 1;
    animation: float 20s infinite ease-in-out;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 10%;
    left: 10%;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: 10%;
    right: 10%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -40px) scale(1.05);
    }
}

/* Modern Dashboard Layout */
.page-wrapper {
    display: flex;
    min-height: 100vh;
    background: var(--lighter);
}

/* Elegant Sidebar */
.sidebar {
    width: 280px;
    background: var(--white);
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 1000;
    transition: var(--transition);
    transform: translateX(0);
    border-right: 1px solid var(--gray-lighter);
}

.sidebar-header {
    padding: 25px 20px;
    border-bottom: 1px solid var(--gray-lighter);
    background: var(--white);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand .logo {
    font-size: 1.8rem;
    color: var(--primary);
}

.brand-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.3rem;
}

.close-sidebar {
    display: none;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--gray);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.close-sidebar:hover {
    background: var(--lighter);
    color: var(--dark);
}

.sidebar-content {
    padding: 20px 0;
    flex: 1;
    overflow-y: auto;
}

.sidebar-menu {
    list-style: none;
    padding: 0 15px;
}

.menu-section {
    margin-bottom: 25px;
}

.menu-section-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    padding: 0 15px;
}

.menu-item {
    margin-bottom: 4px;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
    border-radius: var(--border-radius);
    font-weight: 500;
    position: relative;
}

.menu-link:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.menu-link.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow);
}

.menu-link i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
}

/* Modern Main Content */
.main-content {
    flex: 1;
    margin-left: 280px;
    transition: var(--transition);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Ultra Modern Header Styles */
.header {
    background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
    backdrop-filter: blur(20px);
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    height: 70px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.toggle-sidebar {
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--border-radius);
    font-size: 1.2rem;
    color: var(--primary);
    cursor: pointer;
    padding: 12px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-sidebar:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.header-title {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.header-title h1 {
    color: var(--dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.3px;
}

.header-subtitle {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 0.2px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Notification Bell */
.notification-bell {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--border-radius);
    padding: 10px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray);
}

.notification-bell:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-1px);
}

.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--danger);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* User Menu - Enhanced */
.user-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.user-menu:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-1px);
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.user-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.9rem;
    letter-spacing: 0.2px;
}

.user-role {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: var(--shadow);
}

/* Search Bar */
.search-container {
    position: relative;
    width: 300px;
}

.search-bar {
    width: 100%;
    padding: 12px 45px 12px 16px;
    border: 1px solid var(--gray-lighter);
    border-radius: var(--border-radius-lg);
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.search-bar:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.search-icon:hover {
    color: var(--primary);
}

/* Quick Actions */
.quick-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-btn {
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: var(--border-radius);
    padding: 10px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.action-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

/* Header Stats */
.header-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 30px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #e0f2fe 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 600;
}

.stat-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background: var(--lighter);
    border-bottom: 1px solid var(--gray-lighter);
    font-size: 0.9rem;
    margin-bottom: 1px;
}

.breadcrumb-item {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item:hover {
    color: var(--primary);
}

.breadcrumb-separator {
    color: var(--gray-light);
}

.breadcrumb-current {
    color: var(--primary);
    font-weight: 600;
}

/* Responsive Header */
@media (max-width: 1200px) {
    .search-container {
        width: 250px;
    }
}

@media (max-width: 992px) {
    .header-container {
        padding: 0 20px;
    }
    
    .search-container {
        display: none;
    }
    
    .header-stats {
        padding: 0 20px;
    }
    
    .breadcrumb {
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .header-title h1 {
        font-size: 1.2rem;
    }
    
    .header-subtitle {
        display: none;
    }
    
    .user-info {
        display: none;
    }
    
    .quick-actions {
        display: none;
    }
    
    .header-stats {
        gap: 15px;
        overflow-x: auto;
        padding: 10px 20px;
    }
    
    .stat-item {
        flex-shrink: 0;
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .header-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .toggle-sidebar {
        padding: 10px;
    }
    
    .user-menu {
        padding: 6px 12px;
    }
    
    .user-avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Modern Content Area */
.content {
    padding: 30px;
    flex: 1;
    background: var(--lighter);
}

/* Elegant Cards - No Top Line */
.card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--gray-lighter);
    transition: var(--transition);
    position: relative;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-lighter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
}

.card-header h3 {
    color: var(--dark);
    font-weight: 600;
    font-size: 1.2rem;
}

.btn-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 6px 12px;
    border-radius: var(--border-radius);
}

.btn-link:hover {
    color: var(--primary-dark);
    background: var(--primary-light);
}

.card-body {
    padding: 24px;
}

/* Modern Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    border: 1px solid var(--gray-lighter);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
    background: var(--primary);
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    line-height: 1;
}

.stat-info p {
    color: var(--gray);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Modern Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

/* Modern Lists */
.list {
    list-style: none;
}

.list-item {
    display: flex;
    align-items: center;
    background: var(--light);
    margin-bottom: 10px;
    justify-content: space-between;
    padding: 12px 20px;
    border-radius: 20px;
    transition: var(--transition);
}

.list-item:hover {
    background: var(--lighter);
    
}

.list-item:last-child {
    border-bottom: none;
}

.list-content h4 {
    color: var(--dark);
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 1rem;
}

.list-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Modern Forms */
.form-group {
    margin-bottom: 0px !important;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-size: 15px;
    /* transition: var(--transition); */
    background: var(--white);
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: var(--gray);
    font-size: 0.85rem;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* Elegant Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: #4b5563;
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
}

.btn-danger:hover {
    background: #dc2626;
}

.btn-info {
    background: var(--info);
    color: var(--white);
}

.btn-info:hover {
    background: #2563eb;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 15px;
}

/* Modern Alerts */
.alert {
    padding: 16px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    border: 1px solid;
    background: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.alert-success {
    border-color: var(--success);
    color: #065f46;
    background: #ecfdf5;
}

.alert-danger {
    border-color: var(--danger);
    color: #7f1d1d;
    background: #fef2f2;
}

/* Ultra Modern Tables */
.table-responsive {
    overflow-x: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    background: var(--white);
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    margin-top: 10px;
}

.table th,
.table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--gray-lighter);
}

.table th {
    background: var(--primary);
    font-weight: 600;
    color: var(--lighter);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table tbody tr {
    transition: var(--transition);
    padding: 10px;
}

 td:hover {
    background: var(--primary);
    color: var(--white);
}

/* Elegant Action Buttons */
.action-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* Modern Badges */
.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: var(--primary);
    color: var(--white);
}

.badge-secondary {
    background: #e5e7eb;
    color: #374151;
}

.badge-info {
    background: #dbeafe;
    color: #1e40af;
}

/* Elegant No Data Message */
.no-data {
    text-align: center;
    color: var(--gray);
    padding: 40px 20px;
    font-style: italic;
}

.no-data::before {
    content: '\f059';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    display: block;
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Modern Profile Layout Styles */
.profile-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.profile-main-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 30px;
    border: 1px solid var(--gray-lighter);
}

.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-info-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 25px;
    border: 1px solid var(--gray-lighter);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-lighter);
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.profile-details h2 {
    color: var(--dark);
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 1.5rem;
}

.profile-details p {
    color: var(--gray);
    font-size: 1rem;
}

/* Form Section Styles */
.form-section {
    margin-bottom: 30px;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section h4 {
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
}

/* Info Grid Styles */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-item {
    margin-bottom: 15px;
}

.info-item label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.info-value {
    color: var(--gray);
    font-size: 0.95rem;
    padding: 8px 0;
}

/* Skills & Education Styles */
.skills-list, .education-list {
    list-style: none;
}

.skills-list li, .education-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-lighter);
    color: var(--gray);
}

.skills-list li:last-child, .education-list li:last-child {
    border-bottom: none;
}

/* Modern Form Layout */
.form-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.form-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 25px;
    border: 1px solid var(--gray-lighter);
}

.form-card .card-header {
    padding: 0 0 20px 0;
    border-bottom: 1px solid var(--gray-lighter);
    margin-bottom: 20px;
}

.form-card .card-header h3 {
    color: var(--dark);
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
}

/* Compact Form Styles */
.compact-form .form-group {
    margin-bottom: 20px;
}

.compact-form .form-group:last-child {
    margin-bottom: 0;
}

.compact-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.compact-form .form-group input,
.compact-form .form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-size: 14px;
    /* transition: var(--transition); */
    background: var(--white);
}

.compact-form .form-group input:focus,
.compact-form .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

/* Table Card Styles */
.table-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-lighter);
    overflow: hidden;
}

.table-card .card-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--gray-lighter);
    background: var(--white);
}

.table-card .card-header h3 {
    color: var(--dark);
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
}

.table-card .card-body {
    padding: 0;
}

/* Action Header */
.action-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 25px;
}

.action-header h1 {
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

/* Responsive Design for New Layout */
@media (max-width: 1200px) {
    .profile-container {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .form-layout {
        gap: 20px;
    }
}

/* Placeholder Styles */
input::placeholder,
select::placeholder,
textarea::placeholder {
    color: var(--gray);
    opacity: 0.7;
    font-weight: 400;
}

/* Compact Action Buttons */
.compact-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

/* Status Badges */
.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-active {
    background: var(--primary);
    color: var(--white);
}

.status-inactive {
    background: #dd2323;
    color: #ffffff;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .profile-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .close-sidebar {
        display: block;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .toggle-sidebar {
        display: block;
    }
    
    .sidebar-overlay.active {
        display: block;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .content {
        padding: 20px;
    }
    
    .header {
        padding: 15px 20px;
    }
    
    .header h1 {
        font-size: 1.3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .user-name {
        display: none;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .login-container {
        padding: 15px;
    }
    
    .login-card {
        padding: 40px 25px;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .card-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .action-buttons {
        justify-content: center;
    }
    
    .table-responsive {
        font-size: 0.85rem;
    }
    
 

    .table th,
    .table td {
        padding: 12px 8px;
    }
}

/* SweetAlert Custom Styles */
.swal2-popup {
    border-radius: var(--border-radius-lg) !important;
    box-shadow: var(--shadow-xl) !important;
    border: 1px solid var(--gray-lighter) !important;
}

.swal2-title {
    font-weight: 600 !important;
    color: var(--dark) !important;
}

.swal2-confirm {
    background: var(--primary) !important;
    border: none !important;
    border-radius: var(--border-radius) !important;
    font-weight: 600 !important;
}