:root {
    --primary: #191D66;
    --primary-mid: #323ACC;
    --primary-light-color: #3D3DDE;
    --primary-hover: #323ACC;
    --primary-light: #E7FFDF;
    --primary-rgb: 25, 29, 102;
    --primary-gradient: linear-gradient(135deg, #191D66 0%, #323ACC 100%);
    --secondary: #9DFF78;
    --secondary-light: #E7FFDF;
    --success: #00B91C;
    --danger: #FF2222;
    --danger-dark: #EB4132;
    --warning: #FBBD00;
    --info: #3D3DDE;
    --accent-purple: #8A38F5;

    --bg-body: #F3F3F3;
    --bg-card: #FFFFFF;
    --bg-sidebar: #121218;
    --bg-sidebar-hover: #1C1C26;
    --bg-sidebar-active: #323ACC;
    --bg-navbar: #FFFFFF;
    --bg-input: #FFFFFF;
    --bg-table-header: #F3F3F3;
    --bg-table-row-hover: #F3F3F3;
    --bg-table-stripe: #FAFAFA;
    --bg-modal: #FFFFFF;
    --bg-dropdown: #FFFFFF;
    --bg-badge: #F3F3F3;

    --text-primary: #2D2D2D;
    --text-secondary: #969696;
    --text-muted: #969696;
    --text-sidebar: #969696;
    --text-sidebar-active: #FFFFFF;
    --text-navbar: #2D2D2D;
    --text-link: #323ACC;

    --border-color: #E2E2E2;
    --border-light: #F3F3F3;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);

    --sidebar-width: 260px;
    --sidebar-collapsed-width: 70px;
    --navbar-height: 64px;
    --radius: 8px;
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    --primary: #323ACC;
    --primary-hover: #3D3DDE;
    --primary-rgb: 50, 58, 204;

    --bg-body: #121218;
    --bg-card: #1C1C26;
    --bg-sidebar: #121218;
    --bg-sidebar-hover: #1C1C26;
    --bg-sidebar-active: #323ACC;
    --bg-navbar: #1C1C26;
    --bg-input: #2A2A38;
    --bg-table-header: #2A2A38;
    --bg-table-row-hover: #2A2A38;
    --bg-table-stripe: #1C1C26;
    --bg-modal: #1C1C26;
    --bg-dropdown: #1C1C26;
    --bg-badge: #2A2A38;

    --text-primary: #F3F3F3;
    --text-secondary: #969696;
    --text-muted: #969696;
    --text-sidebar: #969696;
    --text-sidebar-active: #FFFFFF;
    --text-navbar: #F3F3F3;
    --text-link: #9DFF78;

    --border-color: #2A2A38;
    --border-light: #1C1C26;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.5;
    overflow-x: hidden;
}

a { color: var(--text-link); text-decoration: none; }
a:hover { color: var(--primary-hover); }

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--bg-sidebar);
    border-right: 1px solid #2A2A38;
    z-index: 1040;
    transition: width 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar-brand {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #2A2A38;
    height: var(--navbar-height);
}

.sidebar-brand img { width: 36px; height: 36px; border-radius: 8px; }
.sidebar-brand h5 { color: #F3F3F3; font-size: 16px; font-weight: 700; margin: 0; white-space: nowrap; }
.sidebar-brand span { color: #969696; font-size: 11px; display: block; }

.sidebar-menu { padding: 12px 0; list-style: none; }
.sidebar-menu-label { padding: 12px 20px 6px; font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.sidebar-menu-item { margin: 2px 8px; }
.sidebar-menu-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: var(--text-sidebar);
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}
.sidebar-menu-item a:hover { background: var(--bg-sidebar-hover); color: #F3F3F3; }
.sidebar-menu-item a.active { background: var(--bg-sidebar-active); color: var(--text-sidebar-active); }
.sidebar-menu-item a i { font-size: 20px; min-width: 20px; }

.sidebar-toggle {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 1050;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

/* Desktop Sidebar Toggle */
.desktop-sidebar-toggle {
    display: none;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: var(--transition);
}
.desktop-sidebar-toggle:hover { background: rgba(255,255,255,0.25); }

@media (min-width: 992px) {
    .desktop-sidebar-toggle { display: flex; }
    
    /* Sidebar collapsed state */
    .sidebar.collapsed {
        width: var(--sidebar-collapsed-width);
    }
    .sidebar.collapsed .sidebar-brand {
        padding: 16px 12px;
        justify-content: center;
    }
    .sidebar.collapsed .sidebar-brand > div {
        display: none;
    }
    .sidebar.collapsed .sidebar-brand img {
        margin: 0;
    }
    .sidebar.collapsed .sidebar-menu-label {
        visibility: hidden;
        height: 0;
        padding: 0;
        margin: 0;
        overflow: hidden;
    }
    .sidebar.collapsed .sidebar-menu-item a {
        justify-content: center;
        padding: 12px;
    }
    .sidebar.collapsed .sidebar-menu-item a span {
        display: none;
    }
    .sidebar.collapsed .sidebar-menu-item a i {
        margin: 0;
        font-size: 22px;
    }
    
    /* Main content adjustment when sidebar collapsed */
    .main-content.sidebar-collapsed {
        margin-left: var(--sidebar-collapsed-width);
    }
    
    /* Hamburger position when sidebar collapsed */
    .navbar.sidebar-collapsed .navbar-left {
        padding-left: 0;
    }
    .navbar.sidebar-collapsed .desktop-sidebar-toggle {
        order: -1;
        margin-right: 16px;
    }
    
    /* Hamburger position when sidebar expanded (before title) */
    .navbar:not(.sidebar-collapsed) .desktop-sidebar-toggle {
        order: -1;
        margin-right: 16px;
    }
    .navbar:not(.sidebar-collapsed) .navbar-right {
        margin-left: auto;
    }
    
    /* Tooltip for collapsed sidebar */
    .sidebar.collapsed .sidebar-menu-item {
        position: relative;
    }
    .sidebar.collapsed .sidebar-menu-item a::after {
        content: attr(data-tooltip);
        position: absolute;
        left: 100%;
        top: 50%;
        transform: translateY(-50%);
        background: #1C1C26;
        color: #F3F3F3;
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 13px;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, visibility 0.2s ease;
        margin-left: 10px;
        z-index: 1100;
        box-shadow: var(--shadow-md);
    }
    .sidebar.collapsed .sidebar-menu-item a:hover::after {
        opacity: 1;
        visibility: visible;
    }
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1035;
}

.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

.navbar {
    height: var(--navbar-height);
    background: linear-gradient(135deg, #191D66 0%, #323ACC 100%);
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: var(--shadow-md);
}

.navbar-left { display: flex; align-items: center; gap: 16px; }
.navbar-left h4 { font-size: 18px; font-weight: 700; color: #FFFFFF; margin: 0; }

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

.theme-toggle {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #FFFFFF;
    transition: var(--transition);
}
.theme-toggle:hover { background: rgba(255,255,255,0.25); }

.admin-dropdown { position: relative; }
.admin-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    cursor: pointer;
    transition: var(--transition);
}
.admin-dropdown-toggle:hover { background: rgba(255,255,255,0.2); }
.admin-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}
.admin-info { text-align: left; }
.admin-name { font-size: 13px; font-weight: 600; color: #FFFFFF; }
.admin-role { font-size: 11px; color: rgba(255,255,255,0.7); }

.dropdown-menu-custom {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 8px;
    background: var(--bg-dropdown);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    display: none;
    z-index: 1050;
    overflow: hidden;
}
.dropdown-menu-custom.show { display: block; }
.dropdown-menu-custom a, .dropdown-menu-custom button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--text-primary);
    font-size: 13px;
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
}
.dropdown-menu-custom a:hover, .dropdown-menu-custom button:hover { background: var(--bg-table-row-hover); }
.dropdown-menu-custom .divider { height: 1px; background: var(--border-color); margin: 4px 0; }
.dropdown-menu-custom .version { padding: 8px 16px; font-size: 11px; color: var(--text-muted); }

.content-wrapper { padding: 24px; }

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}
.card-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.card-header h5 { font-size: 15px; font-weight: 600; margin: 0; }
.card-body { padding: 20px; }

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 12px;
}
.stat-value { font-size: 28px; font-weight: 700; color: var(--text-primary); }
.stat-label { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }

.table-container { overflow-x: auto; }
table {
    width: 100%;
    border-collapse: collapse;
}
table thead th {
    background: var(--bg-table-header);
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
    text-align: left;
}
table tbody td {
    padding: 12px 16px;
    font-size: 13px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}
table tbody tr:hover { background: var(--bg-table-row-hover); }
table tbody tr:nth-child(even) { background: var(--bg-table-stripe); }
table tbody tr:nth-child(even):hover { background: var(--bg-table-row-hover); }

.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.badge-success { background: rgba(0,185,28,0.1); color: #00B91C; }
.badge-danger { background: rgba(255,34,34,0.1); color: #FF2222; }
.badge-warning { background: rgba(251,189,0,0.1); color: #D9A200; }
.badge-info { background: rgba(61,61,222,0.1); color: #3D3DDE; }
.badge-primary { background: rgba(25,29,102,0.1); color: #191D66; }
.badge-purple { background: rgba(138,56,245,0.1); color: #8A38F5; }
[data-theme="dark"] .badge-success { background: rgba(0,185,28,0.2); color: #4AE65A; }
[data-theme="dark"] .badge-danger { background: rgba(255,34,34,0.2); color: #FF6B6B; }
[data-theme="dark"] .badge-warning { background: rgba(251,189,0,0.2); color: #FBBD00; }
[data-theme="dark"] .badge-info { background: rgba(61,61,222,0.2); color: #7B7BFF; }
[data-theme="dark"] .badge-primary { background: rgba(50,58,204,0.2); color: #8B8FFF; }
[data-theme="dark"] .badge-purple { background: rgba(138,56,245,0.2); color: #B87EFF; }

.btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary { background: var(--primary-gradient); color: #fff; border: none; }
.btn-primary:hover { opacity: 0.9; }
.btn-outline { background: transparent; color: var(--text-primary); border-color: var(--border-color); }
.btn-outline:hover { background: var(--bg-table-row-hover); border-color: var(--primary); color: var(--primary); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: var(--danger-dark); }
.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { opacity: 0.9; }
.btn-secondary { background: var(--secondary); color: #2D2D2D; border: none; }
.btn-secondary:hover { opacity: 0.85; }
.btn-sm { padding: 5px 10px; font-size: 12px; }
.btn-icon { padding: 6px; width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; }
.btn-group { display: flex; gap: 6px; }

.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--text-primary); margin-bottom: 6px; }
.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 13px;
    background: var(--bg-input);
    color: var(--text-primary);
    transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(var(--primary-rgb),0.1); }
.form-control::placeholder { color: var(--text-muted); }
.form-select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 13px;
    background: var(--bg-input);
    color: var(--text-primary);
    cursor: pointer;
}
.form-select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(var(--primary-rgb),0.1); }

.search-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}
.search-bar .form-control { max-width: 280px; }
.search-bar .form-select { max-width: 180px; }

.pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 12px;
}
.pagination-info { font-size: 13px; color: var(--text-secondary); }
.pagination-controls { display: flex; gap: 4px; }
.pagination-controls button {
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-primary);
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: var(--transition);
}
.pagination-controls button:hover:not(:disabled) { border-color: var(--primary); color: var(--primary); }
.pagination-controls button.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination-controls button:disabled { opacity: 0.5; cursor: not-allowed; }

.toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #CBD5E1;
    border-radius: 24px;
    transition: var(--transition);
}
.toggle-slider:before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: var(--transition);
}
.toggle-switch input:checked + .toggle-slider { background: var(--success); }
.toggle-switch input:checked + .toggle-slider:before { transform: translateX(20px); }

.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1060;
    align-items: center;
    justify-content: center;
}
.modal-overlay.show { display: flex; }
.modal-content {
    background: var(--bg-modal);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-header h5 { font-size: 16px; font-weight: 600; margin: 0; }
.modal-close { background: none; border: none; font-size: 20px; cursor: pointer; color: var(--text-secondary); padding: 4px; }
.modal-body { padding: 20px; }
.modal-footer { padding: 16px 20px; border-top: 1px solid var(--border-color); display: flex; justify-content: flex-end; gap: 8px; }

.tab-nav { display: flex; gap: 0; border-bottom: 2px solid var(--border-color); overflow-x: auto; overflow-y: visible; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.tab-nav::-webkit-scrollbar { display: none; }
.tab-nav button {
    padding: 12px 20px;
    border: none;
    background: none;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}
.tab-nav button:hover { color: var(--primary); }
.tab-nav button.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content { display: none; padding: 20px 0; }
.tab-content.active { display: block; }

.config-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.config-item { padding: 12px 16px; background: var(--bg-badge); border-radius: 6px; }
.config-item-label { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.config-item-value { font-size: 15px; font-weight: 600; color: var(--text-primary); margin-top: 4px; }

.loading-spinner { text-align: center; padding: 40px; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.empty-state i { font-size: 48px; margin-bottom: 12px; display: block; }
.empty-state p { font-size: 14px; }

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #191D66 0%, #323ACC 100%);
    padding: 20px;
}
.login-card {
    background: var(--bg-card);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 420px;
    padding: 40px;
}
.login-card h2 { font-size: 24px; font-weight: 700; text-align: center; margin-bottom: 8px; color: var(--text-primary); }
.login-card p.subtitle { font-size: 14px; color: var(--text-secondary); text-align: center; margin-bottom: 32px; }
.login-logo { text-align: center; margin-bottom: 24px; }
.login-logo i { font-size: 48px; color: var(--primary); }

@media (max-width: 991px) {
    .sidebar { left: -280px; }
    .sidebar.show { left: 0; }
    .sidebar-toggle { display: flex; }
    .sidebar-overlay.show { display: block; }
    .main-content { margin-left: 0; }
    .content-wrapper { padding: 16px; }
    .search-bar .form-control, .search-bar .form-select { max-width: 100%; flex: 1; min-width: 150px; }
    .config-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
    .navbar { padding: 0 16px 0 70px; }
    .navbar-left { flex: 1; min-width: 0; }
    .navbar-left h4 { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

@media (max-width: 576px) {
    .card-header { flex-direction: column; align-items: flex-start; }
    .stat-value { font-size: 20px; }
    .stat-card { padding: 14px; }
    .stat-icon { width: 40px; height: 40px; font-size: 20px; border-radius: 10px; margin-bottom: 8px; }
    .navbar { padding: 0 12px 0 60px; }
    .navbar-left { flex: 1; min-width: 0; }
    .navbar-left h4 { font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; min-width: 0; }
    .admin-info { display: none; }
    .pagination-wrapper { flex-direction: column; text-align: center; }
    .search-bar { flex-direction: column; }
    .search-bar .form-control, .search-bar .form-select { max-width: 100%; min-width: unset; }
    .config-grid { grid-template-columns: 1fr; }
    .btn-group { flex-wrap: wrap; }
    table { font-size: 12px; }
    table thead th { padding: 8px 10px; font-size: 10px; }
    table tbody td { padding: 8px 10px; font-size: 12px; }
    .tab-nav button { padding: 10px 14px; font-size: 12px; }
    .content-wrapper { padding: 12px; }
    .card-body { padding: 14px; }
}

@media (max-width: 400px) {
    .navbar-left h4 { max-width: 100px; font-size: 13px; }
    .stat-value { font-size: 18px; }
}

@media print {
    .sidebar, .navbar, .sidebar-toggle, .no-print { display: none !important; }
    .main-content { margin-left: 0 !important; }
}
