    .admin-wrapper {
            display: flex;
            min-height: 100vh;
        }
        
        .sidebar {
            width: 260px;
            background: linear-gradient(180deg, #005D5D 10%, #003D3D 100%);
            color: white;
            min-height: 100vh;
            position: fixed;
            left: 0;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            overflow-y: auto;
            overflow-x: hidden;
        }
        
        .sidebar::-webkit-scrollbar {
            width: 6px;
        }
        
        .sidebar::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.1);
        }
        
        .sidebar::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 3px;
        }
        
        .sidebar-userbrand {
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }
        
        .sidebar-brand:hover {
            background: rgba(255, 255, 255, 0.05);
        }
        
        .sidebar-user-info {
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding: 0.75rem 0;
            margin-bottom: 0.5rem;
        }
        

    .main-content {
        flex: 1;
        padding-top: 80px; /* Ensures content doesn't hide behind a fixed header */
    }

    .dashboard-container {
        flex: 1;
        margin: 0 auto;
        padding: 24px;
    }

    .dashboard-main {
        width: 100%;
    }

    /* Mobile Responsiveness */
    @media (max-width: 991.98px) {
        .sidebar {
            /* Hide off-screen by default on mobile */
            top: 20;
            height: 100vh;
            z-index: 1050;
        }
        
        .sidebar.show {
            left: 0; /* Slide in when active */
        }
        
        .main-content {
            margin-left: 0; /* Reset margin on mobile so content uses full width */
            width: 100%;
        }
        
        .dashboard-container {
            padding: 16px;
        }
    }

    /* Priority Alert Cards */
    .priority-alert-card {
        background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
        color: white;
        border: none;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .priority-alert-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
    }

    .priority-alert-icon {
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    /* Stat Cards with Icons */
    .elite-stat-card {
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        padding: 20px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .elite-stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--audit-primary);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .elite-stat-card:hover::before {
        transform: scaleY(1);
    }

    .elite-stat-card:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        transform: translateY(-4px);
    }

    .elite-stat-icon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        margin-bottom: 12px;
    }

    .elite-stat-value {
        font-size: 32px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 4px;
    }

    .elite-stat-label {
        font-size: 14px;
        color: #6c757d;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 500;
    }

    .elite-stat-trend {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        font-size: 12px;
        padding: 2px 8px;
        border-radius: 12px;
        font-weight: 600;
        margin-top: 8px;
    }

    .trend-up {
        background: rgba(25, 135, 84, 0.1);
        color: #198754;
    }

    .trend-down {
        background: rgba(220, 53, 69, 0.1);
        color: #dc3545;
    }

    /* Collapsible Sections */
    .collapsible-section {
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        margin-bottom: 24px;
        overflow: hidden;
    }

    .section-header {
        padding: 20px 24px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-bottom: 1px solid #dee2e6;
        cursor: pointer;
        user-select: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background 0.2s ease;
    }

    .section-header:hover {
        background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    }

    .section-header h5 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .section-toggle {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease, background 0.2s ease;
    }

    .section-header[aria-expanded="true"] .section-toggle {
        transform: rotate(180deg);
    }

    .section-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .section-content.expanded {
        max-height: 2000px; /* Large enough for content */
    }

    .section-body {
        padding: 24px;
    }

    /* Quick Actions Sidebar */
    .quick-actions-sidebar {
        position: sticky;
        top: 100px;
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        padding: 20px;
    }

    .quick-action-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        background: white;
        border: 2px solid #e9ecef;
        border-radius: 8px;
        text-decoration: none;
        color: #212529;
        font-weight: 500;
        transition: all 0.2s ease;
        margin-bottom: 12px;
    }

    .quick-action-btn:hover {
        background: var(--audit-primary);
        color: white;
        border-color: var(--audit-primary);
        transform: translateX(4px);
    }

    .quick-action-icon {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        background: rgba(25, 135, 84, 0.1);
        color: var(--audit-primary);
        transition: all 0.2s ease;
    }

    .quick-action-btn:hover .quick-action-icon {
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }

    /* Chart Container */
    .chart-container {
        position: relative;
        height: 300px;
        margin-top: 20px;
    }

    /* Empty State */
    .empty-state {
        text-align: center;
        padding: 60px 20px;
    }

    .empty-state-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 40px;
        color: #6c757d;
    }

    .empty-state-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 8px;
        color: #212529;
    }

    .empty-state-description {
        font-size: 14px;
        color: #6c757d;
        margin-bottom: 24px;
    }

    /* Compact List Items */
    .compact-list-item {
        padding: 12px 16px;
        border-bottom: 1px solid #e9ecef;
        transition: background 0.2s ease;
    }

    .compact-list-item:hover {
        background: #f8f9fa;
    }

    .compact-list-item:last-child {
        border-bottom: none;
    }

    /* Badge Variants */
    .badge-priority-critical {
        background: #dc3545;
        color: white;
    }

    .badge-priority-high {
        background: #fd7e14;
        color: white;
    }

    .badge-priority-medium {
        background: #ffc107;
        color: #212529;
    }

    .badge-priority-low {
        background: #6c757d;
        color: white;
    }

    /* Smart Notification */
    .smart-notification {
        background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
        color: white;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 24px;
        box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
    }

    .notification-progress {
        height: 8px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 4px;
        overflow: hidden;
        margin-top: 12px;
    }

    .notification-progress-bar {
        height: 100%;
        background: white;
        border-radius: 4px;
        transition: width 0.6s ease;
    }

    /* Responsive adjustments */
    @media (max-width: 767.98px) {
        .elite-stat-card {
            padding: 16px;
        }
        
        .elite-stat-value {
            font-size: 28px;
        }
        
        .quick-actions-sidebar {
            position: static;
            margin-top: 24px;
        }
        
        .chart-container {
            height: 250px;
        }
    }

    /* Focus states for accessibility */
    .section-header:focus,
    .quick-action-btn:focus {
        outline: 3px solid var(--audit-primary);
        outline-offset: 2px;
    }

    /* Print styles */
    @media print {
        .quick-actions-sidebar,
        .section-toggle {
            display: none;
        }
        
        .section-content {
            max-height: none !important;
        }
    }