/* ============================================
   Schildpatio Dinner Management System
   Modern Mobile-First Redesign 2026
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Colors - Modern darker green palette */
    --primary: #166534;
    --primary-light: #16a34a;
    --primary-dark: #14532d;
    --secondary: #ea580c;
    --secondary-light: #f97316;
    --tertiary: #1e293b;
    --danger: #dc2626;
    --success: #16a34a;
    
    /* Backgrounds */
    --bg: #f8fafc;
    --bg-alt: #f0fdf4;
    --bg-card: #ffffff;
    --bg-hover: #dcfce7;
    --bg-input: #ffffff;
    --text: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --border-focus: #16a34a;
    
    /* Shadows - more pronounced for modern depth */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.15), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    
    /* Border radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('background.jpg') center center / cover no-repeat;
    opacity: 0.60;
    z-index: -1;
    pointer-events: none;
}

/* ---------- Layout Container ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px;
}

/* ---------- Header ---------- */
div#header {
    background: var(--primary-dark);
    border-radius: var(--radius-xl);
    padding: 12px 16px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Site title in header */
h1.site-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    flex-shrink: 0;
}

.logged-in-user {
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
}

.admin-badge {
    color: #fca5a5;
    font-weight: 600;
}

div#header ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    padding: 0;
}

div#header ul li {
    display: flex;
    align-items: center;
}

div#header ul li strong {
    color: #a7f3d0;
    font-weight: 600;
    font-size: 0.8rem;
}

div#header a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.7rem;
    padding: 5px 8px;
    background: var(--success);
    border-radius: var(--radius);
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

div#header a:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

#transactie-add-link {
    margin-left: 4px;
    padding: 4px 8px !important;
    font-size: 0.9rem !important;
    background: rgba(255, 255, 255, 0.15);
    min-width: auto;
}

#transactie-add-link:hover {
    background: var(--secondary);
}

/* Header login form */
div#header form {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

div#header input[type="text"],
div#header input[type="password"] {
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    font-size: 0.85rem;
    width: 130px;
}

div#header input[type="text"]:focus,
div#header input[type="password"]:focus {
    outline: none;
    border-color: white;
}

div#header input[type="submit"] {
    padding: 6px 10px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition);
}

div#header input[type="submit"]:hover {
    background: var(--secondary-light);
    transform: translateY(-1px);
}

/* ---------- Modal/Popup Styles ---------- */
div#help,
div#login,
div#transacties,
div#transactie-add {
    position: fixed;
    display: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    z-index: 1000;
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
    max-height: 90vh;
    overflow-y: auto;
    width: calc(100% - 2rem);
    max-width: 500px;
}

div#help h1,
div#login h1,
div#transacties h1,
div#transactie-add h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--space-md);
}

div#help div:first-child a,
div#login div:first-child a,
div#transacties div:first-child a,
div#transactie-add div:first-child a {
    display: inline-block;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
    text-decoration: none;
}

div#help div:first-child a:hover,
div#login div:first-child a:hover {
    color: var(--primary);
}

div#help {
    max-width: 700px;
}

div#help h3 {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}

div#help p,
div#help li {
    color: var(--text-secondary);
    line-height: 1.7;
}

div#help ul {
    padding-left: var(--space-lg);
}

div#help ul ul {
    margin-top: 5px;
    padding-left: 1.2rem;
}

div#help li {
    margin-bottom: var(--space-sm);
}

div#help strong {
    color: var(--primary);
    font-weight: 600;
}

/* Login form in modal */
div#login table {
    width: 100%;
}

div#login td {
    padding: var(--space-sm) 0;
}

div#login input[type="text"],
div#login input[type="password"] {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: all var(--transition);
}

div#login input[type="text"]:focus,
div#login input[type="password"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

div#login input[type="submit"],
div#transactie-add input[type="submit"] {
    width: 100%;
    padding: var(--space-md);
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: var(--space-md);
    transition: all var(--transition);
}

div#login input[type="submit"]:hover,
div#transactie-add input[type="submit"]:hover {
    background: var(--primary-dark);
}

/* Transacties table */
div#transacties table {
    width: 100%;
    font-size: 0.875rem;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

div#transacties th {
    text-align: left;
    padding: 10px 12px;
    background: var(--primary);
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border: none;
}

div#transacties th:first-child {
    border-top-left-radius: var(--radius-lg);
}

div#transacties th:last-child {
    border-top-right-radius: var(--radius-lg);
}

div#transacties td {
    padding: var(--space-sm);
    border-bottom: 1px solid var(--border);
}

/* ---------- Week Navigation ---------- */
div#week {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

div#week a {
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    background: var(--primary);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.75rem;
    transition: all var(--transition);
}

div#week a:hover {
    background: var(--primary-dark);
}

/* ---------- Main Table Container ---------- */
div#lijst {
    background: var(--bg-alt);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: visible;
    border: 2px solid var(--primary);
    position: relative;
}

div#lijst .table-wrapper {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

/* Table wrapper */
.table-wrapper {
    overflow-x: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
    table-layout: fixed;
    border-spacing: 0;
    margin: 0;
}

/* Table header row background */
thead {
    background: var(--primary);
}

thead tr:first-child th:first-child {
    border-top-left-radius: var(--radius-lg);
}

thead tr:first-child th:last-child {
    border-top-right-radius: var(--radius-lg);
}

/* Table header */
th {
    background: var(--primary);
    color: white;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 6px 3px 6px 3px;
    text-align: center;
    border-bottom: 3px solid var(--secondary);
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 10;
    border-top: 0;
    margin: 0;
    vertical-align: bottom;
}

th:first-child {
    text-align: center;
    padding-left: 8px;
    width: 60px;
    border-left: 0;
    border-top: 0;
    border-top-left-radius: var(--radius-lg);
    background: var(--primary);
}

th:nth-child(2) {
    text-align: left;
    padding-left: 8px;
    width: 200px;
    border-top: 0;
    background: var(--primary);
}

th:last-child {
    border-top-right-radius: var(--radius-lg);
    border-top: 0;
    background: var(--primary);
    width: 120px;
    min-width: 120px;
}

/* Bottom corners of table */
table tr:last-child td:first-child {
    border-bottom-left-radius: var(--radius-lg);
}

table tr:last-child td:last-child {
    border-bottom-right-radius: var(--radius-lg);
}

/* Day headers */
span.dag {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    text-transform: capitalize;
}

span.datum {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

/* Table rows */
tr {
    transition: background var(--transition);
}

tbody tr:nth-child(odd) {
    background: var(--bg-alt);
}

tbody tr:nth-child(even) {
    background: var(--bg-card);
}

tbody tr:hover {
    background: #dcfce7;
}

td {
    padding: 3px 2px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

/* Room number column */
td.kamernummer {
    text-align: center;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--tertiary);
    padding: 3px 8px;
}

/* User name column */
td.huisgenoot {
    text-align: left;
    padding-left: 8px;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--tertiary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

/* Consistent left border for first column */
tbody tr td:first-child {
    border-left: none;
}

td.huisgenoot strong {
    display: inline-block;
    background: var(--secondary);
    color: white;
    font-size: 0.5rem;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: var(--radius-full);
    margin-left: 2px;
    text-transform: uppercase;
}

td.huisgenoot strong.dagknurft {
    background: #dc2626;
}

td.huisgenoot strong.daglutser {
    background: #16a34a;
}

/* Gesloten (closed list) styling */
.gesloten-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    vertical-align: middle;
    margin-top: 2px;
    background: white !important;
}

.gesloten-cell {
    background: transparent !important;
}

.gesloten-aantal {
    color: var(--text);
    font-weight: 500;
    font-size: 0.7rem;
    margin-left: 4px;
}

input.lijst-gesloten {
    background: #fee2e2 !important;
    cursor: not-allowed !important;
}

td.invoer {
    text-align: center;
    white-space: nowrap;
    padding: 2px 3px;
    border-left: 2px solid var(--bg);
}

/* ---------- Input Fields ---------- */
input, select, textarea {
    font-family: inherit;
}

/* Day input squares */
input.eters,
input.corvee {
    width: 22px;
    height: 22px;
    text-align: center;
    font-weight: 700;
    font-size: 0.7rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-input);
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition);
    -webkit-appearance: none;
    appearance: none;
    padding: 0;
}

input.eters:hover {
    border-color: var(--primary-light);
    background: #dcfce7;
}

input.corvee:hover {
    border-color: var(--secondary);
    background: #ffe4e6;
}

input.eters:focus,
input.corvee:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(22, 101, 52, 0.25);
}

/* Filled state for eters (dinner) */
input.eters:not([value=""]):not([value="0"]) {
    background: var(--primary);
    border-color: var(--primary-dark);
    color: white;
}

/* Filled state for corvee (chores) */
input.corvee:not([value=""]):not([value="0"]) {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
}

/* Totaal column inputs - slightly different style */
input.eters[id^="totaalEter"],
input.corvee[id^="totaalCorvee"] {
    background: white !important;
    color: var(--text) !important;
    font-weight: 700;
    border-color: var(--border) !important;
}

/* Other inputs */
input.aantalEters,
input.specialEaters,
input.bedrag {
    width: 70px;
    padding: 4px;
    text-align: center;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 500;
    background: var(--bg-card);
}

input.specialEaters.alert {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
    font-weight: 700;
}

select.inkoper {
    width: 80px;
    padding: 4px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    background: white;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--text);
    font-weight: 400;
}

select.inkoper:focus {
    outline: none;
    border-color: var(--border);
    background: white;
}

textarea.opmerking {
    width: 80px;
    min-height: 35px;
    padding: 4px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    resize: vertical;
    transition: all var(--transition);
    background: white;
    color: var(--text);
    font-weight: 400;
}

textarea.opmerking:focus {
    outline: none;
    border-color: var(--border);
    background: white;
}

/* ---------- Saldo & Ratio Columns ---------- */
td.saldo {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.75rem;
    white-space: nowrap;
    background: rgba(22, 101, 52, 0.1);
    padding: 2px 4px;
}

td.saldo-neg {
    font-weight: 700;
    color: var(--danger);
    font-size: 0.75rem;
    background: rgba(220, 38, 38, 0.1);
    padding: 2px 4px;
}

td.ratio {
    font-family: ui-monospace, 'SF Mono', Monaco, 'Cascadia Code', monospace;
    font-size: 0.7rem;
    color: var(--tertiary);
    letter-spacing: -0.02em;
    max-width: 70px;
    overflow: hidden;
    padding: 2px 2px;
}

/* ---------- Info Box (Stats Card) ---------- */
td.informatie {
    /* Background behind the stats card (the big empty area) */
    background: var(--bg-alt) !important;
    background-color: var(--bg-alt) !important;
    border: none !important;
    padding: 0 !important;
    border-left: none !important;
    position: relative;
}

td.informatie > div {
    position: absolute;
    right: -105px;
    bottom: 15px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    color: white;
    text-align: left;
    padding: 18px 30px;
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
    min-width: 280px;
}

td.informatie div p {
    margin: 6px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

td.informatie div p:last-child {
    border-bottom: none;
}

td.informatie div strong {
    color: var(--secondary-light);
    font-weight: 700;
    font-size: 0.9rem;
}

/* ---------- Save Button ---------- */
div#opslaan {
    background: var(--primary-dark);
    margin: 0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 12px;
    text-align: center;
}

div#opslaan input[type="submit"] {
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: var(--radius);
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow);
}

div#opslaan input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--secondary-light);
}

/* Pink save button for special users */
div#opslaan-stefanie {
    background: #db2777;
    border-radius: var(--radius-lg);
    padding: 8px;
    margin: 12px 0;
    text-align: center;
    color: white;
    font-weight: 600;
}

div#opslaan-stefanie input[type="submit"] {
    background: white;
    color: #be185d;
    border: none;
    border-radius: var(--radius);
    padding: 6px 14px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
}

/* ---------- Footer ---------- */
div#copy {
    background: var(--primary);
    border-radius: var(--radius-lg);
    text-align: center;
    padding: 12px 16px;
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
    margin-top: 16px;
}

div#copy a {
    color: var(--secondary-light);
    text-decoration: none;
    font-weight: 600;
}

div#copy a:hover {
    color: white;
}

/* ---------- Error Page ---------- */
.error-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    padding: 20px;
}

.error-box {
    background: var(--bg-card);
    border: 3px solid var(--primary);
    border-radius: var(--radius-xl);
    padding: 40px 50px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 450px;
}

.error-box h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 15px;
}

.error-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.error-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition);
}

.error-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ---------- Error Message ---------- */
div#error {
    background: var(--danger);
    border: 2px solid #fca5a5;
    border-radius: var(--radius-lg);
    padding: 10px 16px;
    margin: 10px 0;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
}

/* ---------- Conflict Warning ---------- */
#conflict-warning {
    background: #fee2e2 !important;
    color: #dc2626 !important;
    padding: 16px;
    margin-bottom: 16px;
    border-radius: 8px;
    border: 2px solid #dc2626;
    font-weight: 600;
    animation: pulse-warning 2s ease-in-out infinite;
}

@keyframes pulse-warning {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }
}

/* ---------- Smaller screens ---------- */
@media (max-width: 1100px) {
    .container {
        padding: 8px;
        max-width: 100%;
    }
    
    input.eters,
    input.corvee {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
    }
    
    input.aantalEters,
    input.specialEaters,
    input.bedrag {
        width: 50px;
        font-size: 0.65rem;
    }
    
    select.inkoper {
        width: 60px;
        font-size: 0.6rem;
    }

    textarea.opmerking {
        width: 60px;
        font-size: 0.6rem;
    }
    
    td.huisgenoot {
        font-size: 0.65rem;
        max-width: 80px;
    }
    
    span.dag {
        font-size: 0.6rem;
    }
    
    span.datum {
        font-size: 0.5rem;
    }
    
    td.ratio {
        font-size: 0.5rem;
    }
    
    td.informatie {
        padding: 8px 8px 8px 0 !important;
    }
    
    td.informatie > div {
        padding: 10px 14px;
    }
    
    td.informatie div p {
        font-size: 0.7rem;
    }
    
    td.informatie div strong {
        font-size: 0.75rem;
    }
}

/* Mobile screens */
@media (max-width: 768px) {
    div#header {
        padding: 12px;
    }
    
    h1.site-title {
        font-size: 1rem;
        position: static;
        transform: none;
        text-align: center;
        margin-bottom: 10px;
    }
    
    div#header ul {
        justify-content: center;
        padding-top: 45px;
        gap: 6px;
    }
    
    div#header a {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    div#header form {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    div#header input[type="text"],
    div#header input[type="password"] {
        width: 80px;
        font-size: 0.75rem;
        padding: 4px 6px;
    }
    
    div#week {
        padding: 10px;
        gap: 8px;
        font-size: 0.85rem;
    }
    
    div#week a {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}

/* ---------- Utility Classes ---------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -48%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

div#help,
div#login,
div#transacties,
div#transactie-add {
    animation: fadeIn 0.2s ease-out;
}

/* ---------- Focus Visible ---------- */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ---------- Selection ---------- */
::selection {
    background: var(--primary);
    color: white;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ---------- Print Styles ---------- */
@media print {
    body {
        background: white;
    }
    
    div#header,
    div#opslaan,
    div#opslaan-stefanie,
    div#copy {
        display: none;
    }
    
    div#lijst {
        box-shadow: none;
    }
}
