/* BussinesHub App — corporate dashboard layout */

.app-body { background: var(--ivory); min-height: 100vh; }

/* ─── Auth screen ─── */
.auth-screen {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse at top left, rgba(37, 99, 235, .12), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(56, 189, 248, .08), transparent 50%),
    var(--ivory);
  padding: 24px;
}
.auth-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%; max-width: 440px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.auth-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 22px;
  margin-bottom: 28px;
}
.auth-brand .brand-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 800;
}
.auth-tabs {
  display: flex; gap: 4px;
  background: var(--border-soft);
  padding: 4px;
  border-radius: 10px;
  margin-bottom: 24px;
}
.auth-tab {
  flex: 1;
  padding: 10px;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  color: var(--slate);
  cursor: pointer;
  transition: all .15s ease;
}
.auth-tab.active { background: var(--white); color: var(--navy); box-shadow: var(--shadow-sm); }
.auth-error {
  margin-top: 12px;
  padding: 10px 12px;
  background: var(--red-soft);
  border-radius: var(--radius);
  color: var(--red);
  font-size: 13px;
  display: none;
}
.auth-error.visible { display: block; }
.auth-disclaimer {
  margin-top: 16px;
  font-size: 12px;
  color: var(--slate-light);
  text-align: center;
}

/* ─── App shell layout ─── */
.app-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}

/* ─── Sidebar ─── */
.sidebar {
  background: var(--white);
  border-right: 1px solid var(--border);
  padding: 24px 16px;
  display: flex; flex-direction: column;
  position: sticky; top: 0;
  height: 100vh;
}
.sidebar-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px;
  padding: 0 8px 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.sidebar-brand .brand-mark {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  border-radius: 7px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 800; font-size: 13px;
}
.workspace-info {
  padding: 0 8px 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.ws-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.ws-meta { font-size: 12px; color: var(--slate-light); margin-top: 4px; }
.sidebar-nav { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--slate);
  font-size: 14px; font-weight: 500;
  transition: all .12s ease;
}
.nav-item i { width: 18px; text-align: center; }
.nav-item:hover { background: var(--border-soft); color: var(--navy); }
.nav-item.active { background: var(--blue-soft); color: var(--blue); font-weight: 600; }
.sidebar-footer { padding-top: 16px; border-top: 1px solid var(--border); }

/* ─── Main area ─── */
.main { min-height: 100vh; display: flex; flex-direction: column; }
.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 32px;
  display: flex; align-items: center; gap: 16px;
  position: sticky; top: 0; z-index: 20;
}
.topbar-title { margin: 0; font-size: 20px; font-weight: 700; flex: 1; }
.topbar-actions { display: flex; gap: 8px; align-items: center; }
.user-chip {
  background: var(--border-soft);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.mobile-menu-btn {
  display: none;
  background: transparent; border: none;
  font-size: 22px; color: var(--navy);
  cursor: pointer;
}

.content { padding: 32px; flex: 1; }

/* ─── Dashboard ─── */
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.stat-label { font-size: 12px; color: var(--slate-light); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.stat-value { font-size: 32px; font-weight: 800; color: var(--navy); margin: 6px 0 0; letter-spacing: -.5px; }
.stat-trend { font-size: 13px; color: var(--slate); margin-top: 4px; }
.stat-trend.up { color: var(--emerald); }

/* ─── Table-ish lists ─── */
.list-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; }
.list-table th {
  background: var(--ivory);
  padding: 12px 16px;
  text-align: left;
  font-size: 12px; font-weight: 700;
  color: var(--slate);
  text-transform: uppercase; letter-spacing: .5px;
  border-bottom: 1px solid var(--border);
}
.list-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
  color: var(--navy);
  vertical-align: middle;
}
.list-table tr:last-child td { border-bottom: none; }
.list-table tr:hover td { background: var(--ivory); }

.section-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.section-card .section-card-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.section-card-head h2 { margin: 0; font-size: 17px; font-weight: 700; }
.section-card .section-card-body { padding: 24px; }

/* ─── Task cards ─── */
.task-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.task-col { background: var(--ivory); border-radius: var(--radius-lg); padding: 16px; min-height: 200px; }
.task-col h4 {
  margin: 0 0 12px;
  font-size: 13px; font-weight: 700;
  color: var(--slate);
  text-transform: uppercase; letter-spacing: .5px;
  display: flex; align-items: center; justify-content: space-between;
}
.task-col h4 .count { background: var(--white); padding: 2px 8px; border-radius: 999px; font-size: 12px; }
.task-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all .12s ease;
}
.task-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--blue-soft); }
.task-card-title { font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.task-card-meta { display: flex; justify-content: space-between; align-items: center; gap: 8px; font-size: 12px; color: var(--slate-light); }
.task-card .priority-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  margin-right: 6px;
}
.priority-dot.low { background: var(--slate-light); }
.priority-dot.normal { background: var(--blue); }
.priority-dot.high { background: var(--amber); }
.priority-dot.urgent { background: var(--red); }

/* ─── Week plan grid ─── */
.weekplan-grid {
  display: grid;
  grid-template-columns: 180px repeat(7, 1fr);
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.weekplan-cell {
  padding: 10px 12px;
  background: var(--white);
  font-size: 13px;
  min-height: 60px;
}
.weekplan-cell.day-header, .weekplan-cell.emp-header {
  background: var(--ivory);
  font-weight: 700;
  color: var(--slate);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.weekplan-cell.editable { cursor: text; }
.weekplan-cell.editable:hover { background: var(--blue-soft); }

/* ─── Modals ─── */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, .6); backdrop-filter: blur(4px); }
.modal-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 480px;
  margin: 16px;
  max-height: 90vh; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.modal-header h3 { margin: 0; font-size: 17px; font-weight: 700; }
.modal-body { padding: 24px; overflow-y: auto; }

/* ─── Toast ─── */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  font-weight: 500;
  z-index: 200;
  opacity: 0;
  transform: translateY(10px);
  transition: all .2s ease;
  pointer-events: none;
}
.toast.visible { opacity: 1; transform: translateY(0); }
.toast.error { background: var(--red); }
.toast.success { background: var(--emerald); }

/* ─── Empty states ─── */
.empty {
  padding: 48px 24px;
  text-align: center;
  color: var(--slate-light);
}
.empty i { font-size: 36px; color: var(--border); margin-bottom: 12px; }
.empty h4 { margin: 0 0 6px; color: var(--slate); }

/* ─── Action row ─── */
.action-row {
  display: flex; gap: 12px; align-items: center; justify-content: space-between;
  margin-bottom: 20px; flex-wrap: wrap;
}
.action-row h2 { margin: 0; font-size: 22px; font-weight: 700; }

/* ─── Responsive ─── */
@media (max-width: 920px) {
  .app-shell { grid-template-columns: 1fr; }
  .sidebar {
    position: fixed; top: 0; left: 0;
    width: 240px;
    z-index: 50;
    transform: translateX(-100%);
    transition: transform .2s ease;
  }
  .sidebar.open { transform: translateX(0); }
  .mobile-menu-btn { display: block; }
  .content { padding: 20px; }
  .task-grid { grid-template-columns: 1fr; }
  .weekplan-grid { grid-template-columns: 100px repeat(7, 1fr); font-size: 11px; }
  .weekplan-cell { padding: 6px; min-height: 40px; }
}

/* ─── Settings tabs ─── */
.settings-tabs {
  display: flex; gap: 6px; padding: 4px;
  background: var(--border-soft); border-radius: 10px;
  margin-bottom: 18px; flex-wrap: wrap;
}
.settings-tab {
  flex: 1; min-width: 140px;
  background: transparent; border: 0;
  padding: 10px 14px; border-radius: 8px;
  font: 600 13px var(--font);
  color: var(--slate); cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.settings-tab i { margin-right: 6px; }
.settings-tab.active { background: var(--white); color: var(--navy); box-shadow: var(--shadow-sm); }
.settings-pane { animation: fadeIn .2s ease; }
@keyframes fadeIn { from { opacity:0; transform: translateY(4px);} to { opacity:1; transform:none; } }

/* ─── Plan cards ─── */
.plans-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.plan-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px; position: relative;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.plan-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.plan-card.featured { border-color: var(--blue); box-shadow: 0 8px 22px rgba(37,99,235,.18); }
.plan-card.current { border-color: var(--emerald); }
.plan-card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; color: var(--navy); }
.plan-card .plan-price { font-size: 32px; font-weight: 800; color: var(--navy); margin: 0 0 14px; }
.plan-card .plan-price span { font-size: 14px; color: var(--slate-light); font-weight: 500; }
.plan-card .plan-feats { list-style: none; padding: 0; margin: 0 0 20px; }
.plan-card .plan-feats li {
  padding: 6px 0 6px 22px; position: relative;
  font-size: 13px; color: var(--slate);
}
.plan-card .plan-feats li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--blue) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'><path d='M6.3 11l-3.3-3.3 1.4-1.4 1.9 1.9 5.3-5.3 1.4 1.4z'/></svg>") center/10px no-repeat;
}
.plan-card .plan-flag {
  position: absolute; top: -12px; right: 18px;
  background: var(--blue); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: .05em;
  padding: 4px 10px; border-radius: 999px;
  text-transform: uppercase;
}

/* ─── Invite box ─── */
.invite-box {
  display: flex; gap: 16px; align-items: center;
  background: var(--ivory); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 16px; flex-wrap: wrap;
}
.invite-code-display {
  font-size: 22px; font-weight: 800;
  letter-spacing: .14em; color: var(--blue);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}
.invite-link-display {
  font-size: 13px; color: var(--slate);
  word-break: break-all;
  background: var(--white); border: 1px solid var(--border-soft);
  padding: 6px 10px; border-radius: 8px;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

/* ─── Invite preview (auth-screen join tab) ─── */
.invite-preview-card {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #bfdbfe;
  border-radius: 12px; padding: 14px 16px;
  margin: 0 0 14px;
}

/* ─── Plan discount (referral) ─── */
.plan-price-old {
  font-size: 18px; color: var(--slate-light); text-decoration: line-through;
  font-weight: 600; margin-right: 8px;
}
.plan-disc-pill {
  display: inline-block; background: #ecfdf5; color: #047857;
  border: 1px solid #a7f3d0;
  font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: 999px;
  margin: 0 0 14px; text-transform: uppercase; letter-spacing: .04em;
}

/* ─── Referral pane ─── */
.ref-code-box {
  display: flex; gap: 16px; align-items: center;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border: 1px solid #7dd3fc;
  border-radius: 12px; padding: 16px 18px; flex-wrap: wrap; margin-bottom: 18px;
}
.ref-code {
  font-size: 26px; font-weight: 800; letter-spacing: .14em;
  color: #075985;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  margin-top: 2px;
}
.ref-share {
  font-size: 13px; color: var(--slate); word-break: break-all;
  background: var(--white); border: 1px solid var(--border-soft);
  padding: 6px 10px; border-radius: 8px; margin-top: 2px;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}
.ref-stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px; margin: 0 0 18px;
}
.ref-pending-payout {
  background: #fffbeb; border: 1px solid #fde68a;
  border-radius: 12px; padding: 14px 16px; margin: 0 0 18px;
}
.ref-applied {
  display: flex; align-items: center; gap: 10px;
  background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46;
  border-radius: 12px; padding: 14px 16px; margin-top: 18px;
}
.ref-applied i { font-size: 18px; color: #10b981; }
.ref-table { width: 100%; border-collapse: collapse; }
.ref-table th, .ref-table td {
  padding: 10px 14px; border-bottom: 1px solid var(--border-soft);
  font-size: 13px; text-align: left;
}
.ref-table thead { background: var(--ivory); }
.ref-table th {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: .06em; color: var(--slate-light);
  border-bottom: 1px solid var(--border);
}

/* ─── Onboarding wizard ─── */
.onb-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 6px; margin: 0 0 6px;
}
.onb-dot {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  flex: 1; position: relative;
}
.onb-dot span {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--border); color: var(--slate-light);
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.onb-dot label {
  font-size: 11px; color: var(--slate-light);
  text-transform: uppercase; letter-spacing: .06em;
  text-align: center;
}
.onb-dot.current span { background: var(--blue); color: var(--white); }
.onb-dot.current label { color: var(--blue); font-weight: 700; }
/* #10b981 gaf wit-op-groen 2,54:1 — te licht voor een icoon. */
.onb-dot.done span { background: #15803D; color: var(--white); }
.onb-dot.done span::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.onb-dot.done span > * { display:none; }
.onb-divider { height: 1px; background: var(--border); margin: 12px 0 18px; }
.onb-body { padding: 4px 2px; }
.onb-actions {
  display: flex; gap: 10px; justify-content: flex-end;
  flex-wrap: wrap; margin-top: 18px;
}
.onb-sug-list { display: grid; gap: 10px; margin: 8px 0 12px; }
.onb-sug {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 14px; background: var(--white);
  border: 1px solid var(--border); border-radius: 12px; cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
}
.onb-sug:has(input:checked) { border-color: var(--blue); background: #eff6ff; }
.onb-sug input { margin-top: 4px; }
.onb-sug-title { font-weight: 700; color: var(--navy); font-size: 14px; }
.onb-sug-desc { font-size: 13px; color: var(--slate); margin: 2px 0 6px; line-height: 1.4; }
.onb-sug-meta { font-size: 11px; color: var(--slate-light); display: flex; align-items: center; gap: 6px; }
.onb-sug-meta .prio {
  padding: 2px 8px; border-radius: 4px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
}
.onb-sug-meta .prio-low { background: #f1f5f9; color: #475569; }
.onb-sug-meta .prio-normal { background: #dbeafe; color: #1d4ed8; }
.onb-sug-meta .prio-high { background: #fed7aa; color: #c2410c; }
.onb-sug-meta .prio-urgent { background: #fecaca; color: #b91c1c; }
.onb-tips {
  display: grid; gap: 10px; padding: 12px;
  background: var(--ivory); border-radius: 10px; margin: 10px 0 16px;
}
.onb-tip { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--slate); line-height: 1.4; }
.onb-tip i { color: var(--blue); width: 18px; text-align: center; }

/* ─── Mobile responsive (≤640px) ─── */
@media (max-width: 640px) {
  .settings-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding: 6px;
    gap: 4px;
  }
  .settings-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 13px;
    padding: 8px 12px;
  }
  .settings-tab i { margin-right: 4px; font-size: 13px; }
  .plans-grid { grid-template-columns: 1fr; }
  .ref-code-box { flex-direction: column; align-items: stretch; gap: 10px; }
  .ref-code-box > div { width: 100%; }
  .invite-box { flex-direction: column; align-items: stretch; gap: 12px; }
  .invite-box > div { width: 100%; }
  .ref-stats-grid { grid-template-columns: 1fr 1fr; }
  .onb-header { gap: 2px; }
  .onb-dot label { font-size: 9.5px; }
  .modal-card { width: 95vw; max-width: 95vw; max-height: 90vh; overflow-y: auto; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 380px) {
  .ref-stats-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .onb-dot label { display: none; }
}

/* ── Abonnementsdetails (toegevoegd 2026-08-23) ───────────────────────────── */
.sub-detail-grid {
  margin-top: 16px;
  border-top: 1px solid var(--border-soft);
}
.sub-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
}
.sub-detail-row:last-child { border-bottom: 0; }
.sub-detail-row span { color: var(--slate-light); }
.sub-detail-row strong { color: var(--navy); font-weight: 650; text-align: right; }

.notice-soft {
  background: var(--border-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
}

.table-simple { width: 100%; border-collapse: collapse; font-size: 14px; }
.table-simple th {
  text-align: left; padding: 8px 10px;
  font-size: 12px; text-transform: uppercase; letter-spacing: .06em;
  color: var(--slate-light); border-bottom: 1px solid var(--border);
}
.table-simple td { padding: 10px; border-bottom: 1px solid var(--border-soft); }
.table-simple tr:last-child td { border-bottom: 0; }

/* ── Machtigingsstap: proef starten (toegevoegd 2026-08-23) ──────────────── */
.mandaat-banner {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin: 0 0 18px;
  padding: 13px 16px;
  border-radius: 11px;
  background: linear-gradient(135deg, #eff6ff, #f0f9ff);
  border: 1px solid #bfdbfe;
  border-left: 4px solid var(--blue);
  font-size: 14px; color: #1e3a8a; line-height: 1.5;
}
.mandaat-banner i { color: var(--blue); font-size: 15px; }
.mandaat-banner span { flex: 1; min-width: 200px; }

.mandaat-grid { display: grid; gap: 10px; }
@media (min-width: 640px) { .mandaat-grid { grid-template-columns: repeat(3, 1fr); } }

.mandaat-plan {
  position: relative;
  display: flex; flex-direction: column; gap: 5px;
  padding: 16px 14px 14px;
  text-align: left;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 11px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.mandaat-plan:hover:not(:disabled) {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.mandaat-plan:disabled { opacity: .7; cursor: wait; }
.mandaat-plan.aanbevolen { border-color: var(--blue); }
.mandaat-plan strong { font-size: 15px; color: var(--navy); }
.mandaat-prijs { font-size: 21px; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.mandaat-prijs small { font-size: 11px; font-weight: 600; color: var(--slate-light); margin-left: 3px; }
.mandaat-seats { font-size: 12.5px; color: var(--slate); }
.mandaat-extra { font-size: 11.5px; color: var(--slate-light); }
.mandaat-vlag {
  position: absolute; top: -9px; right: 10px;
  background: var(--blue); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .04em;
  padding: 3px 8px; border-radius: 999px;
}
