/* ════════════════════════════════════════════════════════════════════════
   GELDZAKEN — kleine aanvulling op vextro-theme.css
   Alleen wat er nog NIET is in het portaal-systeem (mini-grafiek, kas-titel,
   aanvraagrijen). Alles verder (topbar, notif-bell, stat-card, data-table,
   status-badge, card, btn-*, f-input, login-*) komt rechtstreeks uit
   vextro-theme.css — laad dit bestand dus altijd NA vextro-theme.css.
   ════════════════════════════════════════════════════════════════════════ */

/* De portal-body verwacht een sidebar + los scrollend content-paneel
   (display:flex; overflow:hidden op body). Geldzaken heeft geen sidebar,
   dus zetten we body terug naar een gewoon, volledig scrollend blok. */
body:not(.login-body) {
    display: block !important;
    overflow: visible !important;
    overflow-y: auto !important;
    min-height: 100vh;
    width: 100%;
}

.gz-page { min-height: 100vh; width: 100%; }
.gz-main { max-width: 1180px; margin: 0 auto; padding: 22px 28px 48px; display: flex; flex-direction: column; gap: 22px; }
.gz-figure { font-family: var(--font-mono); }

.gz-kas-title {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-display); font-size: 0.78rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .6px; color: var(--text-muted);
    margin: 0;
}
.gz-kas-title i { color: var(--accent); }
.gz-kas-block { display: flex; flex-direction: column; gap: 12px; }

/* ── Mini-grafiek (inkomsten vs. uitgaven per maand) ── */
.gz-chart-legend { display: flex; gap: 16px; font-size: 0.8rem; margin-bottom: 8px; color: var(--text-secondary); }
.gz-chart-legend span { display: inline-flex; align-items: center; gap: 6px; }
.gz-legend-dot { width: 9px; height: 9px; border-radius: 2px; display: inline-block; }
.gz-chart-wrap { display: flex; align-items: flex-end; gap: 14px; height: 210px; padding: 10px 4px 0; }
.gz-chart-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; justify-content: flex-end; }
.gz-chart-bars { display: flex; align-items: flex-end; gap: 4px; height: 170px; }
.gz-chart-bar { width: 16px; border-radius: 3px 3px 0 0; }
.gz-chart-bar.inkomsten { background: var(--green); }
.gz-chart-bar.uitgaven { background: var(--red); }
.gz-chart-label { font-family: var(--font-mono); font-size: 0.68rem; color: var(--text-muted); }

/* ── Openstaande verzoeken ── */
.gz-request-row { display: flex; align-items: center; gap: 12px; padding: 13px 0 13px 12px; border-top: 1px solid var(--border-hairline-2); position: relative; flex-wrap: wrap; }
.gz-request-row:first-child { border-top: none; }
.gz-request-stub { position: absolute; left: 0; top: 6px; bottom: 6px; width: 3px; border-radius: 2px; background: var(--accent); opacity: .5; }
.gz-request-main { flex: 1; min-width: 200px; }
.gz-request-title { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); }
.gz-request-sub { font-weight: 400; color: var(--text-muted); font-size: 0.76rem; }
.gz-request-meta { font-size: 0.76rem; color: var(--text-muted); margin-top: 3px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.gz-request-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* ── Extra statuskleur die niet in het basissysteem zit ── */
.status-badge.uitbetaald { color: var(--accent); background: var(--accent-soft); border-color: var(--border-soft); }

/* ── Filters boven het transactieoverzicht ── */
.gz-table-header { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.gz-filters { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.gz-filters .f-input, .gz-filters .f-select { width: auto; }
.gz-search-wrap { position: relative; }
.gz-search-wrap i { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 0.82rem; pointer-events: none; }
.gz-search-wrap .f-input { padding-left: 34px; width: 190px; }

/* ── Login: submit-knop op volle breedte ── */
.gz-login-submit { width: 100%; justify-content: center; }

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