/* ═══════════════════════════════════════════
   DENEMARKEN 2026 · REIS APP · STYLES
═══════════════════════════════════════════ */

:root {
  --primary:       #C60C30;
  --primary-dark:  #9e0a26;
  --primary-light: #fff1f3;
  --white:         #ffffff;
  --gray-50:       #f8fafc;
  --gray-100:      #f1f5f9;
  --gray-200:      #e2e8f0;
  --gray-300:      #cbd5e1;
  --gray-400:      #94a3b8;
  --gray-500:      #64748b;
  --gray-700:      #334155;
  --gray-900:      #0f172a;

  /* Event type colours */
  --c-drive:    #2563eb;
  --c-activity: #16a34a;
  --c-food:     #d97706;
  --c-rest:     #7c3aed;
  --c-sleep:    #64748b;
  --c-checkin:  #be185d;

  --radius:    14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow:    0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--gray-50);
  color: var(--gray-900);
  min-height: 100vh;
  font-size: 14px;
  line-height: 1.6;
}

/* ── HEADER ── */
.app-header {
  background: linear-gradient(135deg, #C60C30 0%, #8b0a22 100%);
  color: #fff;
  padding: 1.1rem 1rem 0;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-lg);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: .6rem;
}
.flag { font-size: 2.4rem; line-height: 1; flex-shrink: 0; }
.header-title { font-size: 1.35rem; font-weight: 900; letter-spacing: -.03em; }
.header-sub   { font-size: .75rem; opacity: .85; margin-top: .1rem; }

.countdown-box {
  margin-left: auto;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: .45rem .8rem;
  text-align: center;
  min-width: 58px;
  flex-shrink: 0;
}
.countdown-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.1;
}
.countdown-lbl {
  display: block;
  font-size: .6rem;
  opacity: .85;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.family-strip {
  font-size: .72rem;
  opacity: .9;
  text-align: center;
  padding: .45rem 0;
  border-top: 1px solid rgba(255,255,255,.15);
}

/* ── NAV TABS ── */
.tab-nav {
  background: #fff;
  border-bottom: 2px solid var(--gray-100);
  position: sticky;
  top: 98px;
  z-index: 100;
}
.tab-scroll {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 .5rem;
}
.tab-scroll::-webkit-scrollbar { display: none; }

.tab-btn {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .18rem;
  padding: .55rem .75rem;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: var(--gray-400);
  font-size: .68rem;
  font-weight: 500;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s, background .2s;
  min-width: 58px;
  white-space: nowrap;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.tab-btn:hover  { color: var(--primary); background: var(--primary-light); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); font-weight: 700; }
.tab-btn.today-tab { position: relative; }
.tab-btn.today-tab::after {
  content: '●';
  position: absolute;
  top: 4px; right: 4px;
  font-size: .45rem;
  color: var(--primary);
}
.tab-icon { font-size: 1.15rem; }

/* ── MAIN ── */
.app-main {
  padding: 1rem;
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: 3rem;
}

/* ── FADE ANIMATION ── */
.view { animation: fadeUp .28s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════
   OVERVIEW
══════════════════════════ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
  margin-bottom: 1rem;
}
@media (min-width: 480px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: .9rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.stat-card .si { font-size: 1.6rem; margin-bottom: .2rem; }
.stat-card .sv { font-size: 1.3rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-card .sl { font-size: .65rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .05em; margin-top: .2rem; }

.section-title {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 1.2rem 0 .6rem;
}

/* Day summary cards in overview */
.day-cards { display: flex; flex-direction: column; gap: .45rem; }

.day-card {
  background: #fff;
  border-radius: var(--radius);
  padding: .85rem 1rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: .75rem;
  cursor: pointer;
  border-left: 4px solid var(--day-color, var(--primary));
  transition: transform .18s, box-shadow .18s;
  text-decoration: none;
  color: inherit;
  border: none;
  font-family: inherit;
  text-align: left;
  width: 100%;
  border-left: 4px solid var(--day-color, var(--primary));
}
.day-card:hover { transform: translateX(3px); box-shadow: var(--shadow); }

.day-card .dc-emoji { font-size: 1.5rem; width: 38px; text-align: center; flex-shrink: 0; }
.day-card .dc-info  { flex: 1; }
.day-card .dc-num   { font-size: .65rem; font-weight: 700; color: var(--day-color); text-transform: uppercase; letter-spacing: .05em; }
.day-card .dc-route { font-size: .88rem; font-weight: 700; color: var(--gray-900); }
.day-card .dc-date  { font-size: .73rem; color: var(--gray-400); }
.day-card .dc-arr   { color: var(--gray-300); font-size: 1rem; }

.today-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: .58rem;
  font-weight: 700;
  padding: .1rem .4rem;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-left: .4rem;
  vertical-align: middle;
}

/* ══════════════════════════
   DAY VIEW
══════════════════════════ */
.day-hero {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  margin-bottom: .9rem;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--day-color, var(--primary));
}
.day-hero-top { display: flex; align-items: flex-start; gap: .9rem; margin-bottom: .75rem; }
.day-big-emoji { font-size: 2.6rem; line-height: 1; }
.day-hero-title { font-size: 1.15rem; font-weight: 800; color: var(--gray-900); }
.day-hero-route { font-size: .95rem; font-weight: 700; color: var(--day-color, var(--primary)); margin-top: .1rem; }
.day-hero-date  { font-size: .75rem; color: var(--gray-400); margin-top: .15rem; }
.day-hero-desc  { font-size: .83rem; color: var(--gray-700); line-height: 1.55; margin-bottom: .8rem; }

.chip-row { display: flex; gap: .4rem; flex-wrap: wrap; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: var(--day-bg, var(--gray-100));
  color: var(--day-color, var(--gray-700));
  border-radius: 20px;
  padding: .22rem .65rem;
  font-size: .7rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .18s;
}
.chip:hover { opacity: .75; }
.chip.white-chip { background: var(--gray-100); color: var(--gray-700); }

/* ── TIMELINE ── */
.timeline-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.1rem 1rem 1.1rem 1rem;
  box-shadow: var(--shadow);
  margin-bottom: .9rem;
}
.tl-section-label {
  font-size: .7rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .9rem;
}

.tl-event {
  display: flex;
  gap: .85rem;
  padding-bottom: 1.1rem;
}
.tl-event:last-child { padding-bottom: 0; }

.tl-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 42px;
  flex-shrink: 0;
}
.tl-time {
  font-size: .67rem;
  font-weight: 700;
  color: var(--gray-400);
  white-space: nowrap;
  letter-spacing: .02em;
}
.tl-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  margin: .25rem 0;
  flex-shrink: 0;
}
.tl-line {
  width: 2px;
  flex: 1;
  background: var(--gray-100);
  min-height: 18px;
  border-radius: 2px;
}
.tl-event:last-child .tl-line { display: none; }

.tl-body { flex: 1; padding-top: .15rem; }
.tl-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .2rem;
}
.tl-detail {
  font-size: .78rem;
  color: var(--gray-500);
  line-height: 1.55;
  white-space: pre-line;
}
.tl-dur {
  display: inline-block;
  font-size: .68rem;
  color: var(--gray-400);
  margin-top: .15rem;
}
.tl-links {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: .45rem;
}
.tl-link {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  background: var(--gray-100);
  color: var(--gray-700);
  text-decoration: none;
  font-size: .7rem;
  font-weight: 600;
  padding: .22rem .6rem;
  border-radius: 20px;
  transition: background .18s, color .18s;
}
.tl-link:hover { background: var(--primary-light); color: var(--primary); }

.tl-tip {
  display: flex;
  align-items: flex-start;
  gap: .35rem;
  background: #fefce8;
  border-radius: var(--radius-sm);
  padding: .4rem .6rem;
  font-size: .73rem;
  color: #854d0e;
  margin-top: .45rem;
  line-height: 1.4;
}

/* Event dot colours */
.dot-drive    { background: #dbeafe; color: var(--c-drive);    }
.dot-activity { background: #dcfce7; color: var(--c-activity); }
.dot-food     { background: #fef9c3; color: var(--c-food);     }
.dot-rest     { background: #ede9fe; color: var(--c-rest);     }
.dot-sleep    { background: var(--gray-100); color: var(--c-sleep); }
.dot-checkin  { background: #fce7f3; color: var(--c-checkin);  }

/* ── TIPS CARD ── */
.tips-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  box-shadow: var(--shadow);
  margin-bottom: .9rem;
}
.tips-card h3 {
  font-size: .8rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: .7rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.tips-list { list-style: none; display: flex; flex-direction: column; gap: .42rem; }
.tips-list li { font-size: .78rem; color: var(--gray-700); line-height: 1.5; }

/* ══════════════════════════
   PRACTICAL INFO
══════════════════════════ */
.info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  box-shadow: var(--shadow);
  margin-bottom: .9rem;
}
.info-card h3 {
  font-size: .9rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--gray-100);
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-icon { font-size: 1.1rem; margin-top: .05rem; flex-shrink: 0; }
.info-body { flex: 1; }
.info-label { font-size: .65rem; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .05em; }
.info-value { font-size: .83rem; color: var(--gray-900); margin-top: .1rem; line-height: 1.4; }
.info-link {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  color: var(--primary);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  margin-top: .25rem;
  transition: opacity .18s;
}
.info-link:hover { opacity: .7; }

/* Accommodation list */
.acc-list { display: flex; flex-direction: column; gap: .4rem; }
.acc-item {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: .7rem .85rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.acc-item .ai-icon { font-size: 1.4rem; }
.acc-item .ai-name { font-size: .83rem; font-weight: 700; }
.acc-item .ai-days { font-size: .72rem; color: var(--gray-400); }
.acc-item .ai-link { margin-left: auto; font-size: .72rem; }

/* Emergency numbers */
.emergency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.emergency-item {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: .65rem .8rem;
  text-align: center;
}
.emergency-item .en { font-size: 1rem; font-weight: 800; color: var(--primary); }
.emergency-item .el { font-size: .68rem; color: var(--gray-500); margin-top: .1rem; }

/* ══════════════════════════
   CHECKLIST
══════════════════════════ */
.cl-cat {
  font-size: .72rem;
  font-weight: 800;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 1rem 0 .4rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.cl-cat:first-child { margin-top: 0; }

.cl-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .48rem 0;
  border-bottom: 1px solid var(--gray-100);
  cursor: pointer;
  transition: opacity .18s;
}
.cl-item:last-child { border-bottom: none; }
.cl-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 4px;
}
.cl-item label { font-size: .83rem; cursor: pointer; flex: 1; transition: color .18s; }
.cl-item.done label { text-decoration: line-through; color: var(--gray-300); }

.cl-progress {
  background: var(--gray-100);
  border-radius: 10px;
  height: 6px;
  margin: .5rem 0 1rem;
  overflow: hidden;
}
.cl-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #ff6b6b);
  border-radius: 10px;
  transition: width .4s ease;
}
.cl-stats {
  text-align: center;
  font-size: .75rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

/* ══════════════════════════
   UTILITY
══════════════════════════ */
.hidden { display: none !important; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.text-center { text-align: center; }

@media (min-width: 640px) {
  .app-main { padding: 1.5rem; }
  .tab-btn   { min-width: 70px; padding: .65rem 1rem; font-size: .75rem; }
  .tab-icon  { font-size: 1.25rem; }
}

/* ══════════════════════════
   BOEKINGEN TAB
══════════════════════════ */

/* Samenvatting balk */
.booking-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
  margin-bottom: 1rem;
}
.bsum-card {
  background: #fff;
  border-radius: var(--radius);
  padding: .75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.bsum-num   { font-size: 1.5rem; font-weight: 900; }
.bsum-label { font-size: .65rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .05em; }
.bsum-num.green  { color: #16a34a; }
.bsum-num.orange { color: #d97706; }
.bsum-num.red    { color: var(--primary); }

/* Groep per categorie */
.booking-group-title {
  font-size: .72rem;
  font-weight: 800;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 1.2rem 0 .5rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

/* Boeking kaart */
.booking-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: .55rem;
  overflow: hidden;
  transition: box-shadow .2s;
}
.booking-card:hover { box-shadow: var(--shadow); }

.booking-card-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1rem;
  cursor: pointer;
  user-select: none;
}
.bc-icon  { font-size: 1.4rem; flex-shrink: 0; }
.bc-info  { flex: 1; min-width: 0; }
.bc-name  { font-size: .88rem; font-weight: 700; color: var(--gray-900); }
.bc-date  { font-size: .72rem; color: var(--gray-400); margin-top: .05rem; }
.bc-note  { font-size: .72rem; color: var(--gray-500); margin-top: .1rem; font-style: italic; }

/* Booked toggle */
.booked-toggle {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-shrink: 0;
}
.booked-pill {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .28rem .7rem;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s;
  font-family: inherit;
}
.booked-pill.is-booked {
  background: #dcfce7;
  color: #16a34a;
}
.booked-pill.not-booked {
  background: var(--gray-100);
  color: var(--gray-500);
}

/* Uitklapbaar detail */
.booking-card-body {
  border-top: 1px solid var(--gray-100);
  padding: .85rem 1rem;
  display: none;
}
.booking-card-body.open { display: block; }

.bc-field-label {
  font-size: .65rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .25rem;
}
.bc-input {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: .5rem .7rem;
  font-size: .83rem;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--gray-50);
  outline: none;
  transition: border-color .18s;
  margin-bottom: .75rem;
}
.bc-input:focus { border-color: var(--primary); background: #fff; }
.bc-textarea {
  resize: vertical;
  min-height: 64px;
}

/* Bestand upload zone */
.file-zone {
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-sm);
  padding: .9rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  margin-top: .25rem;
}
.file-zone:hover        { border-color: var(--primary); background: var(--primary-light); }
.file-zone.has-file     { border-color: #16a34a; background: #f0fdf4; }
.file-zone.uploading    { border-color: #d97706; background: #fffbeb; }
.file-zone-icon         { font-size: 1.5rem; margin-bottom: .25rem; }
.file-zone-text         { font-size: .78rem; color: var(--gray-500); }
.file-zone-text strong  { color: var(--gray-900); }
.file-zone input[type="file"] { display: none; }

/* Bestand info rij */
.file-info-row {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #f0fdf4;
  border-radius: var(--radius-sm);
  padding: .5rem .75rem;
  margin-top: .5rem;
}
.file-info-name   { font-size: .8rem; font-weight: 600; color: #15803d; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-info-btns   { display: flex; gap: .35rem; flex-shrink: 0; }
.file-btn {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  padding: .25rem .55rem;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: opacity .18s;
}
.file-btn:hover { opacity: .75; }
.file-btn.download { background: #dcfce7; color: #15803d; text-decoration: none; }
.file-btn.delete   { background: #fee2e2; color: #dc2626; }

/* Spinner */
.spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .6s linear infinite;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Sla op knop */
.bc-save-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  width: 100%;
  padding: .55rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .18s;
  margin-top: .25rem;
}
.bc-save-btn:hover    { opacity: .85; }
.bc-save-btn:disabled { opacity: .5; cursor: not-allowed; }

/* Toast notificatie */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1a1a2e;
  color: #fff;
  padding: .65rem 1.2rem;
  border-radius: 30px;
  font-size: .82rem;
  font-weight: 600;
  z-index: 9999;
  transition: transform .3s ease, opacity .3s ease;
  opacity: 0;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ── KAART TAB ── */
#leaflet-map {
  width: 100%;
  height: 420px;
  min-height: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  /* Geen overflow:hidden – breekt Leaflet tile rendering */
  z-index: 1;
}
/* Leaflet popup fix voor mobiel */
.leaflet-popup-content-wrapper {
  font-family: 'Inter', sans-serif;
  border-radius: var(--radius-sm) !important;
}

/* ── PER-DAG KAART ── */
.day-map-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow);
  margin-bottom: .9rem;
}
.day-map-el {
  width: 100%;
  height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: .75rem;
}
@media (min-width: 480px) {
  .day-map-el { height: 300px; }
}
.day-map-legend {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .35rem;
  font-size: .72rem;
  color: var(--gray-700);
}
.dml-stop {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  background: var(--gray-50);
  border-radius: 20px;
  padding: .18rem .55rem .18rem .3rem;
}
.dml-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: #fff;
  flex-shrink: 0;
}
.dml-arrow {
  color: var(--gray-300);
  font-size: .8rem;
  flex-shrink: 0;
}

/* ── OVERZICHTSKAART ── */
.overview-map-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 1rem;
}
.overview-map-el {
  width: 100%;
  height: 320px;
}
@media (min-width: 480px) {
  .overview-map-el { height: 400px; }
}
