:root {
  --bw-color-accent: var(--bw-product-zeitwerk, #b14e59);
  --bw-color-accent-hover: #9f3e4a;
  --bw-color-accent-surface: #feeff0;
  --bw-color-focus: var(--bw-product-zeitwerk, #b14e59);
  --bw-marke-akzent: var(--bw-product-zeitwerk, #b14e59);
  --uw-conflict: #9c6306;
  --uw-conflict-surface: #fdf2e0;
  --uw-approved: #1a7a4c;
  --uw-approved-surface: #e7f4ed;
  --uw-pending: #9c6306;
  --uw-pending-surface: #fdf2e0;
  --uw-holiday: #8b5268;
  --uw-holiday-surface: #f4e8ed;
  --uw-school: #667f8d;
  --uw-school-surface: #e8eff2;
  --uw-label-width: 158px;
  --uw-balance-width: 88px;
  --uw-track-width: 1020px;
  --uw-scale-height: 48px;
  --z-sticky: 20;
  --z-dialog: 80;
  --z-toast: 100;
  --z-tooltip: 110;
}

html { min-width: 320px; }
body { min-height: 100vh; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: var(--bw-font-weight-base); text-wrap: balance; }
button, input, select, textarea { font-weight: 400; }
[hidden] { display: none !important; }

/* Ein appweiter CORE-Tooltip bleibt außerhalb von Tabellen und Scrollflächen
   sichtbar. Er ersetzt die verzögerten Browser-Hinweise vollständig. */
.bw-core-tooltip {
  position: fixed;
  z-index: var(--z-tooltip);
  width: max-content;
  max-width: min(320px, calc(100vw - 12px));
  padding: 5px 8px;
  border-radius: 6px;
  background: #172331;
  color: #fff;
  box-shadow: 0 3px 10px rgb(10 18 27 / 22%);
  font: 400 12px/1.35 var(--bw-font-ui);
  overflow-wrap: anywhere;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-2px);
  transition: opacity 60ms ease-out, transform 60ms ease-out;
  visibility: hidden;
}
.bw-core-tooltip.is-visible { opacity: 1; transform: translateY(0); visibility: visible; }
.bw-core-tooltip[data-placement="above"] { transform: translateY(2px); }
.bw-core-tooltip[data-placement="above"].is-visible { transform: translateY(0); }
/* Die Action-Komponente hat für reine Toolbars eine eigene Sprechblase.
   UrlaubWERK nutzt stattdessen den appweiten, nicht abschneidbaren Layer. */
.bw-action-button[data-bw-tooltip]::after { content: none; }

.app-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid var(--bw-color-line);
  background: var(--bw-color-surface);
}
.app-title { display: flex; align-items: center; min-width: 150px; font-size: 21px; line-height: 1; }
.app-subtitle { margin-left: 12px; padding-left: 12px; border-left: 1px solid var(--bw-color-line); color: var(--bw-color-text-muted); font-size: 12px; }
.cloud-state { display: inline-flex; align-items: center; gap: 6px; margin-left: auto; padding: 3px 8px; border-radius: var(--bw-radius-pill); background: var(--bw-color-surface-subtle); color: var(--bw-color-text-muted); font-size: 12px; white-space: nowrap; }
.cloud-state span { width: 7px; height: 7px; border-radius: 50%; background: var(--bw-color-line-strong); }
.cloud-state.connected { background: var(--bw-color-success-surface); color: var(--bw-color-success); }
.cloud-state.connected span { background: currentColor; }
.cloud-state.warning { background: var(--bw-color-warning-surface); color: var(--bw-color-warning); }
.bw-markenecke { margin-left: 12px; }

.context-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 5px 16px;
  border-bottom: 1px solid var(--bw-color-line);
  background: var(--bw-color-surface-subtle);
  color: var(--bw-color-text-muted);
  font-size: 12px;
}
.context-bar > label { color: var(--bw-color-text); }
.context-person { width: auto; min-width: 180px; min-height: 28px; padding-block: 3px; }
.role-note { display: inline-flex; align-items: center; min-height: 22px; padding: 2px 8px; border-radius: var(--bw-radius-pill); background: var(--bw-color-accent-surface); color: var(--bw-color-accent); }
.context-explain { margin-left: auto; }

.cloud-blocker { display: flex; align-items: flex-start; gap: 14px; max-width: 720px; margin: 42px auto; padding: 22px; }
.cloud-blocker-mark { display: grid; place-items: center; width: 32px; height: 32px; flex: 0 0 auto; border-radius: 50%; background: var(--bw-color-warning-surface); color: var(--bw-color-warning); font-weight: 700; }
.cloud-blocker h1 { margin-bottom: 5px; font-size: 22px; }
.cloud-blocker p { max-width: 62ch; margin-bottom: 15px; color: var(--bw-color-text-muted); }
.cloud-blocker-actions { display: flex; flex-wrap: wrap; gap: 7px; }
.cloud-blocker-actions a { text-decoration: none; }

main { width: min(1540px, 100%); margin: 0 auto; padding: 18px 20px 28px; }
.command-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 14px; }
.command-row h1 { margin-bottom: 2px; font-size: 24px; line-height: 1.15; }
.command-row p { margin-bottom: 0; color: var(--bw-color-text-muted); }
.command-actions { display: flex; gap: 6px; flex: 0 0 auto; }
.view-tabs { margin-bottom: 16px; }
.tab-count { display: inline-grid; place-items: center; min-width: 19px; min-height: 19px; margin-left: 5px; padding: 0 5px; border-radius: var(--bw-radius-pill); background: var(--bw-color-accent); color: white; font-size: 11px; }

.balance-strip {
  display: flex;
  align-items: stretch;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid var(--bw-color-line);
  border-radius: var(--bw-radius-md);
  background: var(--bw-color-surface);
}
.balance-person { display: flex; flex: 1 1 260px; align-items: center; gap: 10px; min-width: 220px; padding: 11px 14px; }
.person-avatar { display: grid; place-items: center; width: 36px; height: 36px; flex: 0 0 auto; border-radius: 50%; background: var(--bw-color-accent-surface); color: var(--bw-color-accent); font-weight: 700; }
.balance-person strong { display: block; font-weight: 700; }
.balance-person small { color: var(--bw-color-text-muted); }
.balance-values { display: flex; flex: 2 1 620px; }
.balance-item { display: grid; align-content: center; min-width: 118px; padding: 9px 16px; border-left: 1px solid var(--bw-color-line); }
.balance-item span { color: var(--bw-color-text-muted); font-size: 11px; }
.balance-item output { margin-top: 1px; font-size: 18px; font-variant-numeric: tabular-nums; }
.balance-item.remaining output { color: var(--bw-color-accent); font-weight: 700; }
.balance-item.warning output { color: var(--bw-color-warning); }

.work-surface { border: 1px solid var(--bw-color-line); border-radius: var(--bw-radius-md); background: var(--bw-color-surface); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; padding: 14px 16px 12px; border-bottom: 1px solid var(--bw-color-line); }
.section-heading h2 { margin-bottom: 2px; font-size: 18px; }
.section-heading p { margin-bottom: 0; color: var(--bw-color-text-muted); font-size: 12px; }
.timeline-gesture-hint { white-space: nowrap; }
.plan-controls { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: flex-end; gap: 4px; }
.zoom-control { display: flex; align-items: center; gap: 4px; margin-right: 10px; }
.zoom-control-label { color: var(--bw-color-text-muted); font-size: 12px; white-space: nowrap; }
.zoom-step { font-size: 16px; line-height: 1; }
.timeline-zoom { width: 116px; height: 28px; margin: 0 2px; accent-color: var(--bw-color-accent); cursor: ew-resize; }
.zoom-value { min-width: 82px; color: var(--bw-color-text-muted); font-size: 11px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.zoom-fit { min-width: 64px; }
.year-select { width: 86px; min-height: 29px; padding-block: 4px; }
.threshold-field, .status-filter, .state-field { display: flex; align-items: center; gap: 6px; margin-left: 10px; color: var(--bw-color-text-muted); font-size: 12px; white-space: nowrap; }
.threshold-field select, .status-filter select, .state-field select { width: auto; min-height: 29px; padding-block: 4px; }
.state-field select { max-width: 170px; }

.legend { display: flex; flex-wrap: wrap; gap: 14px; padding: 9px 16px; border-bottom: 1px solid var(--bw-color-line); color: var(--bw-color-text-muted); font-size: 11px; }
.legend span { display: inline-flex; align-items: center; gap: 6px; }
.legend-bar { width: 22px; height: 9px; border-radius: var(--bw-radius-sm); }
.legend-bar.approved { background: var(--uw-approved); }
.legend-bar.pending { border: 1px dashed var(--uw-pending); background: var(--uw-pending-surface); }
.legend-bar.conflict { background: var(--uw-conflict-surface); box-shadow: inset 0 0 0 1px var(--uw-conflict); }
.legend-day { width: 12px; height: 12px; background: #eef0f2; }
.legend-holiday { width: 12px; height: 12px; background: var(--uw-holiday-surface); box-shadow: inset 0 0 0 1px var(--uw-holiday); }
.legend-school { width: 22px; height: 9px; border: 1px solid var(--uw-school); border-radius: 2px; background: var(--uw-school-surface); }

.conflict-callout { display: flex; align-items: center; gap: 8px; min-height: 38px; padding: 8px 16px; border-bottom: 1px solid var(--bw-color-line); color: var(--bw-color-text-muted); font-size: 12px; }
.conflict-callout.has-conflict { background: var(--uw-conflict-surface); color: #704700; }
.conflict-callout strong { font-weight: 700; }
.conflict-dot { width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: var(--uw-conflict); }

.timeline-scroll { overflow: auto; max-height: calc(100vh - 330px); min-height: 330px; background: var(--bw-color-surface); scrollbar-gutter: stable; overscroll-behavior: contain; }
.timeline-grid { width: calc(var(--uw-label-width) + var(--uw-balance-width) + var(--uw-track-width)); min-width: 100%; }
.timeline-row { display: grid; grid-template-columns: var(--uw-label-width) var(--uw-balance-width) minmax(var(--uw-track-width), 1fr); min-height: 36px; border-bottom: 1px solid var(--bw-color-line); }
.timeline-row:last-child { border-bottom: 0; }
.timeline-row[data-employee-id] { cursor: pointer; }
.timeline-row[data-employee-id]:focus-visible { position: relative; z-index: 16; outline: 2px solid var(--bw-color-focus); outline-offset: -2px; }
.timeline-row[data-employee-id] > .timeline-person,
.timeline-row[data-employee-id] > .timeline-balance { transition: background var(--bw-motion-fast); }
.timeline-row[data-employee-id]:hover > .timeline-person,
.timeline-row[data-employee-id]:hover > .timeline-balance { background: var(--bw-color-surface-subtle); }
.timeline-row[data-selected="true"] > .timeline-person,
.timeline-row[data-selected="true"] > .timeline-balance { background: var(--bw-color-accent-surface); }
.timeline-row[data-selected="true"] > .timeline-person { box-shadow: inset 3px 0 var(--bw-color-accent); }
.timeline-head { position: sticky; top: 0; z-index: 15; min-height: var(--uw-scale-height); background: var(--bw-color-surface); }
.timeline-person, .timeline-balance { position: sticky; z-index: 10; display: flex; align-items: center; background: var(--bw-color-surface); }
.timeline-person { left: 0; gap: 7px; padding: 4px 8px; border-right: 1px solid var(--bw-color-line); }
.timeline-balance { left: var(--uw-label-width); justify-content: flex-end; gap: 3px; padding: 4px 8px; border-right: 1px solid var(--bw-color-line); color: var(--bw-color-text-muted); font-size: 11px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.timeline-head .timeline-person, .timeline-head .timeline-balance { z-index: 18; background: var(--bw-color-surface-subtle); color: var(--bw-color-text-muted); font-size: 11px; }
.employee-main { min-width: 0; }
.employee-main strong { display: block; overflow: hidden; text-overflow: ellipsis; font-size: 12px; font-weight: 400; line-height: 1.15; white-space: nowrap; }
.employee-main small { display: block; overflow: hidden; color: var(--bw-color-text-muted); font-size: 9.5px; line-height: 1.15; text-overflow: ellipsis; white-space: nowrap; }
.mini-avatar { display: grid; place-items: center; width: 24px; height: 24px; flex: 0 0 auto; border-radius: 50%; background: var(--bw-color-surface-subtle); color: var(--bw-color-text-muted); font-size: 9.5px; font-weight: 700; }
.timeline-balance b { color: var(--bw-color-text); font-weight: 700; }
.timeline-track { position: relative; min-width: var(--uw-track-width); overflow: hidden; }
.timeline-row[data-employee-id] > .timeline-track::after { position: absolute; inset: 0; z-index: 3; background: transparent; opacity: 0; content: ""; pointer-events: none; transition: background var(--bw-motion-fast), opacity var(--bw-motion-fast); }
.timeline-row[data-employee-id]:hover > .timeline-track::after { background: var(--bw-color-surface-subtle); opacity: .52; }
.timeline-row[data-selected="true"] > .timeline-track::after { background: var(--bw-color-accent-surface); box-shadow: inset 3px 0 var(--bw-color-accent); opacity: .72; }
.month-header { position: relative; height: var(--uw-scale-height); overflow: hidden; background: var(--bw-color-surface-subtle); cursor: ew-resize; touch-action: none; user-select: none; }
.month-header::after { position: absolute; right: 7px; bottom: 4px; z-index: 3; color: var(--bw-color-text-muted); font-size: 10px; opacity: 0; content: "Ziehen zum Skalieren"; pointer-events: none; transition: opacity 160ms ease; }
.month-header:hover::after, .month-header:focus-visible::after { opacity: 1; }
.month-header:focus-visible { outline: 2px solid var(--bw-color-focus); outline-offset: -2px; }
.scale-row { position: absolute; right: 0; left: 0; }
.scale-row span { position: absolute; display: flex; align-items: center; overflow: hidden; border-right: 1px solid var(--bw-color-line); color: var(--bw-color-text-muted); white-space: nowrap; }
.scale-months { top: 0; height: 100%; }
.scale-months span { top: 0; bottom: 0; padding-left: 7px; font-size: 11px; }
.scale-weeks { top: 24px; height: 22px; border-top: 1px solid var(--bw-color-line); }
.scale-weeks span { top: 0; bottom: 0; justify-content: center; padding-inline: 2px; font-size: 10px; }
.scale-days { top: 46px; height: 25px; border-top: 1px solid var(--bw-color-line); }
.scale-days span { top: 0; bottom: 0; justify-content: center; flex-direction: column; gap: 0; padding-inline: 1px; font-size: 9px; line-height: 1; }
.scale-days b { font-weight: 400; }
.scale-days small { font-size: 8px; line-height: 1; }
.scale-days.is-compact span { font-size: 8px; }
.scale-days.is-compact small { font-size: 7px; }
.month-header.has-weeks .scale-months { height: 24px; }
.month-header.has-days .scale-months { height: 24px; }
.scale-day-weekend { background: #eef0f2; }
.scale-day-holiday { background: var(--uw-holiday-surface); color: var(--uw-holiday) !important; cursor: help; }
.is-scaling, .is-scaling * { cursor: ew-resize !important; user-select: none !important; }
.is-panning, .is-panning * { cursor: grabbing !important; user-select: none !important; }
.offday, .holiday, .month-line, .today-line, .conflict-band { position: absolute; top: 0; bottom: 0; pointer-events: none; }
.offday { background: #f0f2f4; }
.holiday { z-index: 1; background: var(--uw-holiday-surface); box-shadow: inset 1px 0 var(--uw-holiday), inset -1px 0 var(--uw-holiday); cursor: help; pointer-events: auto; }
.month-line { width: 1px; background: var(--bw-color-line); }
.today-line { z-index: 6; width: 1px; background: var(--bw-color-accent); }
.today-line::before { position: absolute; top: 0; left: -3px; width: 7px; height: 7px; border-radius: 50%; background: var(--bw-color-accent); content: ""; }
.conflict-band { z-index: 2; background: rgb(156 99 6 / 12%); box-shadow: inset 1px 0 rgb(156 99 6 / 45%), inset -1px 0 rgb(156 99 6 / 45%); }
.conflict-band.pending { background: rgb(156 99 6 / 8%); }
.absence-bar { position: absolute; z-index: 5; top: 12px; box-sizing: border-box; height: 12px; min-width: 4px; overflow: visible; padding: 0; border: 0; border-radius: 2px; font-size: 9px; line-height: 12px; white-space: nowrap; }
.absence-bar.approved { background: var(--uw-approved); color: white; }
.absence-bar.pending { border: 1px dashed var(--uw-pending); background: var(--uw-pending-surface); color: #704700; }
.absence-bar:hover, .absence-bar:focus-visible { z-index: 9; }
.absence-bar:focus-visible { outline: 2px solid var(--bw-color-focus); outline-offset: 2px; }
.bar-inside { position: absolute; inset: 0; display: flex; align-items: center; min-width: 0; overflow: hidden; padding: 0 4px; border-radius: inherit; text-overflow: clip; pointer-events: none; }
.bar-outside { position: absolute; top: 50%; z-index: 7; display: none; padding: 0 3px; border-radius: 3px; background: rgb(255 255 255 / 82%); color: var(--bw-color-text-muted); font-size: 9px; font-weight: 400; line-height: 14px; transform: translateY(-50%); pointer-events: none; }
.bar-outside-left { right: calc(100% + 7px); display: block; }
.bar-outside-right { left: calc(100% + 3px); }
.absence-bar.labels-outside .bar-inside { visibility: hidden; }
.absence-bar.labels-outside .bar-outside-right { display: block; }
.empty-bar-note { position: absolute; inset: 0; display: flex; align-items: center; padding-left: 10px; color: var(--bw-color-text-muted); font-size: 11px; }
.school-holiday-row { min-height: 34px; background: color-mix(in srgb, var(--uw-school-surface) 32%, var(--bw-color-surface)); }
.school-holiday-row > .timeline-person,
.school-holiday-row > .timeline-balance { background: color-mix(in srgb, var(--uw-school-surface) 48%, var(--bw-color-surface)); }
.school-avatar { border-radius: 4px; background: var(--uw-school-surface); color: var(--uw-school); }
.school-period-count { color: var(--uw-school); }
.school-break-bar { position: absolute; top: 11px; z-index: 5; box-sizing: border-box; height: 12px; min-width: 3px; overflow: hidden; padding: 0 4px; border: 1px solid var(--uw-school); border-radius: 2px; background: var(--uw-school-surface); color: #3f5967; font-size: 9px; line-height: 10px; white-space: nowrap; cursor: help; }
.school-break-bar span { pointer-events: none; }
.school-calendar-note { position: absolute; top: 9px; left: 9px; z-index: 5; padding: 1px 5px; border-radius: 3px; background: rgb(255 255 255 / 82%); color: var(--bw-color-text-muted); font-size: 10px; }

.table-action { min-width: 76px; }
.employee-name-cell { display: flex; align-items: center; gap: 8px; }
.employee-name-cell strong { font-weight: 400; }
.status-label { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; }
.status-label::before { width: 7px; height: 7px; border-radius: 50%; background: currentColor; content: ""; }
.status-label.beantragt { color: var(--uw-pending); }
.status-label.genehmigt { color: var(--uw-approved); }
.status-label.abgelehnt { color: var(--bw-color-danger); }
.minimum-warning { display: block; color: var(--bw-color-danger); font-size: 11px; white-space: nowrap; }
.table-note { max-width: 270px; overflow: hidden; text-overflow: ellipsis; color: var(--bw-color-text-muted); }
.empty-state { display: grid; place-items: center; min-height: 180px; padding: 24px; color: var(--bw-color-text-muted); text-align: center; }
.empty-state strong { display: block; margin-bottom: 4px; color: var(--bw-color-text); font-weight: 400; }
.access-note { margin: 14px 16px; padding: 12px; border-radius: var(--bw-radius-md); background: var(--bw-color-surface-subtle); color: var(--bw-color-text-muted); }

.request-dialog, .decision-dialog { width: min(560px, calc(100vw - 28px)); }
.employee-dialog { width: min(620px, calc(100vw - 28px)); }
.dialog-intro { margin-bottom: 14px; color: var(--bw-color-text); }
.date-grid, .employee-form-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 10px 12px; margin-bottom: 12px; }
.optional { color: var(--bw-color-text-muted); font-weight: 300; }
.request-calculation { min-height: 42px; margin-top: 12px; padding: 9px 10px; border-radius: var(--bw-radius-sm); background: var(--bw-color-surface-subtle); color: var(--bw-color-text-muted); }
.request-calculation strong { color: var(--bw-color-text); font-weight: 700; }
.form-error { margin-top: 10px; padding: 8px 10px; border-radius: var(--bw-radius-sm); background: var(--bw-color-danger-surface); color: var(--bw-color-danger); }
.decision-summary { margin-bottom: 12px; padding: 10px; border-radius: var(--bw-radius-sm); background: var(--bw-color-surface-subtle); }
.decision-summary strong { font-weight: 700; }
.dialog-note { margin: 0 0 12px; color: var(--bw-color-text-muted); font-size: 11.5px; line-height: 1.35; }
.dialog-note.is-warning { color: var(--bw-color-danger); font-weight: 700; }
.decision-actions { justify-content: space-between; }
.decision-reject { border-color: var(--bw-color-danger); color: var(--bw-color-danger); }
.decision-reject:hover { background: var(--bw-color-danger-surface); border-color: var(--bw-color-danger); color: var(--bw-color-danger); }
.weekday-fieldset { margin: 14px 0 0; padding: 10px; border: 1px solid var(--bw-color-line); border-radius: var(--bw-radius-sm); }
.weekday-fieldset legend { padding: 0 5px; color: var(--bw-color-text-muted); font-size: 12px; }
#weekdayChecks { display: flex; flex-wrap: wrap; gap: 10px 14px; }
.weekday-check { display: inline-flex; align-items: center; gap: 5px; }
.weekday-check input { accent-color: var(--bw-color-accent); }

@media (max-width: 880px) {
  .app-subtitle, .context-explain { display: none; }
  .app-header { padding-inline: 12px; }
  .bw-wortmarke { --bw-wortmarke-hoehe: 14px; }
  main { padding: 14px 12px 24px; }
  .command-row, .section-heading { align-items: stretch; flex-direction: column; }
  .command-actions { align-self: stretch; }
  .command-actions button { flex: 1; }
  .balance-strip { flex-direction: column; }
  .balance-person { flex-basis: auto; }
  .balance-values { flex: 0 0 auto; overflow-x: auto; border-top: 1px solid var(--bw-color-line); }
  .balance-item:first-child { border-left: 0; }
  .plan-controls { flex-wrap: wrap; }
  .threshold-field, .state-field { margin-left: 4px; }
  .timeline-scroll { max-height: none; }
}

@media (max-width: 560px) {
  .cloud-state { margin-left: auto; }
  .bw-markenecke { display: none; }
  .context-bar { flex-wrap: wrap; }
  .context-person { flex: 1; min-width: 150px; }
  .date-grid, .employee-form-grid { grid-template-columns: 1fr; }
  .section-heading { padding-inline: 12px; }
  .legend, .conflict-callout { padding-inline: 12px; }
}

@media print {
  @page { size: A3 landscape; margin: 10mm; }
  .context-bar, .command-actions, .view-tabs, .plan-controls, .balance-strip, .legend, .cloud-state { display: none !important; }
  body { background: white; }
  .app-header { position: static; }
  main { width: 100%; padding: 8px 0; }
  .command-row { margin-bottom: 8px; }
  .work-surface { border: 0; }
  .section-heading { padding: 6px 0; }
  .timeline-scroll { max-height: none; overflow: visible; border: 1px solid var(--bw-color-line); }
  .timeline-grid { width: 100%; }
  .timeline-row { grid-template-columns: 180px 90px minmax(0, 1fr); }
  .timeline-person, .timeline-balance, .timeline-head { position: static; }
  .timeline-track { min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
