:root {
  /* Dealerflow huisstijl, gelijk aan het portaal en Dealerflow beheer. */
  --bg: #faf8f4;
  --surface: #ffffff;
  --surface-2: #f3f0ea;
  --text: #1b2a44;
  --text-muted: #5b6679;
  --border: #e4e0d8;
  --accent: #e8692a;
  --accent-ink: #ffffff;
  --accent-soft: #fdeee5;
  --accent-text: #b4501c;
  --brand: #1b2a44;
  --brand-2: #243656;
  --primary: #1b2a44;
  --primary-ink: #ffffff;
  --success: #2f6b16;
  --success-soft: #e6f2dd;
  --danger: #b4401b;
  --danger-soft: #fbe6dc;
  --warning: #8a5a0b;
  --warning-soft: #fcf0d6;
  --info: #1f5a9e;
  --info-soft: #e3eefa;
  --purple: #5b4bb7;
  --purple-soft: #eeecfd;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 9px;
  --shadow-card: 0 1px 2px rgba(27, 42, 68, 0.05), 0 1px 12px rgba(27, 42, 68, 0.05);
  --nav-height: 68px;
  --topbar-height: 60px;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f1726;
    --surface: #172238;
    --surface-2: #1e2b44;
    --text: #eef1f6;
    --text-muted: #97a3b6;
    --border: #2a3854;
    --accent: #f07a3e;
    --accent-ink: #ffffff;
    --accent-soft: #3a2418;
    --accent-text: #f59a6b;
    --brand: #121c30;
    --brand-2: #1b2a44;
    --primary: #f07a3e;
    --primary-ink: #ffffff;
    --success: #7fc25a;
    --success-soft: #1d2e17;
    --danger: #f08a66;
    --danger-soft: #3a1f16;
    --warning: #f2c14e;
    --warning-soft: #33280f;
    --info: #7fb0ea;
    --info-soft: #172a45;
    --purple: #a99df0;
    --purple-soft: #241f45;
    color-scheme: dark;
  }
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin: 0; }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--topbar-height);
  padding: 0 16px;
  padding-top: env(safe-area-inset-top);
  height: calc(var(--topbar-height) + env(safe-area-inset-top));
  background: var(--brand);
  color: #fff;
  border-bottom: 1px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-brand { display: flex; align-items: center; gap: 10px; }
.topbar-brand { color: inherit; text-decoration: none; min-height: 44px; }
.history-group { margin-top: 20px; }
.history-group h3 { margin-bottom: 12px; }
.history-summary { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin: 12px 0; }
.history-summary > div { background: var(--surface-2); padding: 12px 8px; border-radius: var(--radius-sm); font-size: 12px; overflow-wrap: anywhere; }
.history-summary strong { display: block; margin-top: 6px; font-size: 15px; }
.history-group summary { cursor: pointer; padding: 12px 0; font-weight: 600; }
.history-date { margin: 12px 0 6px; color: var(--text-muted); font-size: 12px; }
#endNow { margin: 12px 0; }
.wizard-progress { margin: 8px 0 24px; scroll-margin-top: 78px; }
.wizard-progress p { color: var(--text-muted); font-size: 12px; margin-bottom: 6px; }
.wizard-dots { display: flex; gap: 6px; margin-top: 14px; }
.wizard-dots span { height: 4px; flex: 1; border-radius: 4px; background: var(--border); }
.wizard-dots .done { background: var(--accent); }
.wizard-panel { min-height: 220px; }
.form [hidden] { display: none !important; }
.form-actions { display: flex; gap: 10px; }
.form-actions > button { flex: 1; }
.review-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px; margin-bottom: 10px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; }
.review-row small { color: var(--text-muted); }
.review-row p { margin-top: 5px; white-space: pre-line; overflow-wrap: anywhere; }
.time-total { padding: 16px; border-radius: 12px; background: var(--accent-soft); margin: 16px 0; font-weight: 600; }
.pause-presets { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.pause-presets button { border: 1px solid var(--border); padding: 10px; border-radius: 9px; background: var(--surface); }
.pause-presets button[aria-pressed=true] { background: var(--accent-soft); border-color: var(--accent); }
.delete-draft-btn { color: var(--danger); border: 1px solid var(--danger); border-radius: 10px; padding: 12px 16px; background: var(--surface); margin-top: 18px; }
.confirm-delete { width: min(420px, calc(100vw - 32px)); padding: 24px; border: 0; border-radius: 16px; background: var(--surface); color: var(--text); }
.confirm-delete::backdrop { background: #0f172a88; }
.confirm-delete p { margin: 14px 0; }
.confirm-delete > div { display: flex; gap: 10px; }
.confirm-delete .delete-draft-btn { margin: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.topbar-logo {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--accent); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; letter-spacing: 0.02em;
}
.topbar-title { font-weight: 600; font-size: 15px; }
.employee-chip {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--brand-2);
  color: #fff;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.15s ease;
}
.employee-chip:active { transform: scale(0.96); }
.refresh-btn {
  width: 34px; height: 34px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--brand-2);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s ease, background 0.15s ease;
}
.refresh-btn:active { transform: rotate(90deg) scale(0.92); }
.refresh-btn.spinning { animation: refresh-spin 0.6s linear; }
@keyframes refresh-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ---------- App shell ---------- */
.app {
  max-width: 560px;
  margin: 0 auto;
  padding: 18px 16px calc(var(--nav-height) + env(safe-area-inset-bottom) + 24px);
  min-height: calc(100vh - var(--topbar-height));
  animation: fade-in 0.18s ease;
}
@keyframes fade-in { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

.loading, .empty {
  color: var(--text-muted);
  text-align: center;
  padding: 40px 12px;
  font-size: 14px;
}

/* ---------- Bottom nav ---------- */
.bottom-nav {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 30;
  display: flex;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-bottom: env(safe-area-inset-bottom);
  max-width: 560px;
  margin: 0 auto;
}
@media (min-width: 560px) {
  .bottom-nav { border-left: 1px solid var(--border); border-right: 1px solid var(--border); border-radius: 18px 18px 0 0; bottom: 0; }
}
.bottom-nav { display: grid; grid-template-columns: repeat(5, 1fr); align-items: end; }
.nav-item {
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: var(--nav-height);
  padding: 0 2px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.15s ease, transform 0.1s ease;
}
.nav-item:active { transform: scale(0.94); }
.nav-item .nav-icon { font-size: 20px; line-height: 1; }
.nav-item.active { color: var(--accent-text); }
.nav-item.active .ui-icon { color: var(--accent); }

/* De oranje knop voor een nieuwe registratie steekt boven de balk uit, zodat hij met één
   duim te raken is zonder de schermen eronder te verbergen. */
.nav-item--add { padding: 0; }
.nav-item--add span {
  width: 48px; height: 48px; margin-top: -18px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff;
  box-shadow: 0 6px 16px rgba(232, 105, 42, 0.35);
}
.nav-item--add:active span { transform: scale(0.94); }

/* ---------- Bottom sheet (nieuwe registratie) ---------- */
.p-sheet {
  width: min(420px, calc(100vw - 24px));
  max-height: calc(100dvh - 48px);
  margin: auto;
  padding: 18px;
  border: 0;
  border-radius: 18px;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 20px 60px rgba(27, 42, 68, 0.25);
}
.p-sheet::backdrop { background: rgba(27, 42, 68, 0.45); }
.p-sheet-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.p-sheet-head h2 { font-size: 18px; font-weight: 700; }
.p-icon-btn {
  width: 36px; height: 36px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--text);
}
.p-choice { display: grid; gap: 10px; }
.p-choice-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px;
  border: 1px solid var(--border); border-radius: var(--radius-md);
  color: inherit; text-decoration: none;
}
.p-choice-item:active { border-color: var(--accent); background: var(--accent-soft); }
.p-choice-item .ui-icon { color: var(--accent); flex: none; }
.p-choice-item strong { display: block; font-size: 15.5px; }
.p-choice-item small { color: var(--text-muted); }

@media (max-width: 560px) {
  .p-sheet {
    margin: auto 0 0;
    width: 100%;
    max-width: none;
    border-radius: 18px 18px 0 0;
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
  }
}

/* ---------- Hero (Vandaag) ---------- */
.hero {
  background: var(--brand);
  color: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 18px;
}
@media (prefers-color-scheme: dark) { .hero { background: var(--brand-2); } }
.hero-date { font-size: 12px; opacity: 0.7; text-transform: capitalize; margin-bottom: 4px; }
.hero h2 { font-size: 21px; font-weight: 700; margin-bottom: 6px; }
.hero-sub { font-size: 13.5px; opacity: 0.85; }
.hero-sub strong { font-weight: 700; opacity: 1; }

/* ---------- Quick actions ---------- */
.quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
.quick-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  transition: transform 0.12s ease, border-color 0.12s ease;
}
.quick-btn:active { transform: scale(0.97); border-color: var(--accent); }
.quick-icon { font-size: 26px; }

.section-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin: 4px 0 10px;
}

/* ---------- Entry cards ---------- */
.entry-list { display: flex; flex-direction: column; gap: 8px; }
.entry-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  text-align: left;
  width: 100%;
}
.entry-card.clickable { transition: transform 0.12s ease, border-color 0.12s ease; }
.entry-card.clickable:active { transform: scale(0.98); border-color: var(--accent); }
.entry-icon {
  width: 38px; height: 38px; flex: none;
  border-radius: 10px;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
}
.entry-body { flex: 1; min-width: 0; }
.entry-title { font-size: 14.5px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.entry-sub { font-size: 12.5px; color: var(--text-muted); margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.entry-meta { flex: none; text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
.entry-duration { font-size: 13.5px; font-weight: 700; }

/* ---------- Badges ---------- */
.badge { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; white-space: nowrap; }
.badge-grey { background: var(--surface-2); color: var(--text-muted); }
.badge-blue { background: var(--info-soft); color: var(--info); }
.badge-green { background: var(--success-soft); color: var(--success); }
.badge-red { background: var(--danger-soft); color: var(--danger); }
.badge-purple { background: var(--purple-soft); color: var(--purple); }
.badge-amber { background: var(--warning-soft); color: var(--warning); }

/* ---------- Status banner ---------- */
.status { border-radius: var(--radius-sm); padding: 12px 14px; font-size: 13.5px; margin-bottom: 14px; }
.status.ok { background: var(--success-soft); color: var(--success); }
.status.error { background: var(--danger-soft); color: var(--danger); }
.hidden { display: none !important; }

/* ---------- Forms ---------- */
.form-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.form-header h2 { font-size: 19px; font-weight: 700; }
.back-btn {
  border: 0; background: var(--surface-2); border-radius: 999px;
  padding: 8px 12px; font-size: 13px; font-weight: 600; color: var(--text);
}
.back-btn:active { transform: scale(0.96); }

.form label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.form input, .form select, .form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 13px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form textarea { min-height: 76px; resize: vertical; font-weight: 400; }
.field-group { border-radius: var(--radius-md); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.two-col label { margin-bottom: 0; }

.segmented {
  display: flex;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  padding: 4px;
  gap: 4px;
  margin-bottom: 16px;
}
.seg-btn {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 10px 6px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  transition: background 0.15s ease, color 0.15s ease;
}
.seg-btn.active { background: var(--surface); color: var(--text); box-shadow: var(--shadow-card); }

.form-actions { margin-top: 18px; }
.primary-btn {
  width: 100%;
  border: 0;
  background: var(--primary);
  color: var(--primary-ink);
  font-weight: 700;
  font-size: 15px;
  padding: 15px;
  border-radius: var(--radius-md);
  transition: transform 0.1s ease, opacity 0.15s ease;
}
.primary-btn:active { transform: scale(0.98); opacity: 0.92; }
.secondary-btn {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  padding: 12px;
  border-radius: var(--radius-md);
}
.secondary-btn:active { transform: scale(0.98); }

/* ---------- Cards (instellingen) ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-card);
}
.card h3 { font-size: 14.5px; font-weight: 700; margin-bottom: 12px; }
.employee-current { font-size: 16px; font-weight: 700; margin: 2px 0 12px; }
.hint { font-size: 12px; color: var(--text-muted); margin-top: -6px; margin-bottom: 12px; line-height: 1.5; }

/* ---------- Employee picker ---------- */
.picker-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.picker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 13px 14px;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  transition: transform 0.12s ease, border-color 0.12s ease;
}
.picker-item:active { transform: scale(0.98); border-color: var(--accent); }
.picker-avatar {
  width: 38px; height: 38px; flex: none; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-text);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; text-transform: uppercase;
}
.picker-label { flex: 1; }

/* ---------- Picker trigger (knop die een bottom-sheet picker opent i.p.v. <select>) ---------- */
.picker-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 6px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  text-align: left;
  transition: border-color 0.12s ease, box-shadow 0.12s ease, transform 0.1s ease;
}
.picker-trigger:active { transform: scale(0.99); }
.picker-trigger:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.picker-trigger-placeholder { flex: 1; font-size: 15px; font-weight: 500; color: var(--text-muted); }
.picker-trigger-icon, .picker-trigger-img {
  width: 34px; height: 34px; flex: none; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; object-fit: cover;
}
.picker-trigger-text { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.picker-trigger-text strong {
  font-size: 14.5px; font-weight: 600;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.picker-trigger-text small { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.picker-trigger-chevron { flex: none; color: var(--text-muted); font-size: 18px; transform: rotate(90deg); }

/* ---------- Picker modal (bottom sheet met zoeken + visueel grid) ---------- */
body.no-scroll { overflow: hidden; }

.picker-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.5);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: picker-fade 0.15s ease;
}
@keyframes picker-fade { from { opacity: 0; } to { opacity: 1; } }

.picker-sheet {
  width: 100%;
  max-width: 560px;
  max-height: 85vh;
  background: var(--surface);
  border-radius: 20px 20px 0 0;
  padding: 16px 16px calc(16px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.18);
  animation: picker-slide-up 0.2s ease;
}
@keyframes picker-slide-up { from { transform: translateY(24px); opacity: 0.6; } to { transform: none; opacity: 1; } }

.picker-sheet-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.picker-sheet-header h3 { font-size: 16.5px; font-weight: 700; }
.picker-close {
  width: 30px; height: 30px; flex: none; border: 0; border-radius: 999px;
  background: var(--surface-2); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.picker-close:active { transform: scale(0.92); }

.picker-search {
  width: 100%;
  padding: 11px 13px;
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  font-size: 15px;
  flex: none;
}
.picker-search:focus { outline: none; border-color: var(--accent); }

.picker-note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin: -4px 0 12px;
  flex: none;
}

.picker-body { overflow-y: auto; padding-bottom: 4px; }

.picker-items--grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (min-width: 420px) { .picker-items--grid { grid-template-columns: 1fr 1fr 1fr; } }
.picker-items--list { display: flex; flex-direction: column; gap: 8px; }

.picker-section-title {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin: 16px 0 8px;
}
.picker-section-title:first-child { margin-top: 2px; }

.picker-clear {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 12px 14px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}
.picker-clear:active { transform: scale(0.98); }

/* Kaarten (grid-layout) */
.picker-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 14px 8px;
  text-align: center;
  transition: transform 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
}
.picker-card:active { transform: scale(0.97); }
.picker-card.selected { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-soft); }
.picker-card-icon {
  width: 52px; height: 52px; flex: none; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.picker-card-icon--img { object-fit: cover; }
.picker-card-label { font-size: 13px; font-weight: 600; line-height: 1.25; }
.picker-card-sub { font-size: 11px; color: var(--text-muted); }

/* Rijen (list-layout) */
.picker-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 11px 13px;
  text-align: left;
  transition: transform 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
}
.picker-row:active { transform: scale(0.98); }
.picker-row.selected { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-soft); }
.picker-row-icon {
  width: 38px; height: 38px; flex: none; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.picker-row-icon--img { object-fit: cover; }
.picker-row-text { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.picker-row-text strong {
  font-size: 14.5px; font-weight: 600;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.picker-row-text small {
  font-size: 12px; color: var(--text-muted);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.picker-row-meta {
  flex: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-text);
  white-space: nowrap;
}

.picker-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 13.5px;
  padding: 30px 10px;
}

/* Eigen SVG-iconen: schalen mee met hun container en volgen de tekstkleur. */
.icon-svg { width: 72%; height: 72%; display: block; }
.picker-trigger-icon .icon-svg { width: 80%; height: 80%; }

/* Lijn-iconen uit ui-icons.js: volgen de tekstkleur, schalen met font-size. */
.ui-icon { flex: none; display: block; }
