/* ============================================================
   STYLE: Sistem Informasi Kampung Wisata Tahu Cibuntu
   Tema: Kuning + Putih, Simple & Bersih
   ============================================================ */

:root {
    --primary: #f5b400;
    --primary-dark: #d99e00;
    --primary-light: #fff4d6;
    --text: #2b2b2b;
    --text-muted: #6b6b6b;
    --border: #e8e0cc;
    --bg: #fffdf7;
    --white: #ffffff;
    --success: #2e7d32;
    --success-bg: #e8f5e9;
    --danger: #c62828;
    --danger-bg: #fdecea;
    --warning-bg: #fff8e1;
    --radius: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
}

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

/* ============================================================
   LAYOUT UTAMA (setelah login)
   Tema krem + coklat, satu konsep dengan landing page
   ============================================================ */
.wrapper { display: flex; min-height: 100vh; }

.sidebar {
    width: 230px;
    background: var(--lp-cream, #fdf8ee);
    border-right: 1px solid var(--lp-brown-pale, #efe3d0);
    box-shadow: 2px 0 14px rgba(92,58,30,0.05);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    z-index: 20;
}
.sidebar-header {
    background: var(--lp-brown, #5c3a1e);
    padding: 20px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sidebar-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.45);
    flex-shrink: 0;
}
.sidebar-header h2 {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
}
.sidebar-header span {
    font-size: 10.5px;
    color: var(--lp-yellow-soft, #f3cd7e);
    letter-spacing: 0.02em;
}
.sidebar-menu { flex: 1; padding: 16px 12px; overflow-y: auto; }
.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    margin-bottom: 3px;
    color: var(--lp-brown, #5c3a1e);
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    border-left: 3px solid transparent;
}
.sidebar-menu a .menu-icon { font-size: 15px; width: 18px; text-align: center; flex-shrink: 0; }
.sidebar-menu a:hover { background: var(--lp-brown-pale, #efe3d0); text-decoration: none; }
.sidebar-menu a.active {
    background: var(--lp-yellow, #eab655);
    color: var(--lp-brown, #5c3a1e);
    border-left-color: var(--lp-brown, #5c3a1e);
}
.sidebar-footer {
    padding: 16px 18px;
    border-top: 1px solid var(--lp-brown-pale, #efe3d0);
    background: var(--lp-brown-pale, #efe3d0);
}
.sidebar-footer .user-name { font-weight: 700; font-size: 13px; color: var(--lp-brown, #5c3a1e); }
.sidebar-footer .user-role { font-size: 11px; color: var(--lp-brown-mid, #8a5a2b); margin-bottom: 10px; }

.main { flex: 1; margin-left: 230px; }

.topbar {
    background: var(--white);
    border-bottom: 1px solid var(--lp-brown-pale, #efe3d0);
    box-shadow: 0 1px 4px rgba(92,58,30,0.04);
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
}
.topbar-title { font-size: 18px; font-weight: 700; color: var(--lp-brown, #5c3a1e); }

.content { padding: 28px; }

/* ============================================================
   CARD
   ============================================================ */
.card {
    background: var(--white);
    border: 1px solid var(--lp-brown-pale, #efe3d0);
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(92,58,30,0.05);
    overflow: hidden;
    margin-bottom: 20px;
}
.card-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--lp-brown-pale, #efe3d0);
    background: var(--lp-yellow-pale, #fbf3e1);
}
.card-title { font-size: 14px; font-weight: 700; color: var(--lp-brown, #5c3a1e); }
.card-body { padding: 20px; }

.stat-card {
    background: var(--white);
    border: 1px solid var(--lp-brown-pale, #efe3d0);
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(92,58,30,0.05);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.stat-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--lp-yellow-pale, #fbf3e1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 2px;
}
.stat-card .num { font-size: 26px; font-weight: 800; color: var(--lp-brown, #5c3a1e); }
.stat-card .label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   FORM
   ============================================================ */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.required { color: var(--danger); }

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13.5px;
    font-family: inherit;
    background: var(--white);
    color: var(--text);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}
textarea.form-control { resize: vertical; }
.form-hint { font-size: 11.5px; color: var(--text-muted); margin-top: 5px; }

/* ============================================================
   BUTTON (rounded)
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: 0.15s;
}
.btn-block { width: 100%; }
.btn-lg { padding: 13px 22px; font-size: 14.5px; }
.btn-sm { padding: 6px 16px; font-size: 12px; }

.btn-primary { background: var(--primary); color: #2b2000; }
.btn-primary:hover { background: var(--primary-dark); text-decoration: none; }
.btn-outline { background: var(--white); border: 1.5px solid var(--primary); color: var(--primary-dark); }
.btn-outline:hover { background: var(--primary-light); text-decoration: none; }
.btn-secondary { background: #f0efe9; color: var(--text); }
.btn-secondary:hover { background: #e5e3da; text-decoration: none; }
.btn-danger { background: var(--danger-bg); color: var(--danger); }
.btn-danger:hover { background: #f8d3d0; text-decoration: none; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ============================================================
   TABLE (polos + border)
   ============================================================ */
table.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
table.data-table th, table.data-table td {
    border: 1px solid var(--border);
    padding: 10px 12px;
    text-align: left;
}
table.data-table th {
    background: var(--lp-yellow-pale, #fbf3e1);
    color: var(--lp-brown, #5c3a1e);
    font-weight: 700;
    font-size: 12.5px;
}
table.data-table tr:hover td { background: #fffaf0; }

/* ============================================================
   BADGE / STATUS
   ============================================================ */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid var(--border);
}
.badge-success { background: var(--success-bg); color: var(--success); border-color: #c8e6c9; }
.badge-warning { background: var(--warning-bg); color: #8a6800; border-color: #ffe082; }
.badge-danger { background: var(--danger-bg); color: var(--danger); border-color: #ef9a9a; }
.badge-muted { background: #f0efe9; color: var(--text-muted); }

/* ============================================================
   ALERT
   ============================================================ */
.alert { padding: 12px 16px; border-radius: 8px; font-size: 13px; margin-bottom: 16px; }
.alert-success { background: var(--success-bg); color: var(--success); border: 1px solid #c8e6c9; }
.alert-danger { background: var(--danger-bg); color: var(--danger); border: 1px solid #ef9a9a; }
.alert-warning { background: var(--warning-bg); color: #8a6800; border: 1px solid #ffe082; }

/* ============================================================
   LANDING PAGE
   ============================================================ */
/* ============================================================
   LANDING PAGE
   Palet: kuning soft (aksen) + coklat (aksen kuat/teks judul) + putih (dasar)
   ============================================================ */
:root {
    --lp-yellow: #eab655;
    --lp-yellow-soft: #f3cd7e;
    --lp-yellow-pale: #fbf3e1;
    --lp-brown: #5c3a1e;
    --lp-brown-mid: #8a5a2b;
    --lp-brown-pale: #efe3d0;
    --lp-cream: #fdf8ee;
}

.lp-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 48px;
    background: var(--white);
    border-bottom: 1px solid var(--lp-brown-pale);
    position: sticky;
    top: 0;
    z-index: 100;
}
.lp-nav .brand { font-size: 18px; font-weight: 800; color: var(--lp-brown); display: flex; align-items: center; gap: 10px; }
.lp-logo { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.lp-nav .brand span { color: var(--lp-yellow); }
.lp-nav-links { display: flex; gap: 26px; align-items: center; }
.lp-nav-links a:not(.btn) {
    color: var(--lp-brown);
    font-size: 13.5px;
    font-weight: 600;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}
.lp-nav-links a:not(.btn):hover { border-bottom-color: var(--lp-yellow); text-decoration: none; }
.lp-nav .btn-primary { background: var(--lp-yellow); color: var(--lp-brown); border: none; font-weight: 700; }
.lp-nav .btn-primary:hover { background: var(--lp-yellow-soft); }
.lp-nav .btn-outline { border: 1.5px solid var(--lp-brown-mid); color: var(--lp-brown); }
.lp-nav .btn-outline:hover { background: var(--lp-brown-pale); }

/* ---------- HERO ---------- */
.lp-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 60px 48px;
    background-color: var(--lp-brown);
    background-image:
        linear-gradient(105deg, rgba(51,31,13,0.82) 0%, rgba(51,31,13,0.55) 45%, rgba(51,31,13,0.30) 100%),
        url('../images/hero-kampung-wisata.jpg');
    background-size: cover;
    background-position: center;
}
.lp-hero-inner { max-width: 620px; }
.lp-hero-eyebrow {
    display: inline-block;
    background: rgba(234,182,85,0.18);
    border: 1px solid var(--lp-yellow-soft);
    color: var(--lp-yellow-soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.lp-hero h1 { font-size: 38px; font-weight: 800; margin-bottom: 16px; line-height: 1.28; color: var(--white); }
.lp-hero h1 span { color: var(--lp-yellow-soft); }
.lp-hero p { font-size: 15px; color: #f3ead9; max-width: 560px; margin-bottom: 30px; line-height: 1.7; }
.lp-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.lp-hero .btn-primary { background: var(--lp-yellow); color: var(--lp-brown); border: none; font-weight: 700; }
.lp-hero .btn-primary:hover { background: var(--lp-yellow-soft); }
.lp-hero .btn-secondary { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.55); }
.lp-hero .btn-secondary:hover { background: rgba(255,255,255,0.12); }
.lp-hero-note { margin-top: 26px; font-size: 12px; color: #e7d9c0; }

/* ---------- SECTION WRAPPER ---------- */
.lp-section { padding: 68px 48px; max-width: 1120px; margin: 0 auto; }
.lp-section-alt { background: var(--lp-yellow-pale); }
.lp-section-alt > .lp-section { padding-top: 68px; padding-bottom: 68px; }
.lp-eyebrow {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lp-brown-mid);
    margin-bottom: 8px;
}
.lp-section h2 { font-size: 26px; font-weight: 800; margin-bottom: 10px; text-align: center; color: var(--lp-brown); }
.lp-section .subtitle { text-align: center; color: var(--text-muted); font-size: 13.5px; margin-bottom: 44px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---------- TENTANG ---------- */
.lp-about { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: center; }
.lp-about-photo {
    height: 320px;
    border-radius: 16px;
    background-color: var(--lp-brown-pale);
    background-image: url('../images/tentang-kampung-wisata.jpg');
    background-size: cover;
    background-position: center;
    border: 6px solid var(--white);
    box-shadow: 0 12px 30px rgba(92,58,30,0.16);
}
.lp-about h2 { text-align: left; }
.lp-about .subtitle { text-align: left; margin-left: 0; }
.lp-about p { font-size: 13.5px; line-height: 1.85; color: var(--text); margin-bottom: 14px; }
.lp-about strong { color: var(--lp-brown); }

/* ---------- FASILITAS ---------- */
.lp-fasilitas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 10px; }
.lp-fasilitas-card {
    background: var(--white);
    border: 1px solid var(--lp-brown-pale);
    border-radius: var(--radius);
    padding: 26px 20px;
    text-align: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.lp-fasilitas-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(92,58,30,0.10); }
.lp-fasilitas-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--lp-yellow-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin: 0 auto 14px;
}
.lp-fasilitas-card h3 { font-size: 14px; font-weight: 700; color: var(--lp-brown); margin-bottom: 6px; }
.lp-fasilitas-card p { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; }

/* ---------- PAKET WISATA ---------- */
.lp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.lp-package-card {
    background: var(--white);
    border: 1px solid var(--lp-brown-pale);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.lp-package-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(92,58,30,0.12); }
.lp-package-header { background: var(--lp-yellow); padding: 22px 20px; color: var(--lp-brown); }
.lp-package-header h3 { font-size: 15px; font-weight: 700; }
.lp-package-header .harga { font-size: 22px; font-weight: 800; margin-top: 6px; }
.lp-package-header .waktu { font-size: 12px; margin-top: 6px; opacity: 0.85; }
.lp-package-body { padding: 18px 20px; }
.lp-package-body ul { list-style: none; }
.lp-package-body li { font-size: 12.5px; padding: 6px 0; padding-left: 20px; position: relative; color: var(--text); }
.lp-package-body li:before { content: "✓"; position: absolute; left: 0; color: var(--lp-brown-mid); font-weight: 700; }

/* ---------- GALERI ---------- */
.lp-galeri-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 130px;
    gap: 14px;
}
.lp-galeri-item {
    border-radius: 12px;
    background-color: var(--lp-yellow-pale);
    background-size: cover;
    background-position: center;
    border: 1px solid var(--lp-brown-pale);
}
.lp-galeri-item.tall { grid-row: span 2; }
.lp-galeri-item.wide { grid-column: span 2; }

/* ---------- TESTIMONI ---------- */
.lp-testimoni-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lp-testimoni-card {
    background: var(--white);
    border: 1px solid var(--lp-brown-pale);
    border-radius: var(--radius);
    padding: 26px 22px;
}
.lp-testimoni-quote { font-size: 13px; color: var(--text); line-height: 1.75; margin-bottom: 18px; }
.lp-testimoni-quote:before { content: "\201C"; color: var(--lp-yellow); font-size: 30px; font-weight: 800; line-height: 0; position: relative; top: 12px; margin-right: 2px; }
.lp-testimoni-person { display: flex; align-items: center; gap: 12px; }
.lp-testimoni-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--lp-brown-pale);
    color: var(--lp-brown);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 800;
}
.lp-testimoni-person .nama { font-size: 13px; font-weight: 700; color: var(--lp-brown); }
.lp-testimoni-person .peran { font-size: 11.5px; color: var(--text-muted); }

/* ---------- SYARAT & KETENTUAN ---------- */
.lp-terms {
    background: var(--white);
    border: 1px solid var(--lp-brown-pale);
    border-radius: var(--radius);
    padding: 32px 36px;
}
.lp-terms h3 { font-size: 15px; font-weight: 700; margin: 20px 0 10px; color: var(--lp-brown); }
.lp-terms h3:first-child { margin-top: 0; }
.lp-terms ol, .lp-terms ul { padding-left: 20px; font-size: 13px; color: var(--text); }
.lp-terms li { padding: 4px 0; }

/* ---------- CTA ---------- */
.lp-cta {
    background: var(--lp-brown);
    text-align: center;
    padding: 60px 48px;
}
.lp-cta h2 { font-size: 24px; font-weight: 800; margin-bottom: 10px; color: var(--white); }
.lp-cta p { font-size: 13.5px; margin-bottom: 24px; color: #e7d9c0; }
.lp-cta .btn-secondary { background: var(--lp-yellow); color: var(--lp-brown); border: none; font-weight: 700; }
.lp-cta .btn-secondary:hover { background: var(--lp-yellow-soft); }

/* ---------- FOOTER ---------- */
.lp-footer {
    background: #3c2612;
    color: #e7d9c0;
    padding: 40px 48px 24px;
    font-size: 12.5px;
}
.lp-footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr; gap: 30px; max-width: 1120px; margin: 0 auto 28px; }
.lp-footer h4 { color: var(--white); font-size: 13.5px; margin-bottom: 14px; }
.lp-footer-grid p { line-height: 1.8; color: #d9c7a8; }
.lp-footer-links a { display: block; color: #d9c7a8; padding: 4px 0; font-size: 12.5px; }
.lp-footer-links a:hover { color: var(--lp-yellow-soft); text-decoration: none; }
.lp-footer-bottom {
    max-width: 1120px; margin: 0 auto; padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center; color: #c7b393; font-size: 12px;
}
.lp-footer-bottom a { color: #e7d9c0; }

/* ============================================================
   AUTH PAGES (Login/Register)
   ============================================================ */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    padding: 30px 16px;
}
.auth-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    width: 100%;
    max-width: 420px;
    padding: 36px 34px;
}
.auth-card.wide { max-width: 520px; }
.auth-back { display: inline-block; font-size: 12.5px; color: var(--text-muted); margin-bottom: 18px; }
.auth-title { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.auth-subtitle { font-size: 12.5px; color: var(--text-muted); margin-bottom: 24px; }
.auth-switch { text-align: center; font-size: 12.5px; margin-top: 18px; color: var(--text-muted); }
.auth-divider { text-align: center; font-size: 11px; color: var(--text-muted); margin: 18px 0; }

.role-select-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 8px; }
.role-select-card {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 16px 14px;
    text-align: center;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text);
}
.role-select-card:hover { border-color: var(--primary); background: var(--primary-light); text-decoration: none; }
.role-select-card .icon { font-size: 24px; margin-bottom: 8px; display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tombol hamburger untuk buka/tutup sidebar di HP - disembunyikan di desktop */
.hamburger-btn {
    display: none;
    position: fixed;
    top: 14px;
    left: 14px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--lp-brown-pale, #efe3d0);
    border-radius: 8px;
    background: var(--white);
    font-size: 18px;
    cursor: pointer;
    z-index: 60;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 45;
}
.sidebar-backdrop.show { display: block; }

/* Tombol hamburger untuk navbar landing page */
.lp-hamburger {
    display: none;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--lp-brown-pale, #efe3d0);
    border-radius: 8px;
    background: var(--white);
    font-size: 18px;
    cursor: pointer;
}

@media (max-width: 860px) {
    .lp-grid-3 { grid-template-columns: 1fr; }
    .lp-fasilitas-grid { grid-template-columns: 1fr 1fr; }
    .lp-testimoni-grid { grid-template-columns: 1fr; }
    .lp-galeri-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-about { grid-template-columns: 1fr; }
    .lp-footer-grid { grid-template-columns: 1fr; }

    /* Navbar landing page: sembunyikan menu, ganti tombol hamburger */
    .lp-nav { padding: 14px 20px; }
    .lp-nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 20px 16px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    }
    .lp-nav-links.open { display: flex; }
    .lp-nav-links a { padding: 12px 0; border-bottom: 1px solid var(--lp-brown-pale, #efe3d0) !important; }
    .lp-hamburger { display: inline-flex; }
    .lp-hero h1 { font-size: 28px; }
    .lp-hero { padding: 40px 24px; min-height: auto; }
    .lp-section { padding: 44px 20px; }

    /* Sidebar dashboard jadi off-canvas, dibuka lewat tombol hamburger */
    .hamburger-btn { display: inline-flex; }
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.25s ease;
        z-index: 50;
        width: 250px;
    }
    .sidebar.open { transform: translateX(0); }
    .main { margin-left: 0; }
    .topbar { padding: 14px 16px 14px 60px; flex-wrap: wrap; gap: 10px; }
    .topbar-title { font-size: 15px; }
    .content { padding: 16px; }

    /* Tabel jadi bisa digeser horizontal, tidak memecah layout */
    .card-body { overflow-x: auto; }
    table.data-table { min-width: 560px; }

    /* Paksa semua grid multi-kolom (stat-card dsb, termasuk inline style) jadi 1 kolom */
    div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
    .role-select-grid { grid-template-columns: 1fr; }

    .auth-card { padding: 26px 20px; }
}

