/* daily-bars.css — Dashboard DailyBars (Legacy 14/30/60-Tage Stacked Sparkline)

 Quelle: extrahiert aus dashboard.css ("DailyBars-Legacy"-Block). Inhalt 1:1.

 Konsumenten: web/js/domain/dashboard/daily-bars.js — stacked Sparkline mit
 neu/erledigt-Segmenten pro Tag. Bleibt als Legacy-Modul verfuegbar; die
 neuere DailyChart (daily-chart.css) ist Frappe-basiert und reichhaltiger.

 Backlog-Hinweis: DailyBars rendert auch die Klassen `.dash-range-switcher`
 und `.dash-range-btn` (siehe daily-bars.js), die nirgends in CSS definiert
 sind. Bestand-Bug: entweder die .dash-range-*-Regeln hier nachziehen oder das
 DailyBars-Legacy-Modul samt CSS-Datei zurueckbauen.
 ========================================================================== */

.dash-daily { display: flex; flex-direction: column; gap: var(--space-3, 12px); }
.dash-day-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: var(--space-1);
  align-items: end;
  height: 140px;
  padding-bottom: var(--space-4-5);
  position: relative;
}
.dash-day-col { display: flex; flex-direction: column; justify-content: flex-end; height: 100%; position: relative; }
.dash-day-stack { width: 100%; display: flex; flex-direction: column; justify-content: flex-end; border-radius: var(--radius-xs) var(--radius-xs) 0 0; overflow: hidden; min-height: 1px; }
.dash-day-seg { width: 100%; }
.dash-day-seg--neu { background: var(--color-brand); }
.dash-day-seg--erl { background: var(--status-success-fg); }
.dash-bar-tick { position: absolute; bottom: 0; left: 0; right: 0; text-align: center; font-size: 10px; color: var(--color-text-muted); }
.dash-bar-tick--blank { color: transparent; }
