/* ===== CSS VARIABLES ===== */
:root {
    --primary: #1a4f6e;
    --primary-light: #2d7da8;
    --primary-dark: #0f2f42;
    --accent: #e8a020;
    --accent-light: #f5c45e;
    --success: #2e7d52;
    --danger: #c0392b;
    --warning: #d68910;
    --info: #2471a3;
    --bg: #f0f4f8;
    --bg-card: #ffffff;
    --text: #1a2332;
    --text-muted: #6b7a8d;
    --border: #dde3ec;
    --sidebar-w: 260px;
    --sidebar-bg: linear-gradient(175deg, #0f2f42 0%, #1a4f6e 50%, #1a6b8a 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --radius: 14px;
    --radius-sm: 8px;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    font-size: 14px;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===== SIDEBAR ===== */
.sidebar {
    width: var(--sidebar-w);
    min-height: 100vh;
    background: var(--sidebar-bg);
    position: fixed;
    left: 0; top: 0; bottom: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition);
    box-shadow: 4px 0 30px rgba(0,0,0,0.25);
}

.sidebar-header {
    padding: 28px 20px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.school-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 46px; height: 46px;
    background: var(--accent);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #fff;
    box-shadow: 0 4px 12px rgba(232,160,32,0.4);
    flex-shrink: 0;
}

.school-info {
    display: flex; flex-direction: column;
}

.school-name {
    font-family: var(--font-display);
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
}

.school-loc {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    margin-top: 2px;
}

/* Nav */
.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 16px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
}

.nav-section { margin-bottom: 8px; }

.nav-label {
    display: block;
    font-size: 10px;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.35);
    padding: 10px 22px 4px;
    font-weight: 700;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 22px;
    color: rgba(255,255,255,0.75);
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 0;
    transition: all var(--transition);
    position: relative;
}

.nav-item i { width: 18px; text-align: center; font-size: 15px; flex-shrink: 0; }

.nav-item:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.nav-item.active {
    color: #fff;
    background: rgba(232,160,32,0.2);
}

.nav-item.active::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--accent);
    border-radius: 0 3px 3px 0;
}

/* Sidebar footer */
.sidebar-footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.65);
    font-size: 13.5px;
    font-weight: 500;
    transition: all var(--transition);
    background: rgba(255,255,255,0.05);
}

.logout-btn:hover {
    background: rgba(192,57,43,0.3);
    color: #fff;
}

/* ===== MAIN WRAPPER ===== */
.main-wrapper {
    margin-left: var(--sidebar-w);
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    transition: margin var(--transition);
}

/* ===== TOPBAR ===== */
.topbar {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 28px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}

.menu-toggle {
    display: none;
    background: none; border: none;
    font-size: 20px; color: var(--text-muted);
    cursor: pointer; padding: 6px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.menu-toggle:hover { background: var(--bg); color: var(--primary); }

.topbar-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    flex: 1;
}

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

.tahun-badge {
    background: var(--primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex; align-items: center; gap: 7px;
    letter-spacing: 0.3px;
}

.user-chip {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: flex; align-items: center; gap: 8px;
}

/* ===== PAGE CONTENT ===== */
.page-content {
    padding: 28px;
    flex: 1;
}

/* ===== ALERT ===== */
.alert {
    margin: 16px 28px 0;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; gap: 12px;
    font-size: 13.5px; font-weight: 500;
    animation: slideDown 0.3s ease;
    position: relative;
}
@keyframes slideDown { from { opacity:0; transform: translateY(-10px); } }

.alert-success { background: #d4edda; color: #155724; border: 1px solid #b8ddc1; }
.alert-danger  { background: #f8d7da; color: #721c24; border: 1px solid #f1b0b7; }
.alert-warning { background: #fff3cd; color: #856404; border: 1px solid #ffe69c; }
.alert-info    { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

.alert-close {
    position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
    background: none; border: none; font-size: 18px; cursor: pointer; color: inherit; opacity: 0.6;
}

/* ===== PAGE HEADER ===== */
.page-header {
    margin-bottom: 24px;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

.page-header-left h1 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--primary-dark);
    font-weight: 700;
}

.page-header-left p {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 2px;
}

.breadcrumb {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; color: var(--text-muted);
    margin-bottom: 6px;
}
.breadcrumb span { color: var(--primary); }

/* ===== STAT CARDS ===== */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.stat-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--card-accent, var(--primary));
}

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

.stat-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
    background: var(--card-accent, var(--primary));
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.stat-info { flex: 1; min-width: 0; }

.stat-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Card variants */
.stat-card.blue  { --card-accent: #2471a3; }
.stat-card.green { --card-accent: #2e7d52; }
.stat-card.gold  { --card-accent: #d68910; }
.stat-card.red   { --card-accent: #c0392b; }
.stat-card.teal  { --card-accent: #117a65; }

/* ===== CARDS ===== */
.card {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
}

.card-header {
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    background: linear-gradient(to right, #f8fafc, #fff);
}

.card-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex; align-items: center; gap: 10px;
}

.card-title i { color: var(--accent); }

.card-body { padding: 22px; }

/* ===== TABLE ===== */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-sm);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
}

thead th {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 13px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

thead th:first-child { border-radius: var(--radius-sm) 0 0 0; }
thead th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }

tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}

tbody tr:hover { background: #f8fafc; }
tbody tr:last-child { border-bottom: none; }

tbody td {
    padding: 12px 16px;
    color: var(--text);
    vertical-align: middle;
}

.td-no { color: var(--text-muted); font-weight: 600; }

/* ===== BADGES ===== */
.badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1;
}

.badge-success { background: #d4edda; color: #155724; }
.badge-danger  { background: #f8d7da; color: #721c24; }
.badge-warning { background: #fff3cd; color: #856404; }
.badge-info    { background: #d1ecf1; color: #0c5460; }
.badge-primary { background: #cce5ff; color: #004085; }
.badge-secondary { background: #e2e3e5; color: #383d41; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    outline: none;
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 3px 10px rgba(26,79,110,0.3);
}
.btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); }

.btn-accent {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 3px 10px rgba(232,160,32,0.35);
}
.btn-accent:hover { background: #c8881a; transform: translateY(-1px); }

.btn-success {
    background: var(--success);
    color: #fff;
    box-shadow: 0 3px 10px rgba(46,125,82,0.3);
}
.btn-success:hover { background: #1e5e3c; transform: translateY(-1px); }

.btn-danger {
    background: var(--danger);
    color: #fff;
    box-shadow: 0 3px 10px rgba(192,57,43,0.3);
}
.btn-danger:hover { background: #a93226; transform: translateY(-1px); }

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-sm { padding: 7px 14px; font-size: 12.5px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-icon { padding: 8px; min-width: 36px; justify-content: center; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 18px; }

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 7px;
}

.form-label.required::after { content: ' *'; color: var(--danger); }

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--text);
    background: #fff;
    transition: all var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(45,125,168,0.12);
}

.form-control:disabled {
    background: #f0f4f8;
    cursor: not-allowed;
    color: var(--text-muted);
}

select.form-control { cursor: pointer; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

/* ===== SEARCH & FILTER BAR ===== */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.search-box i {
    position: absolute;
    left: 13px; top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 14px;
}

.search-box input {
    padding-left: 38px;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 200;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; visibility: hidden;
    transition: all var(--transition);
}

.modal-overlay.show { opacity: 1; visibility: visible; }

.modal {
    background: #fff;
    border-radius: var(--radius);
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: scale(0.95);
    transition: transform var(--transition);
}

.modal-overlay.show .modal { transform: scale(1); }

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    border-radius: var(--radius) var(--radius) 0 0;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
}

.modal-close {
    background: rgba(255,255,255,0.15); border: none;
    width: 32px; height: 32px;
    border-radius: 50%; cursor: pointer;
    font-size: 18px; color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.3); }

.modal-body { padding: 24px; }
.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    display: flex; gap: 10px; justify-content: flex-end;
    background: #f8fafc;
}

/* ===== LOGIN PAGE ===== */
.login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.login-page::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(232,160,32,0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
}

.login-card {
    background: #fff;
    border-radius: 24px;
    padding: 48px 44px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.4);
    position: relative;
    z-index: 1;
    animation: loginAppear 0.5s ease;
}

@keyframes loginAppear {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.login-logo {
    text-align: center;
    margin-bottom: 32px;
}

.login-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: #fff;
    margin: 0 auto 16px;
    box-shadow: 0 8px 24px rgba(26,79,110,0.35);
}

.login-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.login-sub {
    font-size: 13px;
    color: var(--text-muted);
}

.login-btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    justify-content: center;
    margin-top: 8px;
}

.login-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== DASHBOARD ===== */
.welcome-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: var(--radius);
    padding: 28px 32px;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.welcome-banner::after {
    content: '\f4b9';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute; right: 28px; bottom: -10px;
    font-size: 100px;
    opacity: 0.07;
}

.welcome-banner h2 {
    font-family: var(--font-display);
    font-size: 26px;
    margin-bottom: 6px;
}

.welcome-banner p { opacity: 0.8; font-size: 14px; }

.accent-dot {
    display: inline-block;
    color: var(--accent-light);
}

/* ===== RECEIPT / KWITANSI ===== */
.receipt {
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 32px;
    max-width: 560px;
    margin: 0 auto;
}

.receipt-header {
    text-align: center;
    border-bottom: 2px dashed var(--border);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.receipt-header h2 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--primary-dark);
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
    border-bottom: 1px solid var(--bg);
    font-size: 13.5px;
}

.receipt-row label { color: var(--text-muted); }
.receipt-row .val { font-weight: 600; text-align: right; }

.receipt-total {
    background: var(--primary);
    color: #fff;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 16px;
    font-size: 16px;
    font-weight: 700;
}

/* ===== UTILITIES ===== */
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-danger { color: var(--danger); }
.text-success { color: var(--success); }
.text-primary { color: var(--primary); }
.fw-bold { font-weight: 700; }
.mt-1 { margin-top: 6px; }
.mt-2 { margin-top: 12px; }
.mt-3 { margin-top: 18px; }
.mb-1 { margin-bottom: 6px; }
.mb-2 { margin-bottom: 12px; }
.mb-3 { margin-bottom: 18px; }
.gap-2 { gap: 8px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }

.empty-state {
    text-align: center;
    padding: 50px 20px;
    color: var(--text-muted);
}

.empty-state i { font-size: 48px; opacity: 0.3; margin-bottom: 12px; display: block; }
.empty-state p { font-size: 14px; }

.rupiah { font-weight: 600; color: var(--primary-dark); }
.rupiah-red { font-weight: 600; color: var(--danger); }

.no-data { 
    padding: 40px; text-align: center; color: var(--text-muted);
    font-style: italic;
}

/* Print styles */
@media print {
    .sidebar, .topbar, .btn:not(.no-print), .filter-bar { display: none !important; }
    .main-wrapper { margin-left: 0; }
    .page-content { padding: 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .sidebar {
        transform: translateX(-100%);
    }
    .sidebar.open {
        transform: translateX(0);
    }
    .main-wrapper {
        margin-left: 0;
    }
    .menu-toggle {
        display: flex;
    }
    .form-grid-2, .form-grid-3 {
        grid-template-columns: 1fr;
    }
    .page-content {
        padding: 18px;
    }
    .stat-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .stat-grid { grid-template-columns: 1fr; }
    .topbar { padding: 0 16px; }
    .tahun-badge { display: none; }
    .login-card { padding: 32px 24px; }
}

/* ===== ANIMATIONS ===== */
.card, .stat-card {
    animation: fadeUp 0.4s ease both;
}
.stat-card:nth-child(1) { animation-delay: 0.05s; }
.stat-card:nth-child(2) { animation-delay: 0.10s; }
.stat-card:nth-child(3) { animation-delay: 0.15s; }
.stat-card:nth-child(4) { animation-delay: 0.20s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Overlay for mobile sidebar */
.sidebar-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99;
}

.sidebar-overlay.show { display: block; }

/* ===== TAMBAHAN FITUR BARU ===== */

/* Rupiah merah untuk tunggakan */
.rupiah-red {
    font-weight: 700;
    color: var(--danger) !important;
}

/* User info di sidebar */
.user-info-sidebar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
}
.user-info-sidebar i {
    font-size: 22px;
    opacity: 0.7;
}

/* Badge secondary */
.badge-secondary {
    background: #e2e8f0;
    color: #64748b;
}

/* Badge success fill */
.badge-success {
    background: rgba(16,185,129,0.12);
    color: var(--success);
}

/* No data row */
td.no-data {
    text-align: center;
    padding: 32px;
    color: var(--text-muted);
    font-size: 13px;
}

/* Export btn */
.btn-success {
    background: var(--success);
    color: #fff;
    border: none;
}
.btn-success:hover {
    background: #059669;
    color: #fff;
}

/* Print styles */
@media print {
    .sidebar, .topbar, .sidebar-overlay { display: none !important; }
    .main-wrapper { margin-left: 0 !important; }
    .menu-toggle { display: none !important; }
    .page-content { padding: 0 !important; }
    .card { box-shadow: none !important; border: 1px solid #ddd !important; page-break-inside: avoid; }
    .btn { display: none !important; }
    .page-header .d-flex { display: none !important; }
    form.filter-bar, form[method="GET"] { display: none !important; }
}
