/* Verkoophub — donkere, rustige werkomgeving voor je advertenties. */

:root {
  --bg: #0a0c11;
  --bg-soft: #10131b;
  --surface: #151926;
  --surface-2: #1b2030;
  --surface-3: #232a3d;
  --line: #262d40;
  --line-soft: #1e2434;
  --text: #eef1f8;
  --text-dim: #9aa3b8;
  --text-faint: #6b7488;
  --accent: #4f8cff;
  --accent-soft: rgba(79, 140, 255, 0.14);
  --green: #3ecf8e;
  --amber: #f0b429;
  --red: #f2555a;
  --violet: #a78bfa;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
[hidden] { display: none !important; }

/* ------------------------------------------------------------------ knoppen */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface-2);
  cursor: pointer;
  font-weight: 550;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, transform 0.06s;
}
.btn:hover { background: var(--surface-3); border-color: #333d57; }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-primary { background: var(--accent); border-color: var(--accent); color: #06152e; }
.btn-primary:hover { background: #6ba0ff; border-color: #6ba0ff; }
.btn-ghost { background: transparent; border-color: transparent; color: var(--text-dim); }
.btn-ghost:hover { background: var(--surface-2); color: var(--text); }
.btn-danger { color: var(--red); border-color: rgba(242, 85, 90, 0.35); background: rgba(242, 85, 90, 0.08); }
.btn-danger:hover { background: rgba(242, 85, 90, 0.16); }
.btn-sm { padding: 6px 11px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

/* ----------------------------------------------------------- formuliervelden */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 13px; color: var(--text-dim); font-weight: 550; }
.field .hint, .hint { font-size: 12px; color: var(--text-faint); line-height: 1.5; }
.hint code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11.5px;
  background: var(--surface-2);
  padding: 1px 5px;
  border-radius: 5px;
}

input[type='text'], input[type='email'], input[type='password'], input[type='url'],
input[type='number'], input[type='date'], input[type='search'], select, textarea {
  width: 100%;
  padding: 10px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
textarea { resize: vertical; min-height: 76px; }
select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-dim) 50%),
    linear-gradient(135deg, var(--text-dim) 50%, transparent 50%);
  background-position: right 15px center, right 10px center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 32px;
}
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ------------------------------------------------------------------ inloggen */
.auth-wrap {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}
.auth-pitch {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(900px 600px at 12% 18%, rgba(79, 140, 255, 0.14), transparent 62%),
    radial-gradient(700px 500px at 78% 82%, rgba(167, 139, 250, 0.12), transparent 60%),
    var(--bg-soft);
  border-right: 1px solid var(--line-soft);
}
.auth-pitch h1 { font-size: clamp(30px, 3.4vw, 46px); line-height: 1.1; margin: 0 0 16px; letter-spacing: -0.02em; }
.auth-pitch p { color: var(--text-dim); max-width: 46ch; font-size: 16px; margin: 0 0 28px; }
.pitch-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.pitch-list li { display: flex; gap: 11px; align-items: flex-start; color: var(--text-dim); }
.pitch-list b { color: var(--text); font-weight: 600; }
.tick {
  flex: none; width: 21px; height: 21px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; font-size: 12px; margin-top: 2px;
}
.pitch-logos { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 30px; }

.auth-panel { display: grid; place-items: center; padding: 40px 24px; }
.auth-card { width: 100%; max-width: 380px; }
.auth-card h2 { margin: 0 0 6px; font-size: 22px; }
.auth-card .sub { color: var(--text-dim); font-size: 14px; margin: 0 0 22px; }
.tabs { display: flex; gap: 4px; background: var(--surface); padding: 4px; border-radius: var(--radius-sm); margin-bottom: 22px; }
.tabs button {
  flex: 1; padding: 8px; border: 0; background: transparent; border-radius: 6px;
  cursor: pointer; color: var(--text-dim); font-weight: 550; font-size: 14px;
}
.tabs button[aria-selected='true'] { background: var(--surface-3); color: var(--text); }

/* -------------------------------------------------------------------- shell */
.app { display: none; min-height: 100vh; flex-direction: column; }
.app.is-active { display: flex; }

.topbar {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 14px;
  padding: 11px 20px;
  background: rgba(10, 12, 17, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.brand { display: flex; align-items: center; gap: 9px; font-weight: 700; letter-spacing: -0.01em; }
.brand-mark {
  width: 27px; height: 27px; border-radius: 8px; flex: none;
  background: linear-gradient(135deg, var(--accent), var(--violet));
  display: grid; place-items: center; color: #08101f; font-size: 14px; font-weight: 800;
}
.topbar-search { flex: 1; max-width: 440px; position: relative; }
.topbar-search input { padding-left: 34px; }
.topbar-search svg { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); color: var(--text-faint); }
.topbar-spacer { flex: 1; }

.menu-wrap { position: relative; }
.menu {
  /* Ruim genoeg voor de langste vertaling van de menu-items. */
  position: absolute; right: 0; top: calc(100% + 8px); min-width: 252px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 6px; z-index: 60;
}
.menu button, .menu a {
  display: flex; width: 100%; align-items: center; gap: 9px;
  padding: 9px 11px; background: transparent; border: 0; border-radius: 7px;
  cursor: pointer; text-align: left; font-size: 14px; text-decoration: none;
}
.menu button:hover, .menu a:hover { background: var(--surface-2); }
.menu .menu-head { padding: 9px 11px; border-bottom: 1px solid var(--line-soft); margin-bottom: 4px; }
.menu .menu-head strong { display: block; font-size: 14px; }
.menu .menu-head span { font-size: 12px; color: var(--text-faint); }

.layout { flex: 1; display: grid; grid-template-columns: 232px 1fr; align-items: start; }
.sidebar {
  position: sticky; top: 52px; align-self: start;
  height: calc(100vh - 52px); overflow-y: auto;
  padding: 18px 12px 30px; border-right: 1px solid var(--line-soft);
}
.side-group { margin-bottom: 22px; }
.side-title {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--text-faint); padding: 0 10px; margin-bottom: 7px; font-weight: 650;
}
.side-item {
  display: flex; align-items: center; gap: 9px; width: 100%;
  padding: 8px 10px; border-radius: 8px; border: 0; background: transparent;
  cursor: pointer; font-size: 14px; text-align: left; color: var(--text-dim);
}
.side-item:hover { background: var(--surface); color: var(--text); }
.side-item.is-active { background: var(--accent-soft); color: var(--text); font-weight: 550; }
.side-item .count { margin-left: auto; font-size: 12px; color: var(--text-faint); font-variant-numeric: tabular-nums; }
.dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }

.main { padding: 22px 24px 64px; min-width: 0; }
.page-head { display: flex; align-items: flex-end; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.page-head h1 { margin: 0; font-size: 24px; letter-spacing: -0.02em; }
.page-head p { margin: 3px 0 0; color: var(--text-dim); font-size: 14px; }

/* ---------------------------------------------------------------- statkaarten */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(178px, 1fr)); gap: 12px; margin-bottom: 22px; }
.stat {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 15px 16px;
}
.stat .label { font-size: 12px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.stat .value { font-size: 25px; font-weight: 700; letter-spacing: -0.02em; margin-top: 5px; font-variant-numeric: tabular-nums; }
.stat .sub { font-size: 12.5px; color: var(--text-dim); margin-top: 3px; }
.stat.accent { border-color: rgba(79, 140, 255, 0.3); background: linear-gradient(160deg, rgba(79, 140, 255, 0.1), var(--surface)); }
.stat.good .value { color: var(--green); }

/* -------------------------------------------------------------------- filters */
.toolbar {
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
  margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line-soft);
}
.toolbar .spacer { flex: 1; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--surface); cursor: pointer; font-size: 13px; color: var(--text-dim);
}
.chip:hover { border-color: #37415c; color: var(--text); }
.chip.is-active { background: var(--accent-soft); border-color: rgba(79, 140, 255, 0.4); color: var(--text); }
.chip .x { color: var(--text-faint); }

/* ------------------------------------------------------------------- kaarten */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); gap: 14px; }
.card {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; cursor: pointer;
  transition: border-color 0.15s, transform 0.12s, box-shadow 0.15s;
}
.card:hover { border-color: #33405e; transform: translateY(-2px); box-shadow: var(--shadow); }
.card.is-picked { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.card-media { position: relative; aspect-ratio: 4 / 3; background: var(--bg-soft); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-media .placeholder {
  width: 100%; height: 100%; display: grid; place-items: center;
  color: var(--text-faint); font-size: 26px;
  background: repeating-linear-gradient(45deg, var(--bg-soft) 0 10px, var(--surface-2) 10px 20px);
}
.card-body { padding: 12px 13px 13px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.card-title {
  font-weight: 600; font-size: 14.5px; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-price { font-size: 17px; font-weight: 700; font-variant-numeric: tabular-nums; }
.card-price .none { color: var(--text-faint); font-size: 14px; font-weight: 500; }
.card-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 12px; color: var(--text-faint); margin-top: auto; }
.card-actions { display: flex; gap: 6px; padding: 0 13px 13px; }

.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 8px; border-radius: 999px; font-size: 11.5px; font-weight: 600;
  background: var(--surface-3); color: var(--text-dim); white-space: nowrap;
}
.badge-platform { color: #fff; }
.badge-float { position: absolute; top: 9px; left: 9px; backdrop-filter: blur(6px); }
.pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 9px; border-radius: 999px; font-size: 11.5px; font-weight: 600;
}
.pill-actief { background: rgba(62, 207, 142, 0.15); color: var(--green); }
.pill-gereserveerd { background: rgba(240, 180, 41, 0.15); color: var(--amber); }
.pill-verkocht { background: rgba(79, 140, 255, 0.16); color: var(--accent); }
.pill-verlopen { background: var(--surface-3); color: var(--text-faint); }
.pill-concept { background: var(--surface-3); color: var(--text-dim); }
.pill-offline_halen { background: rgba(242, 85, 90, 0.16); color: var(--red); }

/* --------------------------------------------------------------------- tabel */
.table-wrap { overflow-x: auto; border: 1px solid var(--line-soft); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th {
  text-align: left; padding: 11px 13px; font-size: 12px; color: var(--text-faint);
  text-transform: uppercase; letter-spacing: 0.05em; background: var(--bg-soft);
  border-bottom: 1px solid var(--line); white-space: nowrap;
}
td { padding: 10px 13px; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
tbody tr { cursor: pointer; }
tbody tr:hover { background: var(--surface); }
td.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.t-thumb { width: 40px; height: 40px; border-radius: 7px; object-fit: cover; background: var(--bg-soft); flex: none; }

/* ------------------------------------------------------------------ leegstand */
.empty { text-align: center; padding: 66px 20px; color: var(--text-dim); }
.empty .icon { font-size: 40px; margin-bottom: 12px; }
.empty h3 { margin: 0 0 7px; color: var(--text); font-size: 18px; }
.empty p { margin: 0 auto 20px; max-width: 46ch; }

/* ------------------------------------------------------------------- overlays */
.overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(4, 6, 10, 0.66); backdrop-filter: blur(3px);
  display: grid; place-items: center; padding: 20px;
  animation: fade 0.14s ease;
}
@keyframes fade { from { opacity: 0; } }
.modal {
  width: 100%; max-width: 520px; max-height: 88vh; overflow-y: auto;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.modal-lg { max-width: 660px; }
.modal-head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; border-bottom: 1px solid var(--line-soft);
  position: sticky; top: 0; background: var(--surface); z-index: 2;
}
.modal-head h2 { margin: 0; font-size: 17px; flex: 1; }
.modal-body { padding: 18px; }
.modal-foot {
  display: flex; gap: 9px; justify-content: flex-end;
  padding: 14px 18px; border-top: 1px solid var(--line-soft);
  position: sticky; bottom: 0; background: var(--surface);
}

.drawer-wrap { justify-items: end; padding: 0; }
.drawer {
  width: min(560px, 100%); height: 100vh; max-height: 100vh; overflow-y: auto;
  border-radius: 0; border-right: 0; border-top: 0; border-bottom: 0;
  animation: slide 0.18s ease;
}
@keyframes slide { from { transform: translateX(24px); opacity: 0.6; } }

.notice {
  display: flex; gap: 9px; padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: 13.5px; line-height: 1.45; margin-bottom: 14px;
}
.notice-warn { background: rgba(240, 180, 41, 0.1); border: 1px solid rgba(240, 180, 41, 0.28); color: #f8dc9a; }
.notice-info { background: var(--accent-soft); border: 1px solid rgba(79, 140, 255, 0.3); color: #c3d8ff; }
.notice-error { background: rgba(242, 85, 90, 0.1); border: 1px solid rgba(242, 85, 90, 0.3); color: #ffc0c2; }
.notice ul { margin: 4px 0 0; padding-left: 17px; }

.preview-card { display: flex; gap: 13px; padding: 13px; background: var(--bg-soft); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); margin-bottom: 16px; }
.preview-card img { width: 84px; height: 84px; object-fit: cover; border-radius: 8px; flex: none; background: var(--surface-2); }

.detail-hero { display: flex; gap: 14px; margin-bottom: 18px; }
.detail-hero img { width: 130px; height: 130px; object-fit: cover; border-radius: 10px; background: var(--bg-soft); flex: none; }
.detail-hero h3 { margin: 0 0 8px; font-size: 17px; line-height: 1.3; }
.detail-price { font-size: 24px; font-weight: 700; margin-bottom: 8px; font-variant-numeric: tabular-nums; }
.detail-section { border-top: 1px solid var(--line-soft); padding-top: 16px; margin-top: 16px; }
.detail-section h4 { margin: 0 0 11px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-faint); }
.kv { display: grid; grid-template-columns: 138px 1fr; gap: 7px 12px; font-size: 14px; }
.kv dt { color: var(--text-faint); }
.kv dd { margin: 0; word-break: break-word; }
.history { display: flex; flex-direction: column; gap: 5px; font-size: 13.5px; }
.history li { display: flex; justify-content: space-between; list-style: none; padding: 5px 0; border-bottom: 1px dashed var(--line-soft); }
.sibling {
  display: flex; align-items: center; gap: 10px; padding: 9px;
  border: 1px solid var(--line-soft); border-radius: var(--radius-sm); margin-bottom: 7px; cursor: pointer;
}
.sibling:hover { border-color: var(--accent); }

/* ------------------------------------------------------------------- toasts */
.toasts { position: fixed; bottom: 20px; right: 20px; z-index: 200; display: flex; flex-direction: column; gap: 9px; max-width: 380px; }
.toast {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--surface-2); border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  padding: 12px 14px; border-radius: var(--radius-sm); box-shadow: var(--shadow);
  font-size: 14px; animation: pop 0.16s ease;
}
@keyframes pop { from { transform: translateY(8px); opacity: 0; } }
.toast.ok { border-left-color: var(--green); }
.toast.err { border-left-color: var(--red); }
.toast.warn { border-left-color: var(--amber); }

.spinner {
  width: 15px; height: 15px; border-radius: 50%; flex: none;
  border: 2px solid rgba(255, 255, 255, 0.22); border-top-color: currentColor;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.progress { height: 5px; background: var(--surface-3); border-radius: 3px; overflow: hidden; margin-top: 9px; }
.progress span { display: block; height: 100%; background: var(--accent); transition: width 0.25s; }

.bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; font-size: 13.5px; }
.bar-row .name { width: 116px; flex: none; color: var(--text-dim); }
.bar-track { flex: 1; height: 8px; background: var(--surface-2); border-radius: 4px; overflow: hidden; }
.bar-track span { display: block; height: 100%; border-radius: 4px; }
.bar-row .val { width: 88px; text-align: right; font-variant-numeric: tabular-nums; color: var(--text-dim); }

.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;
}

/* -------------------------------------------------------------------- mobiel */
@media (max-width: 960px) {
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-pitch { display: none; }
  .layout { grid-template-columns: 1fr; }
  .sidebar {
    position: static; height: auto; border-right: 0;
    border-bottom: 1px solid var(--line-soft);
    display: flex; gap: 8px; overflow-x: auto; padding: 11px 14px;
  }
  .side-group { margin: 0; display: flex; gap: 7px; align-items: center; }
  .side-title { display: none; }
  .side-item { width: auto; white-space: nowrap; border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; }
  .main { padding: 16px 14px 60px; }
  .topbar { padding: 9px 13px; gap: 9px; }
  .topbar-search { max-width: none; }
  .hide-sm { display: none !important; }
  .grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 11px; }
  .drawer { width: 100%; }
  .kv { grid-template-columns: 110px 1fr; }
  .toasts { left: 14px; right: 14px; bottom: 14px; max-width: none; }
}

/* Logo's van de verkoopsites in het platformoverzicht. */
.platform-logo {
  flex: none;
  border-radius: 4px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.9);
  padding: 1px;
}
.bar-row .name { display: flex; align-items: center; gap: 8px; }
.badge-platform .platform-logo { border-radius: 3px; background: rgba(255, 255, 255, 0.92); }

/* Balk onderin bij het selecteren van meerdere advertenties. */
.bulkbar {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: 150; display: flex; align-items: center; gap: 9px;
  padding: 10px 12px; max-width: calc(100vw - 28px);
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 999px; box-shadow: var(--shadow);
}
.bulkbar .bulk-telling { padding: 0 6px; font-size: 14px; font-weight: 600; white-space: nowrap; }
.card.is-picked::after {
  content: '✓';
  position: absolute; top: 9px; right: 9px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); color: #06152e;
  display: grid; place-items: center; font-size: 13px; font-weight: 700;
}
.card { position: relative; }

@media (max-width: 620px) {
  .bulkbar { border-radius: var(--radius); flex-wrap: wrap; justify-content: center; }
  .bulkbar .btn { font-size: 12.5px; padding: 5px 9px; }
}

/* ------------------------------------------------------------------ taalkeuze */
.menu-lang {
  margin-top: 4px;
  padding: 9px 11px 5px;
  border-top: 1px solid var(--line-soft);
}
.menu-lang-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-faint);
  font-weight: 650;
  margin-bottom: 6px;
}
.menu-lang select { padding: 7px 10px; font-size: 13.5px; }

.auth-lang { margin-top: 18px; }
.auth-lang select { padding: 8px 11px; font-size: 13.5px; }

/* ------------------------------------------------------------- mijn account */
.notice-ok { background: rgba(62, 207, 142, 0.1); border: 1px solid rgba(62, 207, 142, 0.3); color: #a9ecc9; }

.account-intro { margin: 0 0 4px; color: var(--text-dim); font-size: 14px; }
.account-sectie { border-top: 1px solid var(--line-soft); padding-top: 16px; margin-top: 18px; }
.account-sectie h4 {
  margin: 0 0 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-faint);
}
.account-sectie .account-uitleg { margin: 0 0 14px; color: var(--text-dim); font-size: 13.5px; max-width: 62ch; }
.account-sectie form { margin: 0; }

.acc-telling { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.acc-telling li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px;
  background: var(--surface-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-dim);
}
.acc-telling li strong { color: var(--text); font-variant-numeric: tabular-nums; }

@media (max-width: 620px) {
  .account-sectie .row-2 { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------- toetsenbord */
/*
 * Wie met Tab door de app loopt, moet kunnen zien waar hij is. De browser tekent
 * standaard een dunne rand die op dit donkere vlak wegvalt; dit is dezelfde
 * blauwe accentkleur als de rest van de app gebruikt.
 */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
/* De kaart heeft zelf al een rand; die kleurt mee, zodat het één geheel blijft. */
.card:focus-visible { border-color: var(--accent); }
/* Bij een tabelrij valt een rand buiten de rij weg onder de volgende rij. */
tbody tr:focus-visible { outline-offset: -2px; background: var(--surface); }
