/*
 * Finanzplan Denise — Stil.
 *
 * Die Farbwerte, Radien, Abstände und die Schriftpaarung stammen unverändert aus
 * dem Holzpunkt-Dashboard (apps/dashboard/src/stil.css) und den Designentscheiden:
 * warmes Papier statt Weiss, tiefes Tintenbraun als Marke, genau ein Schattenniveau,
 * Oswald für Titel, Roboto für jede Zahl (Tabellenziffern).
 *
 * Die Statusskala bleibt geschlossen und reserviert: gut / achtung / ernst / kritisch
 * erscheinen nur an Zuständen (Zielerreichung, Auslastung), nie dekorativ.
 */

:root {
  --grund: #f6f3ee;
  --flaeche: #ffffff;
  --flaeche-gehoben: #fffdfa;
  --flaeche-gedaempft: #efeae2;
  --linie: #e2dcd2;
  --rand-bedienelement: #8c8579;
  --text: #241f1a;
  --text-gedaempft: #5e574d;
  --primaer: #3a2e22;
  --primaer-gedrueckt: #241c13;
  --auf-dunkel: #fbf8f3;
  --sekundaeraktion: #4a4036;

  --status-gut: #1d6b4c;
  --status-gut-flaeche: #e4efe8;
  --status-achtung: #7a5600;
  --status-achtung-flaeche: #f5edd9;
  --status-ernst: #9a3d12;
  --status-ernst-flaeche: #f6e7dc;
  --status-kritisch: #9b1c1c;
  --status-kritisch-flaeche: #f6e1e1;

  --diagramm-kurve: #403a32;
  --diagramm-spur: #e2dcd2;

  --fokus: #1d5b8f;

  --radius-klein: 8px;
  --radius-mittel: 12px;
  --radius-karte: 16px;

  --schatten: 0 1px 3px rgba(36, 31, 26, 0.1);

  --schrift-text: 'Roboto', system-ui, -apple-system, sans-serif;
  --schrift-titel: 'Oswald', 'Roboto', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  border-color: var(--linie);
}

/* Ohne diese Regel gewinnt jede Klasse mit eigenem `display` (z.B. .tor)
   gegen das hidden-Attribut — Autor-Regeln schlagen die UA-Regel, egal
   wie niedrig ihre Spezifität ist. */
[hidden] { display: none !important; }

body {
  margin: 0;
  background: var(--grund);
  color: var(--text);
  font-family: var(--schrift-text);
  font-size: 14px;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
  color: inherit;
}

input:focus-visible,
button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--fokus);
  outline-offset: 2px;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  font-family: var(--schrift-titel);
  font-weight: 500;
}

h1 { font-size: 24px; line-height: 32px; }
h2 { font-size: 20px; line-height: 28px; }
h3 { font-size: 16px; line-height: 22px; }

p { margin: 0; }

.zahl {
  font-variant-numeric: tabular-nums;
  font-family: var(--schrift-text);
}

.gedaempft { color: var(--text-gedaempft); }
.klein { font-size: 12px; line-height: 16px; }
.rechts { text-align: right; }

.nur-vorlesen {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ── Kopfzeile ──────────────────────────────────────────────────────────── */

.kopfzeile {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 64px;
  padding: 0 24px;
  background: var(--flaeche-gehoben);
  border-bottom: 1px solid var(--linie);
}

.kopfzeile-konto {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wortzeichen {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.wortzeichen-mal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: var(--radius-klein);
  background: var(--primaer);
  color: var(--auf-dunkel);
  font-family: var(--schrift-titel);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

.wortzeichen-name {
  display: block;
  font-family: var(--schrift-titel);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}

.wortzeichen-zusatz {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1;
  color: var(--text-gedaempft);
}

/* ── Gerüst ─────────────────────────────────────────────────────────────── */

.inhalt {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 24px 8px;
}

.abschnitt {
  margin-bottom: 24px;
  animation: einlauf 320ms cubic-bezier(0.2, 0.7, 0.3, 1) both;
  animation-delay: calc(var(--verzug, 0) * 60ms);
}

@keyframes einlauf {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .abschnitt { animation: none; }
}

.abschnitt-titel {
  margin-bottom: 12px;
}

.raster-zwei {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(320px, 1fr);
  gap: 16px;
  align-items: start;
}

@media (max-width: 1080px) {
  .raster-zwei { grid-template-columns: minmax(0, 1fr); }
}

.fuss {
  padding: 16px 0 32px;
  text-align: center;
}

/* ── Karte ──────────────────────────────────────────────────────────────── */

.karte {
  background: var(--flaeche);
  border: 1px solid var(--linie);
  border-radius: var(--radius-karte);
  box-shadow: var(--schatten);
  padding: 20px;
}

.karte-kopf {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.karte-schmal { display: flex; flex-direction: column; gap: 20px; }

/* ── Kennzahlen ─────────────────────────────────────────────────────────── */

.kennzahlen {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 1080px) {
  .kennzahlen { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.kennzahl {
  position: relative;
  background: var(--flaeche);
  border: 1px solid var(--linie);
  border-radius: var(--radius-karte);
  box-shadow: var(--schatten);
  padding: 20px;
  overflow: hidden;
}

/* Die Hero-Karte trägt die eine Zahl des Bildschirms — Markenfläche, kein Status. */
.kennzahl-hero {
  background: var(--primaer);
  border-color: var(--primaer);
  color: var(--auf-dunkel);
}

.kennzahl-hero .kennzahl-name,
.kennzahl-hero .kennzahl-zusatz { color: rgba(251, 248, 243, 0.72); }

.kennzahl-name {
  display: block;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: var(--text-gedaempft);
}

.kennzahl-wert {
  display: block;
  margin-top: 8px;
  font-family: var(--schrift-text);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 34px;
  line-height: 40px;
  letter-spacing: -0.5px;
}

.kennzahl-einheit {
  font-size: 15px;
  font-weight: 500;
  margin-left: 4px;
  opacity: 0.7;
}

.kennzahl-zusatz {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 16px;
  color: var(--text-gedaempft);
}

/* ── Segmentschalter ────────────────────────────────────────────────────── */

.segment {
  display: inline-flex;
  padding: 3px;
  gap: 2px;
  background: var(--flaeche-gedaempft);
  border-radius: var(--radius-klein);
}

.segment-knopf {
  height: 30px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--text-gedaempft);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 120ms linear, color 120ms linear;
}

.segment-knopf:hover { color: var(--text); }

.segment-knopf[aria-pressed='true'] {
  background: var(--flaeche);
  color: var(--text);
  box-shadow: var(--schatten);
}

.segment-klein .segment-knopf { height: 26px; padding: 0 10px; font-size: 12px; }

/* ── Knöpfe ─────────────────────────────────────────────────────────────── */

.knopf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 36px;
  padding: 0 16px;
  border: 0;
  border-radius: var(--radius-klein);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 120ms linear;
}

.knopf-primaer { background: var(--primaer); color: var(--auf-dunkel); }
.knopf-primaer:hover { background: var(--primaer-gedrueckt); }

.knopf-umriss {
  background: var(--grund);
  color: var(--primaer);
  border: 1px solid var(--sekundaeraktion);
}
.knopf-umriss:hover { background: var(--flaeche-gedaempft); }

.knopf-klein { height: 32px; padding: 0 12px; font-size: 12px; }

/* ── Abzeichen ──────────────────────────────────────────────────────────── */

.abzeichen {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 24px;
  padding: 0 8px;
  border-radius: var(--radius-klein);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.abzeichen-gut      { background: var(--status-gut-flaeche);      color: var(--status-gut); }
.abzeichen-achtung  { background: var(--status-achtung-flaeche);  color: var(--status-achtung); }
.abzeichen-ernst    { background: var(--status-ernst-flaeche);    color: var(--status-ernst); }
.abzeichen-kritisch { background: var(--status-kritisch-flaeche); color: var(--status-kritisch); }

.abzeichen-neutral {
  height: 22px;
  font-size: 11px;
  background: var(--flaeche-gedaempft);
  color: var(--text-gedaempft);
}

/* ── Konto / Login ──────────────────────────────────────────────────────── */

.tor {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--grund);
}

.tor-karte {
  width: 100%;
  max-width: 360px;
  background: var(--flaeche);
  border: 1px solid var(--linie);
  border-radius: var(--radius-karte);
  box-shadow: var(--schatten);
  padding: 28px;
  text-align: center;
}

.tor-karte .wortzeichen { justify-content: center; }

.konto-formular {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.konto-eingabe {
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--rand-bedienelement);
  border-radius: var(--radius-klein);
  background: var(--flaeche);
  font-size: 14px;
  width: 100%;
}

.konto-formular .knopf { width: 100%; height: 38px; }

.konto-link {
  background: none;
  border: none;
  padding: 2px 0;
  font-size: 12px;
  color: var(--fokus);
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
}

.konto-status { font-size: 12px; color: var(--text-gedaempft); }

/* ── Regler und Messbalken ──────────────────────────────────────────────── */

.regler { display: flex; flex-direction: column; gap: 8px; }

.regler-kopf {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
}

.regler-wert { font-weight: 700; font-size: 15px; }

input[type='range'] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 20px;
  margin: 0;
  background: transparent;
  cursor: pointer;
}

input[type='range']::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: var(--flaeche-gedaempft);
}

input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px; height: 16px;
  margin-top: -6px;
  border: 0;
  border-radius: 999px;
  background: var(--primaer);
  box-shadow: 0 0 0 3px var(--flaeche);
}

input[type='range']::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: var(--flaeche-gedaempft);
}

input[type='range']::-moz-range-thumb {
  width: 16px; height: 16px;
  border: 0;
  border-radius: 999px;
  background: var(--primaer);
}

.messbalken {
  height: 8px;
  border-radius: 999px;
  background: var(--flaeche-gedaempft);
  overflow: hidden;
}

.messbalken > span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--primaer);
  transition: width 240ms cubic-bezier(0.2, 0.7, 0.3, 1), background-color 120ms linear;
}

.messbalken-gut > span      { background: var(--status-gut); }
.messbalken-achtung > span  { background: var(--status-achtung); }
.messbalken-ernst > span    { background: var(--status-ernst); }
.messbalken-kritisch > span { background: var(--status-kritisch); }

/* ── Eckwerte ───────────────────────────────────────────────────────────── */

.stammdaten {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 24px;
  row-gap: 12px;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--linie);
}

.stammdaten-zwei { grid-template-columns: repeat(2, 1fr); }

.stammdaten dt { font-size: 12px; line-height: 16px; color: var(--text-gedaempft); }
.stammdaten dd { margin: 4px 0 0; font-size: 14px; font-weight: 500; font-variant-numeric: tabular-nums; }

/* ── Diagramm ───────────────────────────────────────────────────────────── */

.diagramm { display: flex; flex-direction: column; gap: 10px; }

.balkenzeile {
  display: grid;
  grid-template-columns: minmax(140px, 30%) minmax(0, 1fr) 92px;
  align-items: center;
  gap: 12px;
}

.balkenname {
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.balkenspur {
  height: 22px;
  border-radius: 6px;
  background: var(--diagramm-spur);
  overflow: hidden;
}

/* Die Balken tragen keine Wertung — neutrale Tinte, wie die Messkurve. */
.balken {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 6px;
  background: var(--diagramm-kurve);
  transition: width 280ms cubic-bezier(0.2, 0.7, 0.3, 1);
}

.balkenwert {
  text-align: right;
  font-size: 13px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

/* ── Blöcke ─────────────────────────────────────────────────────────────── */

.bloecke { display: flex; flex-direction: column; gap: 16px; }

.block-kopf {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.block-titelzeile { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.block-summe {
  display: flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}

.block-summe-wert {
  font-family: var(--schrift-text);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
}

.laufzeit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 24px;
  padding: 0 4px 0 8px;
  border-radius: var(--radius-klein);
  background: var(--flaeche-gedaempft);
  font-size: 12px;
  color: var(--text-gedaempft);
}

.laufzeit input {
  width: 44px;
  height: 20px;
  padding: 0 4px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--flaeche);
  text-align: right;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

/* ── Tabelle ────────────────────────────────────────────────────────────── */

.tabellenrahmen {
  border: 1px solid var(--linie);
  border-radius: var(--radius-mittel);
  overflow: hidden;
}

.tabellenlauf { overflow-x: auto; }

.tabelle {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
  font-size: 14px;
}

.tabelle th {
  height: 38px;
  padding: 0 10px;
  background: var(--flaeche-gedaempft);
  border-bottom: 1px solid var(--linie);
  font-size: 11px;
  font-weight: 500;
  line-height: 14px;
  color: var(--text-gedaempft);
  text-align: left;
  vertical-align: middle;
}

/* Die Trennung Eingabe | Ergebnis ist die wichtigste Information der Tabelle. */
.tabelle th.grenze,
.tabelle td.grenze { border-left: 1px solid var(--linie); }

.tabelle td {
  height: 44px;
  padding: 0 10px;
  border-bottom: 1px solid var(--linie);
  vertical-align: middle;
}

.tabelle tbody tr:last-child td { border-bottom: 0; }
.tabelle tr:hover td { background: rgba(239, 234, 226, 0.45); }

.tabelle td.ergebnis {
  font-variant-numeric: tabular-nums;
  text-align: right;
  background: rgba(246, 243, 238, 0.6);
}

.tabelle tr:hover td.ergebnis { background: rgba(239, 234, 226, 0.7); }

.tabelle td.stark { font-weight: 700; }

.zeile-aus td { opacity: 0.38; }
.zeile-aus td.ergebnis { text-decoration: line-through; text-decoration-thickness: 1px; }

.variante { display: flex; align-items: center; gap: 10px; }
.variantenname { font-weight: 500; white-space: nowrap; }

/* Zeilenschalter: 44×44 Treffer, sichtbarer Haken, kein Systemkästchen. */
.schalter { position: relative; display: inline-flex; flex: none; }
.schalter input {
  position: absolute;
  inset: -10px;
  width: 36px; height: 36px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.schalter span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border: 1px solid var(--rand-bedienelement);
  border-radius: 5px;
  background: var(--flaeche);
  color: transparent;
  transition: background-color 120ms linear, border-color 120ms linear;
}
.schalter input:checked + span {
  background: var(--primaer);
  border-color: var(--primaer);
  color: var(--auf-dunkel);
}
.schalter input:focus-visible + span { outline: 2px solid var(--fokus); outline-offset: 2px; }

/* Eingabefelder in der Tabelle: im Ruhezustand Text mit Punktlinie, beim Zeigen
   eine Fläche, beim Bearbeiten ein echtes Feld. */
.zelleneingabe {
  width: 100%;
  height: 30px;
  padding: 0 8px;
  border: 1px solid transparent;
  border-bottom: 1px dashed var(--linie);
  border-radius: 6px;
  background: transparent;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  transition: background-color 120ms linear, border-color 120ms linear;
  -moz-appearance: textfield;
}

.zelleneingabe::-webkit-outer-spin-button,
.zelleneingabe::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.zelleneingabe:hover {
  background: var(--flaeche-gedaempft);
  border-bottom-color: transparent;
}

.zelleneingabe:focus {
  outline: none;
  background: var(--flaeche);
  border: 1px solid var(--fokus);
  box-shadow: 0 0 0 2px rgba(29, 91, 143, 0.15);
}

.zelleneingabe.leer { color: var(--text-gedaempft); font-weight: 400; }

td.eingabe { padding: 0 6px; }

.kein-wert { color: var(--text-gedaempft); }

/* Fusszeile der Blocktabelle */
.tabelle tfoot td {
  height: 40px;
  background: var(--flaeche-gedaempft);
  border-top: 1px solid var(--linie);
  border-bottom: 0;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

/* ── Seminar ────────────────────────────────────────────────────────────── */

.seminare { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }

@media (max-width: 1080px) { .seminare { grid-template-columns: minmax(0, 1fr); } }

.seminar {
  border: 1px solid var(--linie);
  border-radius: var(--radius-mittel);
  overflow: hidden;
}

.seminar-kopf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  background: var(--flaeche-gedaempft);
  border-bottom: 1px solid var(--linie);
}

.seminar-felder { display: flex; gap: 8px; padding: 10px 12px 4px; }

.seminar-feld { flex: 1; }
.seminar-feld span { display: block; font-size: 11px; line-height: 14px; color: var(--text-gedaempft); }
.seminar-feld .zelleneingabe { text-align: left; }

.seminar table { width: 100%; border-collapse: collapse; font-size: 13px; }
.seminar th {
  height: 30px; padding: 0 12px;
  font-size: 11px; font-weight: 500; color: var(--text-gedaempft); text-align: left;
}
.seminar th.rechts, .seminar td.rechts { text-align: right; }
.seminar td { height: 38px; padding: 0 6px; border-top: 1px solid var(--linie); }
.seminar td:first-child { padding-left: 12px; }
.seminar td:last-child { padding-right: 12px; font-variant-numeric: tabular-nums; }

.seminar-fuss {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--linie);
  background: rgba(246, 243, 238, 0.6);
  font-size: 12px;
}

.seminar-fuss { margin: 0; }
.seminar-fuss > div { text-align: center; }
.seminar-fuss dt { color: var(--text-gedaempft); font-size: 11px; }
.seminar-fuss dd { margin: 2px 0 0; font-weight: 700; font-variant-numeric: tabular-nums; }

.seminar-aus { opacity: 0.45; }

/* ── Annahmen ───────────────────────────────────────────────────────────── */

.annahmen {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

@media (max-width: 1080px) { .annahmen { grid-template-columns: minmax(0, 1fr); } }

.feld-beschriftung { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 500; }

.feld input[type='number'] {
  width: 100%;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--rand-bedienelement);
  border-radius: var(--radius-klein);
  background: var(--flaeche);
  font-variant-numeric: tabular-nums;
}

.feld-hilfe { display: block; margin-top: 8px; font-size: 12px; line-height: 16px; color: var(--text-gedaempft); }

.hinweis {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-left: 4px solid var(--status-achtung);
  border-radius: var(--radius-mittel);
  background: var(--status-achtung-flaeche);
  color: var(--status-achtung);
}

.hinweis-titel { font-weight: 500; font-size: 14px; }
.hinweis .zahl { font-weight: 500; }

/* ── Leerzustand ────────────────────────────────────────────────────────── */

.leerzustand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 120px;
  padding: 24px;
  border: 1px dashed var(--rand-bedienelement);
  border-radius: var(--radius-mittel);
  text-align: center;
  color: var(--text-gedaempft);
}

.leerzustand-titel { font-weight: 500; color: var(--text); }

/* ── Eingeklappter Block ────────────────────────────────────────────────── */

/*
 * Ein Angebot ohne Zahlen ist kein Fehler, sondern ein Vorhaben. Es bleibt
 * darum sichtbar — flach, mit gestricheltem Marker statt Fläche, wie der
 * Leerzustand eine Stufe kleiner.
 */
.karte-eingeklappt {
  padding: 16px 20px;
  background: var(--flaeche-gehoben);
  box-shadow: none;
}

.karte-eingeklappt .block-summe { align-items: center; gap: 12px; }

.nicht-hinterlegt {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 8px;
  border: 1px dashed var(--rand-bedienelement);
  border-radius: var(--radius-klein);
  font-size: 12px;
  color: var(--text-gedaempft);
}
