/* Urenregistratie — mobile-first stijl */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* ==========================================================
   Design tokens
   ========================================================== */
:root {
    --bg: #f8faf9;
    --bg-card: #ffffff;
    --bg-input: #f1f5f4;
    --surface: #f1f5f4;
    --text: #1a1d1c;
    --text-muted: #6b7280;
    --text-soft: #9ca3af;
    --accent: #0d9488;
    --accent-hover: #0f766e;
    --accent-soft: rgba(13, 148, 136, 0.1);
    --accent-subtle: rgba(13, 148, 136, 0.06);
    --success: #059669;
    --success-soft: rgba(5, 150, 105, 0.1);
    --error: #dc2626;
    --error-soft: rgba(220, 38, 38, 0.08);
    --border: #e5e7e6;
    --border-focus: #0d9488;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.08);
    --transition: 0.2s ease;
    --tap-min: 44px;
    --sidebar-width: 252px;
    --topbar-height: 56px;
    --content-pad: 1rem;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; }

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

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    margin: 0;
    min-height: 100vh;
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.sidebar-locked { overflow: hidden; }

.fa-fw { margin-right: 0.35em; }

/* ==========================================================
   Auth pagina's (login / register)
   ========================================================== */
.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1.25rem;
    background: linear-gradient(165deg, #ecfdfb 0%, #f0fdfa 30%, #f8faf9 70%);
}

.auth-card {
    width: 100%;
    max-width: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    box-shadow: var(--shadow-lg);
}

.auth-card h1 {
    margin: 0 0 0.25rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.auth-subtitle {
    color: var(--text-muted);
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
}

.auth-form label {
    display: block;
    margin-bottom: 1rem;
}

.auth-form label span {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
}

.auth-form input {
    width: 100%;
    min-height: var(--tap-min);
    padding: 0.75rem 0.875rem;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.auth-form input:focus,
.auth-form input:focus-visible {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.auth-form button {
    width: 100%;
    margin-top: 0.5rem;
    min-height: var(--tap-min);
}

.auth-footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover { text-decoration: underline; }

@media (min-width: 480px) {
    .auth-card { padding: 2.5rem; }
}

/* ==========================================================
   App layout: topbar + off-canvas sidebar (mobile)
   ========================================================== */
.app-body {
    min-height: 100vh;
    background: linear-gradient(180deg, #f0fdfa 0%, var(--bg) 12rem);
    background-attachment: fixed;
}

.app-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Topbar (alleen mobiel zichtbaar) */
.topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: var(--topbar-height);
    padding: 0 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.topbar-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--tap-min);
    height: var(--tap-min);
    padding: 0;
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--text);
    transition: background var(--transition), border-color var(--transition);
}

.topbar-toggle:hover,
.topbar-toggle:focus-visible {
    background: var(--bg-input);
    outline: none;
}

.hamburger {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 22px;
    height: 18px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.app-layout[data-sidebar-open="true"] .hamburger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.app-layout[data-sidebar-open="true"] .hamburger span:nth-child(2) {
    opacity: 0;
}
.app-layout[data-sidebar-open="true"] .hamburger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.topbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.01em;
    color: var(--text);
    text-decoration: none;
}

.topbar-brand i { color: var(--accent); }

/* Sidebar (mobiel: off-canvas drawer) */
.sidebar-scrim {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 40;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.app-layout[data-sidebar-open="true"] .sidebar-scrim {
    opacity: 1;
    pointer-events: auto;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(280px, 85vw);
    background: #fff;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    z-index: 50;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
    padding-bottom: var(--safe-bottom);
}

.app-layout[data-sidebar-open="true"] .sidebar {
    transform: translateX(0);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.25rem;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
}

.sidebar-logo i {
    font-size: 1.35rem;
    color: var(--accent);
}

.sidebar-nav {
    flex: 1;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    min-height: var(--tap-min);
    padding: 0.65rem 0.9rem;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition), background var(--transition);
}

.sidebar-link:hover,
.sidebar-link:focus-visible {
    color: var(--accent);
    background: var(--accent-soft);
    outline: none;
}

.sidebar-link.active {
    color: var(--accent);
    background: var(--accent-soft);
    box-shadow: inset 3px 0 0 var(--accent);
}

.sidebar-link-logout { color: var(--text-soft); }
.sidebar-link-logout:hover { color: var(--error); background: var(--error-soft); }

.sidebar-footer {
    padding: 0.75rem;
    border-top: 1px solid var(--border);
}

.sidebar-group { margin-bottom: 0.25rem; }

.sidebar-group-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: var(--tap-min);
    padding: 0.5rem 0.9rem;
    border: none;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: color var(--transition), background var(--transition);
}

.sidebar-group-trigger:hover,
.sidebar-group-trigger:focus-visible {
    color: var(--accent);
    background: var(--accent-soft);
    outline: none;
}

.sidebar-group-chevron {
    font-size: 0.7rem;
    opacity: 0.8;
    transition: transform var(--transition);
}

.sidebar-group.expanded .sidebar-group-chevron { transform: rotate(180deg); }

.sidebar-submenu {
    display: none;
    flex-direction: column;
    gap: 0.05rem;
    margin-top: 0.15rem;
}

.sidebar-group.expanded .sidebar-submenu { display: flex; }

.sidebar-link-sub {
    padding-left: 1.75rem;
    font-size: 0.9rem;
}

.sidebar-user {
    font-size: 0.825rem;
    color: var(--text-muted);
    padding: 0.75rem 0.9rem 0;
    margin-top: 0.25rem;
    border-top: 1px solid var(--border);
}

.sidebar-user i {
    margin-right: 0.35rem;
    opacity: 0.8;
}

/* Main content */
.main-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.main-content {
    flex: 1;
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
    padding: 1.25rem var(--content-pad) 2rem;
}

.main-content h1 {
    margin: 0 0 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.main-content h1 i { margin-right: 0.4rem; opacity: 0.9; }

.main-content > .muted { margin-bottom: 1.25rem; }

.section-title {
    margin: 2rem 0 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
}

.section-title i { margin-right: 0.4rem; color: var(--accent); }

.main-footer {
    text-align: center;
    padding: 1.5rem 1rem calc(1.5rem + var(--safe-bottom));
    color: var(--text-soft);
    background: var(--surface);
    font-size: 0.825rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

/* Desktop layout: vaste sidebar, geen topbar */
@media (min-width: 900px) {
    :root { --content-pad: 1.75rem; }

    .app-layout {
        flex-direction: row;
    }

    .topbar { display: none; }

    .sidebar-scrim { display: none; }

    .sidebar {
        position: sticky;
        top: 0;
        left: auto;
        bottom: auto;
        height: 100vh;
        width: var(--sidebar-width);
        min-width: var(--sidebar-width);
        flex-shrink: 0;
        transform: none;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        z-index: auto;
    }

    .main-content {
        padding: 2.25rem var(--content-pad);
    }
}

/* ==========================================================
   Cards
   ========================================================== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.card:hover { box-shadow: var(--shadow); }

@media (min-width: 600px) {
    .card { padding: 1.5rem; }
}

@media (min-width: 900px) {
    .card { padding: 1.85rem; margin-bottom: 1.5rem; }
}

.card-title {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
}

.card-title i { margin-right: 0.4rem; }

/* ==========================================================
   Forms
   ========================================================== */
label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

label span {
    display: block;
    margin-bottom: 0.375rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="month"],
input[type="time"],
select,
textarea {
    width: 100%;
    min-height: var(--tap-min);
    padding: 0.65rem 0.875rem;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 1rem; /* voorkomt iOS-zoom op focus */
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
}

input:hover,
select:hover { border-color: var(--text-soft); }

input:focus,
input:focus-visible,
select:focus,
select:focus-visible {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

@media (min-width: 600px) {
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="number"],
    input[type="date"],
    input[type="month"],
    input[type="time"],
    select {
        max-width: 320px;
    }
}

.form-settings label,
.form-uren label { margin-bottom: 1rem; }

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form-row label {
    flex: 1 1 140px;
    min-width: 0;
    margin-bottom: 0;
}

.label-hint {
    display: block;
    font-size: 0.825rem;
    color: var(--text-soft);
    margin-top: 0.25rem;
}

.form-month-picker {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.75rem;
}

.form-month-picker .month-picker-label { margin-bottom: 0; }

.form-uren-intro { margin: 0.25rem 0 1rem; }

/* ==========================================================
   Buttons
   ========================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4em;
    min-height: var(--tap-min);
    padding: 0.625rem 1.1rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.1s, box-shadow var(--transition);
    -webkit-tap-highlight-color: transparent;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
    background: linear-gradient(180deg, #0d9488 0%, #0f766e 100%);
    color: #fff;
    box-shadow: 0 2px 4px rgba(13, 148, 136, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(180deg, #0f766e 0%, #0d5c54 100%);
    box-shadow: 0 4px 8px rgba(13, 148, 136, 0.3);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-input);
    border-color: var(--text-soft);
}

.btn-small {
    min-height: 36px;
    padding: 0.45rem 0.85rem;
    font-size: 0.875rem;
}

.btn-icon {
    width: var(--tap-min);
    height: var(--tap-min);
    min-width: var(--tap-min);
    padding: 0;
}

.btn-icon i { margin: 0; }

.btn-edit {
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid rgba(13, 148, 136, 0.3);
}

.btn-edit:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.btn-delete {
    background: var(--error-soft);
    color: #b91c1c;
    border: 1px solid rgba(220, 38, 38, 0.25);
}

.btn-delete:hover {
    background: #b91c1c;
    color: #fff;
    border-color: #b91c1c;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* ==========================================================
   Alerts
   ========================================================== */
.alert {
    padding: 0.875rem 1.1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.45;
}

.alert-error {
    background: var(--error-soft);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #b91c1c;
}

.alert-success {
    background: var(--success-soft);
    border: 1px solid rgba(5, 150, 105, 0.2);
    color: #047857;
}

/* ==========================================================
   Stat-tegels
   ========================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 480px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

@media (min-width: 720px) {
    .stats-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem; }
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.1rem 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), border-color var(--transition);
}

.stat-card:hover { box-shadow: var(--shadow); border-color: var(--text-soft); }

.stat-card .stat-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.stat-card .stat-label i {
    opacity: 0.7;
    font-size: 0.7rem;
}

.stat-card .stat-value {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--text);
}

.stat-card.highlight {
    border-color: rgba(13, 148, 136, 0.25);
    background: linear-gradient(160deg, var(--accent-subtle) 0%, var(--bg-card) 100%);
}

.stat-card.highlight .stat-value { color: var(--accent-hover); }

.stat-card .stat-extra {
    display: block;
    font-size: 0.825rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-weight: 500;
    line-height: 1.4;
}

.stat-card.highlight .stat-extra { color: var(--accent-hover); }
.stat-extra a { color: var(--accent); text-decoration: none; }
.stat-extra a:hover { text-decoration: underline; }

.stat-card-money .stat-value,
.stat-card-money .stat-amount {
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--success);
}

.stat-card-money .stat-extra { color: var(--text-muted); font-size: 0.75rem; }
.stat-card-muted .stat-value { color: var(--text-muted); }
.stat-card-muted .stat-extra { color: var(--text-muted); }

.stat-progress {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    margin-top: 0.75rem;
    overflow: hidden;
}

.stat-progress-bar {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: 3px;
    transition: width 0.35s ease;
}

.stat-card-context .stat-value-text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* ==========================================================
   Dashboard
   ========================================================== */
.dashboard-hero { margin-bottom: 1.5rem; }

.dashboard-title {
    margin: 0 0 0.35rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.dashboard-date {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.dashboard-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 600px) {
    .dashboard-actions { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; margin-bottom: 2rem; }
}

.action-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-decoration: none;
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition), transform 0.1s;
}

.action-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.action-card:active { transform: scale(0.99); }

.action-card-primary {
    border-color: rgba(13, 148, 136, 0.3);
    background: linear-gradient(160deg, var(--accent-subtle) 0%, var(--bg-card) 100%);
}

.action-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.action-card-primary .action-card-icon {
    background: var(--accent);
    color: #fff;
}

.action-card-title {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.action-card-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.dashboard-recent .card-title { margin-bottom: 0.75rem; }

.recent-list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.recent-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.recent-list li:last-child { border-bottom: none; }

.recent-date { color: var(--text-muted); }
.recent-hours { font-weight: 500; }

.recent-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
}

.recent-link:hover { text-decoration: underline; }

.dashboard-empty { border-left: 4px solid var(--accent); }
.dashboard-empty .fa-lightbulb { color: #eab308; margin-right: 0.35rem; }

/* ==========================================================
   Werkdagen-grid (uren.php)
   ========================================================== */
.work-days-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.35rem;
    margin: 1rem 0;
}

.work-day-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 0.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    background: var(--bg-input);
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
    min-height: 56px;
    text-align: center;
    margin-bottom: 0;
}

.work-day-item:hover {
    border-color: var(--accent);
    background: var(--bg-card);
}

.work-day-item:has(input:checked) {
    border-color: var(--accent);
    background: var(--accent-soft);
    box-shadow: 0 0 0 2px var(--accent-soft);
}

.work-day-item.weekend { background: #e7e5e4; }
.work-day-item.weekend:has(input:checked) { background: var(--accent-soft); }

.work-day-item input {
    margin: 0 0 0.2rem;
    accent-color: var(--accent);
    width: auto;
    min-height: auto;
}

.work-day-num {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.02em;
}

.work-day-name {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.work-day-existing {
    display: block;
    font-size: 0.65rem;
    margin-top: 0.2rem;
    color: var(--success);
    font-weight: 500;
    line-height: 1.2;
}

.work-day-existing .fa-check,
.work-day-existing .fa-head-side-virus,
.work-day-existing .fa-umbrella-beach { margin-right: 0.15em; }

.work-day-item.entry-sick .work-day-existing,
.work-day-item.entry-vacation .work-day-existing { color: var(--text-muted); }
.work-day-item.entry-sick { border-left: 3px solid #ea580c; }
.work-day-item.entry-vacation { border-left: 3px solid #2563eb; }

@media (min-width: 600px) {
    .work-days-grid { gap: 0.5rem; }
    .work-day-item { padding: 0.65rem 0.5rem; min-height: 64px; }
    .work-day-num { font-size: 1rem; }
    .work-day-name { font-size: 0.7rem; }
    .work-day-existing { font-size: 0.7rem; }
}

.work-days-select-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.form-uren-type {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.form-uren-type-label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.form-uren-type .radio-option,
.radio-option {
    display: inline-flex;
    align-items: center;
    min-height: var(--tap-min);
    margin-right: 0.75rem;
    margin-bottom: 0.35rem;
    cursor: pointer;
    font-size: 0.95rem;
}

.form-uren-type .radio-option input,
.radio-option input {
    margin-right: 0.4rem;
    accent-color: var(--accent);
    width: auto;
    min-height: auto;
}

.form-uren-fields {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

/* ==========================================================
   Periode-selector (overzicht.php)
   ========================================================== */
.period-selector { margin-bottom: 1.25rem; }

.period-selector-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.period-section-label,
.registraties-filter-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.period-form .period-options,
.registraties-view-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.period-option,
.registraties-view-option {
    display: inline-flex;
    align-items: center;
    margin: 0;
    cursor: pointer;
}

.period-option input,
.registraties-view-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.period-option span,
.registraties-view-option span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: var(--tap-min);
    padding: 0.5rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-input);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.period-option:hover span,
.registraties-view-option:hover span {
    border-color: var(--text-soft);
    background: var(--bg-card);
}

.period-option input:checked + span,
.registraties-view-option input:checked + span {
    border-color: var(--accent);
    background: var(--accent-soft);
    color: var(--accent-hover);
}

.period-dates-section,
.registraties-filter-dates {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.period-inline-form,
.registraties-inline-form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.75rem;
}

.period-field,
.registraties-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin: 0;
}

.period-field-label,
.registraties-field-label {
    font-size: 0.825rem;
    font-weight: 500;
    color: var(--text-muted);
}

.period-inline-form input,
.registraties-inline-form input,
.registraties-inline-form select {
    min-width: 130px;
    max-width: 100%;
}

.overview-actions { margin-bottom: 1rem; }
.overview-actions .btn .fa-file-pdf { color: #dc2626; }

.stats-grid-overview { grid-template-columns: 1fr; }

@media (min-width: 480px) {
    .stats-grid-overview { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 720px) {
    .stats-grid-overview { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}

/* ==========================================================
   Registraties — mobile-first: cards op mobiel, table op desktop
   ========================================================== */
.entries-table-wrap {
    margin-bottom: 1rem;
}

.entries-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

/* Base (mobiel): elke rij = kaart, kolommen stapelen */
.entries-table thead { display: none; }
.entries-table,
.entries-table tbody,
.entries-table tr,
.entries-table td { display: block; width: 100%; }

.entries-table tbody tr {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.65rem;
    padding: 0.25rem 0;
    transition: background var(--transition);
}

.entries-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 0.9rem;
    border-bottom: 1px solid var(--border);
    text-align: right;
}

.entries-table td:last-child { border-bottom: none; }

.entries-table td::before {
    content: attr(data-label);
    flex: 0 0 auto;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    text-align: left;
}

.entries-table .entry-date { font-weight: 500; }
.entries-table .entry-dayname {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.entries-table .entry-note {
    color: var(--text-muted);
}

/* Desktop ≥ 720px: terug naar echte tabel-layout */
@media (min-width: 720px) {
    .entries-table thead { display: table-header-group; }
    .entries-table { display: table; }
    .entries-table tbody { display: table-row-group; }
    .entries-table tr { display: table-row; }
    .entries-table td { display: table-cell; }

    .entries-table th,
    .entries-table td {
        padding: 0.75rem 0.9rem;
        text-align: left;
        border-bottom: 1px solid var(--border);
        justify-content: initial;
    }

    .entries-table th {
        font-weight: 500;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.04em;
        font-size: 0.72rem;
        background: var(--bg-input);
    }

    .entries-table tbody tr {
        background: transparent;
        border: none;
        border-radius: 0;
        margin-bottom: 0;
        padding: 0;
    }

    .entries-table tbody tr:hover { background: var(--bg-input); }

    .entries-table td::before { content: none; }
    .entries-table td:last-child { border-bottom: 1px solid var(--border); }
    .entries-table .entry-note { max-width: 200px; }
}

.entry-type-badge {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.entry-type-badge.entry-type-work { background: var(--accent-soft); color: var(--accent-hover); }
.entry-type-badge.entry-type-sick { background: rgba(234, 88, 12, 0.12); color: #c2410c; }
.entry-type-badge.entry-type-vacation { background: rgba(37, 99, 235, 0.12); color: #1d4ed8; }

.entries-table .th-actions,
.entries-table .td-actions {
    width: 1%;
    white-space: nowrap;
}

.td-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.35rem;
    align-items: center;
}

.td-actions .form-inline,
.td-actions .form-inline-icon {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.entries-summary {
    margin: 0;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.entries-summary strong { color: var(--text); }

.entries-year-group { margin-bottom: 1.5rem; }
.entries-year-group:last-of-type { margin-bottom: 0; }

.entries-year-month {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.entries-summary-month {
    padding-top: 0.5rem;
    border-top: none;
    font-size: 0.875rem;
    margin: 0 0 1rem;
}

.entries-summary-year {
    padding-top: 1rem;
    margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

/* ==========================================================
   Diversen
   ========================================================== */
.muted {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.muted a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.muted a:hover { text-decoration: underline; }

.empty-state {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-muted);
}

.empty-state .fa-inbox {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    opacity: 0.5;
}

.empty-state a { font-weight: 500; }

.input-readonly {
    background: var(--bg) !important;
    color: var(--text-muted);
    cursor: default;
}

/* ==========================================================
   Install-banner (PWA install prompt)
   ========================================================== */
.install-banner {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    background: var(--accent-soft);
    border: 1px solid rgba(13, 148, 136, 0.28);
    border-radius: var(--radius);
    color: var(--text);
    flex-wrap: wrap;
}

.install-banner-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 0.95rem;
}

.install-banner-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.install-banner-text strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.install-banner-desc {
    font-size: 0.825rem;
    color: var(--text-muted);
    line-height: 1.35;
}

.install-banner-desc i {
    margin: 0 0.1em;
    color: var(--accent);
}

.install-banner-dismiss {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.install-banner-dismiss:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text);
}

.install-banner[hidden] { display: none; }

/* ==========================================================
   Quick-today card (dashboard) — direct invullen
   ========================================================== */
.quick-today {
    border: 1px solid rgba(13, 148, 136, 0.28);
    background: linear-gradient(160deg, var(--accent-subtle) 0%, var(--bg-card) 70%);
    padding: 1.25rem;
}

.quick-today-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

/* Dag-tabs (Vandaag / Gisteren) */
.quick-day-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    margin-bottom: 1rem;
    padding: 0.25rem;
    background: var(--bg-input);
    border-radius: var(--radius-sm);
}

.quick-day-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.05rem;
    min-height: 48px;
    padding: 0.45rem 0.5rem;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    color: var(--text-muted);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    -webkit-tap-highlight-color: transparent;
}

.quick-day-tab:hover,
.quick-day-tab:focus-visible {
    color: var(--text);
    outline: none;
}

.quick-day-tab.active {
    background: var(--bg-card);
    border-color: var(--accent);
    color: var(--accent-hover);
    box-shadow: var(--shadow-sm);
}

.quick-day-tab-main {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.quick-day-tab-meta {
    font-size: 0.72rem;
    font-weight: 500;
    opacity: 0.75;
    text-transform: lowercase;
}

.quick-day-panel[hidden] { display: none; }

.quick-today-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    color: var(--text);
}

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

.quick-today-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: lowercase;
}

.quick-type-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.quick-type-tabs .radio-pill {
    display: block;
    margin: 0;
    cursor: pointer;
    min-height: auto;
}

.quick-type-tabs .radio-pill input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.quick-type-tabs .radio-pill span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.35rem;
    min-height: 44px;
    padding: 0.45rem 0.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.quick-type-tabs .radio-pill:hover span {
    border-color: var(--text-soft);
}

.quick-type-tabs .radio-pill input:checked + span {
    border-color: var(--accent);
    background: var(--accent-soft);
    color: var(--accent-hover);
}

.quick-time-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.quick-time-row label {
    margin-bottom: 0;
}

.quick-time-row label span {
    font-size: 0.8rem;
}

.quick-time-row input[type="time"] {
    width: 100%;
    max-width: none;
    font-size: 1.2rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    text-align: center;
    padding: 0.7rem 0.5rem;
}

/* Tijd-stepper: −/+ knoppen rond een time-input */
.time-stepper {
    display: flex;
    align-items: stretch;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-input);
}

.time-stepper input[type="time"] {
    flex: 1;
    min-width: 0;
    max-width: none;
    border: none;
    border-radius: 0;
    text-align: center;
    background: var(--bg-card);
    font-variant-numeric: tabular-nums;
    box-shadow: none;
}

.time-stepper input[type="time"]:focus,
.time-stepper input[type="time"]:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 2px var(--accent-soft);
}

.time-step {
    width: 44px;
    min-width: 44px;
    min-height: var(--tap-min);
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    background: var(--bg-input);
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
    transition: background var(--transition), color var(--transition);
    user-select: none;
    touch-action: manipulation;
}

.time-stepper .time-step:first-child {
    border-left: none;
}

.time-stepper .time-step:last-child {
    border-right: none;
}

.time-step:hover,
.time-step:active {
    background: var(--accent-soft);
    color: var(--accent);
}

.time-step:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: -2px;
}

@media (min-width: 600px) {
    .time-step { width: 48px; min-width: 48px; }
}

.quick-today-advanced {
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.quick-today-advanced summary {
    cursor: pointer;
    color: var(--text-muted);
    font-weight: 500;
    padding: 0.4rem 0;
    list-style: none;
    user-select: none;
}

.quick-today-advanced summary::before {
    content: "▸ ";
    display: inline-block;
    margin-right: 0.2rem;
    transition: transform 0.15s ease;
}

.quick-today-advanced[open] summary::before {
    transform: rotate(90deg);
}

.quick-today-advanced summary::-webkit-details-marker { display: none; }

.quick-today-advanced label {
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.quick-today-submit {
    width: 100%;
    font-size: 1rem;
    padding: 0.85rem 1.2rem;
}

.quick-today-filled {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.quick-today-filled-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.quick-today-filled-icon.entry-type-sick {
    background: rgba(234, 88, 12, 0.14);
    color: #c2410c;
}

.quick-today-filled-icon.entry-type-vacation {
    background: rgba(37, 99, 235, 0.14);
    color: #1d4ed8;
}

.quick-today-filled-text {
    flex: 1;
    min-width: 0;
}

.quick-today-filled-hours {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}

.quick-today-filled-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

@media (min-width: 600px) {
    .quick-today { padding: 1.5rem; }
    .quick-time-row { gap: 1rem; }
}

/* ==========================================================
   Bottom navigation (mobiel) — duim-bereikbare hoofdnavigatie
   ========================================================== */
.bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 25;
    display: flex;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--border);
    padding-bottom: var(--safe-bottom);
}

.bottom-nav-item {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    min-height: 58px;
    padding: 0.4rem 0.25rem 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    transition: color var(--transition), background var(--transition);
    -webkit-tap-highlight-color: transparent;
}

.bottom-nav-item i {
    font-size: 1.15rem;
    line-height: 1;
}

.bottom-nav-item:active {
    background: var(--accent-soft);
}

.bottom-nav-item.active {
    color: var(--accent);
}

.bottom-nav-item.active i {
    transform: translateY(-1px);
}

/* Extra ruimte onder content op mobiel zodat de bottom-nav niets bedekt */
.main-content {
    padding-bottom: calc(5rem + var(--safe-bottom));
}

@media (min-width: 900px) {
    .bottom-nav { display: none; }
    .main-content { padding-bottom: 2rem; }
}

/* ==========================================================
   Loading-state op submit-buttons
   ========================================================== */
.btn.is-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
    opacity: 0.85;
}

.btn.is-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.1em;
    height: 1.1em;
    margin: -0.55em 0 0 -0.55em;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    color: #fff;
    animation: btn-spin 0.7s linear infinite;
}

.btn-secondary.is-loading::after { color: var(--text); }

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================
   Toast (offline-feedback, sync-notificaties)
   ========================================================== */
.toast {
    position: fixed;
    left: 50%;
    bottom: calc(5.5rem + var(--safe-bottom));
    transform: translateX(-50%) translateY(12px);
    background: var(--text);
    color: var(--bg-card);
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    z-index: 60;
    pointer-events: none;
    max-width: calc(100% - 2rem);
    text-align: center;
    line-height: 1.35;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-success { background: var(--success); color: #fff; }
.toast-error { background: var(--error); color: #fff; }
.toast-info { background: var(--text); color: var(--bg-card); }

@media (min-width: 900px) {
    .toast { bottom: 2rem; }
}

/* ==========================================================
   Offline-pagina
   ========================================================== */
.offline-card {
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.offline-icon { color: var(--accent); margin-bottom: 0.75rem; }
.offline-title { font-size: 1.3rem; font-weight: 600; margin: 0 0 0.5rem; }
.offline-text { color: var(--text-muted); margin: 0 0 1.5rem; }
.offline-button { width: 100%; }

/* ==========================================================
   Dark mode (volgt systeem-voorkeur)
   ========================================================== */
@media (prefers-color-scheme: dark) {
    :root {
        --bg: #16191a;
        --bg-card: #20252a;
        --bg-input: #2a3036;
        --surface: #1c2024;
        --text: #e7e5e4;
        --text-muted: #a8a29e;
        --text-soft: #78716c;
        --accent: #14b8a6;
        --accent-hover: #2dd4bf;
        --accent-soft: rgba(20, 184, 166, 0.14);
        --accent-subtle: rgba(20, 184, 166, 0.07);
        --success: #34d399;
        --success-soft: rgba(52, 211, 153, 0.12);
        --error: #f87171;
        --error-soft: rgba(248, 113, 113, 0.12);
        --border: #2f3640;
        --border-focus: #14b8a6;
        --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
        --shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
        --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.5);
    }

    .app-body {
        background: linear-gradient(180deg, #0f1f1d 0%, var(--bg) 12rem);
        background-attachment: fixed;
    }

    .auth-page {
        background: linear-gradient(165deg, #102624 0%, #0f1f1d 30%, var(--bg) 70%);
    }

    .topbar,
    .bottom-nav {
        background: rgba(32, 37, 42, 0.95);
    }

    @media (min-width: 900px) {
        .sidebar {
            background: rgba(32, 37, 42, 0.95);
        }
    }

    .sidebar { background: var(--bg-card); }

    .work-day-item.weekend { background: #1a1f24; }
    .work-day-item.weekend:has(input:checked) { background: var(--accent-soft); }

    .btn-secondary {
        background: var(--bg-input);
        color: var(--text);
    }

    .btn-primary {
        background: linear-gradient(180deg, #14b8a6 0%, #0f9488 100%);
        box-shadow: 0 2px 4px rgba(20, 184, 166, 0.3);
    }

    .btn-primary:hover {
        background: linear-gradient(180deg, #0f9488 0%, #0d7a70 100%);
    }

    .entry-type-badge.entry-type-work { background: rgba(20, 184, 166, 0.18); color: #2dd4bf; }
    .entry-type-badge.entry-type-sick { background: rgba(251, 146, 60, 0.18); color: #fdba74; }
    .entry-type-badge.entry-type-vacation { background: rgba(96, 165, 250, 0.18); color: #93c5fd; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
