/* Tablettenzähl-Server — Admin-SPA (geladen von index.html, alle Styles hier).
   Mobile-first; Desktop-Erweiterungen ab 720/900px. Keine Inline-Styles. */

/* ── Design-Tokens ─────────────────────────────────────────────────────────── */
:root {
  --akzent: #2f6f4f;
  --akzent-dunkel: #24573e;
  --akzent-hell: #e3f0e9;
  --akzent-text: #ffffff;
  --fehler: #b3261e;
  --fehler-hell: #fdecea;
  --warn: #9a6710;

  --text: #1c2126;
  --text-mild: #5b646e;
  --flache: #ffffff;
  --flache-2: #f6f8fa;
  --hintergrund: #eef1f5;
  --rand: #d8dee4;
  --rand-stark: #b9c2ca;

  --puffer: 16px;
  --rundung: 10px;
  --rundung-klein: 7px;
  --schatten-1: 0 1px 2px rgba(16, 24, 32, .06), 0 1px 6px rgba(16, 24, 32, .05);
  --schatten-2: 0 6px 18px rgba(16, 24, 32, .14);
  --tab-hoehe: 58px;
  --ueergang: 120ms ease;
}

@media (prefers-color-scheme: dark) {
  :root {
    --akzent: #57b98b;
    --akzent-dunkel: #6cc79d;
    --akzent-hell: #1d3a2c;
    --akzent-text: #0c1712;
    --fehler: #ff8a80;
    --fehler-hell: #3a1a17;
    --warn: #d9a94e;

    --text: #e6ebef;
    --text-mild: #9aa4ae;
    --flache: #181d23;
    --flache-2: #1f252c;
    --hintergrund: #101418;
    --rand: #2b323a;
    --rand-stark: #414a54;
    --schatten-1: 0 1px 2px rgba(0, 0, 0, .4);
    --schatten-2: 0 8px 22px rgba(0, 0, 0, .55);
  }
}

/* ── Basis ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { color-scheme: light dark; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Cantarell, sans-serif;
  font-size: 15px;
  line-height: 1.45;
  color: var(--text);
  background: var(--hintergrund);
  -Webkit-text-size-adjust: 100%;
}

body.laedt { cursor: progress; }

h1, h2, h3 { margin: 0; font-weight: 650; }
h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--text-mild); margin: 18px 0 10px; }
h3:first-Child { margin-top: 0; }
p { margin: 0; }
code { font-family: ui-monospace, Consolas, monospace; font-size: .85em; background: var(--flache-2); border: 1px solid var(--rand); border-radius: 4px; padding: 1px 5px; }

:focus-visible { outline: 2px solid var(--akzent); outline-offset: 2px; border-radius: 4px; }

.klein { font-size: 12px; color: var(--text-mild); }
.zaehlen { text-align: right; font-variant-numeric: tabular-nums; }

/* ── Kopfzeile ─────────────────────────────────────────────────────────────── */
.kopf {
  background: var(--flache);
  border-bottom: 1px solid var(--rand);
  box-shadow: var(--schatten-1);
  padding: 10px var(--puffer) 6px;
  position: sticky;
  top: 0;
  z-index: 30;
}
.kopf-zeile { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.marke { display: inline-flex; color: var(--akzent); }
.marke .symbol { width: 30px; height: 30px; }
.marke-text { display: flex; flex-direction: column; line-height: 1.15; }
.marke-titel { font-weight: 700; font-size: 16px; }
.marke-unter { font-size: 11px; color: var(--text-mild); text-transform: uppercase; letter-spacing: .08em; }
.kopf-rechts { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.benutzer-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--flache-2); border: 1px solid var(--rand);
  border-radius: 999px; padding: 3px 10px 3px 4px; max-width: 100%;
}
.avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--akzent); color: var(--akzent-text);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex: none;
}
.benutzer-name { font-size: 13px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 34vw; }

.status-zeile { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-mild); margin-top: 4px; min-height: 20px; }
.status-punkt { width: 9px; height: 9px; border-radius: 50%; background: var(--rand-stark); flex: none; }
.status-punkt.ok { background: var(--akzent); }
.dreher {
  width: 14px; height: 14px; border-radius: 50%; flex: none;
  border: 2px solid var(--rand-stark); border-top-color: var(--akzent);
  animation: drehen .8s linear infinite;
}
@keyframes drehen { to { transform: rotate(360deg); } }

/* ── Navigation: mobil unten, desktop oben (unter dem Kopf) ───────────────── */
.navigation {
  position: fixed; left: 0; right: 0; bottom: 0;
  display: flex; justify-content: space-around;
  background: var(--flache); border-top: 1px solid var(--rand);
  padding: 4px 4px calc(4px + env(safe-area-inset-bottom, 0px));
  z-index: 40; box-shadow: var(--schatten-2);
}
.nav-punkt {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  min-width: 44px; min-height: 44px; padding: 5px 8px;
  color: var(--text-mild); text-decoration: none;
  font-size: 11px; font-weight: 600; border-radius: var(--rundung-klein);
  transition: color var(--ueergang), background var(--ueergang);
}
.nav-symbol { width: 22px; height: 22px; }
.nav-punkt:hover { color: var(--text); }
.nav-punkt[aria-current="page"] { color: var(--akzent); background: var(--akzent-hell); }

/* ── Inhalt ────────────────────────────────────────────────────────────────── */
.inhalt { max-width: 1180px; margin: 0 auto; padding: var(--puffer); padding-bottom: calc(var(--tab-hoehe) + 24px + env(safe-area-inset-bottom, 0px)); }

#banner {
  background: var(--fehler-hell); border: 1px solid var(--fehler); color: var(--fehler);
  border-radius: var(--rundung); padding: 11px 14px; font-size: 13px; font-weight: 600;
  margin-bottom: 14px;
}

.karte {
  background: var(--flache); border: 1px solid var(--rand); border-radius: var(--rundung);
  padding: 14px; box-shadow: var(--schatten-1); margin-bottom: 14px;
}

.ansicht { animation: einfugen 140ms ease; }
@keyframes einfugen { from { opacity: 0; transform: translateY(4px); } }

.ansicht-kopf { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.ansicht-kopf h2 { font-size: 19px; }
.ansicht-kopf .klein { margin-left: auto; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.knopf {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font: inherit; font-weight: 600; font-size: 14px;
  min-height: 40px; padding: 7px 14px;
  border: 1px solid var(--rand-stark); border-radius: var(--rundung-klein);
  background: var(--flache-2); color: var(--text);
  cursor: pointer; text-decoration: none;
  transition: background var(--ueergang), border-color var(--ueergang), filter var(--ueergang);
}
.knopf:hover { filter: brightness(.97); }
.knopf:active { filter: brightness(.93); }
.knopf:disabled { opacity: .45; cursor: default; filter: none; }
.knopf-primaer { background: var(--akzent); border-color: var(--akzent); color: var(--akzent-text); }
.knopf-primaer:hover { background: var(--akzent-dunkel); }
.knopf-gefahrlich { color: var(--fehler); border-color: color-mix(in srgb, var(--fehler) 45%, var(--rand-stark)); }
.knopf-kontour { background: transparent; }
.knopf-klein { min-height: 34px; padding: 4px 10px; font-size: 13px; }
.aktions-zelle { display: flex; gap: 6px; flex-wrap: wrap; }

/* Zwei-Stufen-Bestaetigung */
.knopf.wartet-bestaetigung { background: var(--fehler-hell); border-color: var(--fehler); color: var(--fehler); animation: pulses 1.1s ease infinite; }
@keyframes pulses { 50% { filter: brightness(.94); } }

.aktionen { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }

/* ── Formulare / Felder ────────────────────────────────────────────────────── */
.formular { display: grid; gap: 10px; grid-template-columns: 1fr; }
.feld { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.formular-einspaltig { max-width: 460px; }

label { font-size: 12px; font-weight: 650; color: var(--text-mild); }
input, select, textarea {
  font: inherit; font-size: 15px; color: var(--text);
  background: var(--flache); border: 1px solid var(--rand-stark); border-radius: var(--rundung-klein);
  padding: 9px 10px; width: 100%; min-height: 42px;
  transition: border-color var(--ueergang);
}
input:focus-visible, select:focus-visible, textarea:focus-visible { border-color: var(--akzent); }
input[type=checkbox] { width: 18px; height: 18px; min-height: 0; padding: 0; accent-color: var(--akzent); flex: none; }
.schalter-zeile { flex-direction: row; align-items: center; gap: 9px; min-height: 42px; padding: 2px 2px; }
.schalter-zeile label { font-size: 13px; color: var(--text); cursor: pointer; flex: 1; }

.hinweis { font-size: 13px; color: var(--text-mild); margin-top: 10px; min-height: 18px; }
.hinweis.fehler { color: var(--fehler); font-weight: 600; }
.hinweis-gesamt { font-weight: 650; color: var(--text); background: var(--flache); border: 1px dashed var(--rand-stark); border-radius: var(--rundung-klein); padding: 7px 10px; }
.tipp { font-size: 12px; color: var(--text-mild); margin-top: 10px; }

/* ── Login-Karte ───────────────────────────────────────────────────────────── */
.login-karte {
  max-width: 420px; margin: 6vh auto 0; background: var(--flache);
  border: 1px solid var(--rand); border-radius: calc(var(--rundung) * 1.4);
  box-shadow: var(--schatten-2); padding: 26px 22px;
  display: flex; flex-direction: column; gap: 16px;
}
.login-karte form { display: flex; flex-direction: column; gap: 12px; }
.login-titel { font-size: 22px; text-align: center; }
.login-untertitel { text-align: center; font-size: 12px; color: var(--text-mild); margin-top: -10px; }
.login-knopf { width: 100%; min-height: 46px; }

/* ── Tabellen → Karten (mobil) ─────────────────────────────────────────────── */
.tablett { overflow: auto; max-height: 70vh; border-radius: var(--rundung-klein); }
table { border-collapse: collapse; width: 100%; font-size: 14px; }
thead th {
  background: var(--flache-2); color: var(--text-mild);
  font-size: 11px; text-transform: uppercase; letter-spacing: .05em;
  text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--rand);
  position: sticky; top: 0; z-index: 2;
}
tbody td { padding: 8px 10px; border-bottom: 1px solid var(--rand); vertical-align: top; }
tbody tr { transition: background var(--ueergang); }
tbody tr:hover { background: var(--flache-2); }
#med-tabelle tbody tr, #lot-tabelle tbody tr { cursor: pointer; }
tr.aktiv td { background: var(--akzent-hell); }
tr.geloescht td { color: var(--text-mild); text-decoration: line-through; }
tr.leer-zeile td { text-align: center; color: var(--text-mild); padding: 22px; text-decoration: none; }
.leer-zustand { color: var(--text-mild); font-style: italic; padding: 8px 2px; }

/* Karten-Umbau <=720px: td erhaelt Spaltentitel aus daten-spalte */
@media (max-width: 720px) {
  .tablett { max-height: none; overflow: visible; }
  table, thead, tbody, tr, td { display: block; width: 100%; }
  thead { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
  tbody tr {
    background: var(--flache); border: 1px solid var(--rand);
    border-radius: var(--rundung); margin-bottom: 10px;
    box-shadow: var(--schatten-1); padding: 4px 0;
  }
  tbody tr:hover { background: var(--flache); }
  tr.aktiv { border-color: var(--akzent); box-shadow: 0 0 0 2px var(--akzent-hell); }
  tbody td {
    display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
    border-bottom: none; padding: 6px 12px; text-align: right !important;
  }
  tbody td::before {
    content: attr(daten-spalte);
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
    color: var(--text-mild); text-align: left; flex: 0 0 38%;
  }
  tr.leer-zeile td { justify-content: center; text-align: center !important; }
  tr.leer-zeile td::before { content: none; }
  td.zaehlen { text-align: right !important; }
}

/* Foto-Knopf in der Tabelle */
.foto-knopf {
  font: inherit; font-size: 12px; font-weight: 600;
  min-height: 30px; padding: 3px 10px; margin: 0 4px 4px 0;
  border: 1px solid var(--akzent); border-radius: 999px;
  background: var(--akzent-hell); color: var(--akzent-dunkel); cursor: pointer;
}
@media (prefers-color-scheme: dark) { .foto-knopf { color: var(--akzent); } }

/* ── Filter-Panel / Blaetterung ────────────────────────────────────────────── */
.filter-panel { border-style: solid; animation: einfugen 140ms ease; }
.blaetter-zeile {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
  justify-content: space-between;
}
.blaetter-zeile .klein { flex: 1; text-align: center; }

/* ── Status-Pills ──────────────────────────────────────────────────────────── */
.pill {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .03em;
  padding: 2px 9px; border-radius: 999px; text-transform: uppercase;
  background: var(--flache-2); border: 1px solid var(--rand-stark); color: var(--text-mild);
  white-space: nowrap;
}
.pill-aktiv { background: var(--akzent-hell); border-color: var(--akzent); color: var(--akzent-dunkel); }
.pill-inaktiv { background: var(--fehler-hell); border-color: var(--fehler); color: var(--fehler); }
.pill-admin { background: var(--akzent); border-color: var(--akzent); color: var(--akzent-text); }

/* ── Dashboard ─────────────────────────────────────────────────────────────── */
.raster-karten { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); margin-bottom: 14px; }
.stat-karte {
  background: var(--flache); border: 1px solid var(--rand); border-radius: var(--rundung);
  padding: 12px 14px; box-shadow: var(--schatten-1);
  display: flex; flex-direction: column; gap: 3px;
}
.stat-titel { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-mild); }
.stat-wert { font-size: 26px; font-weight: 750; font-variant-numeric: tabular-nums; line-height: 1.1; }
.stat-fuss { font-size: 12px; color: var(--text-mild); }

.top-liste { display: flex; flex-direction: column; gap: 9px; }
.top-zeile { display: grid; grid-template-columns: minmax(90px, 26%) 1fr auto; gap: 10px; align-items: center; }
.top-name { font-weight: 600; font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.top-meter { height: 10px; background: var(--flache-2); border: 1px solid var(--rand); border-radius: 999px; overflow: hidden; }
.top-fullung {
  display: block; height: 100%; width: var(--fuelle, 0%);
  background: linear-gradient(90deg, var(--akzent), var(--akzent-dunkel));
  border-radius: inherit; transition: width 150ms ease;
}
.top-zahl { font-size: 12px; color: var(--text-mild); font-variant-numeric: tabular-nums; white-space: nowrap; }

.tage-diagram { display: flex; align-items: flex-end; gap: 8px; height: 130px; padding: 6px 2px 0; }
.tag-gruppe { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 0; }
.tag-paar { display: flex; align-items: flex-end; gap: 3px; height: 104px; width: 100%; justify-content: center; }
.tag-balken { width: 12px; border-radius: 3px 3px 0 0; height: var(--hoehe, 0%); min-height: 2px; }
.tag-balken.erfolg { background: var(--akzent); }
.tag-balken.miserfolg { background: var(--fehler); opacity: .75; }
.tag-label { font-size: 10.5px; color: var(--text-mild); font-variant-numeric: tabular-nums; }

/* ── Export: Spalten-Chips ─────────────────────────────────────────────────── */
.spalten-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.spalten-chip {
  display: inline-flex; align-items: center; gap: 7px;
  min-height: 38px; padding: 4px 12px 4px 9px;
  border: 1px solid var(--rand-stark); border-radius: 999px; background: var(--flache);
  cursor: pointer; user-select: none;
  transition: border-color var(--ueergang), background var(--ueergang);
}
.spalten-chip input { min-height: 0; }
.spalten-chip:has(input:checked) { background: var(--akzent-hell); border-color: var(--akzent); }
.spalten-chip:has(input:checked) .chip-text { color: var(--akzent-dunkel); }
.chip-text { font-size: 13px; font-weight: 600; color: var(--text); }

/* ── Profil ────────────────────────────────────────────────────────────────── */
.konto-liste { display: grid; gap: 9px; margin: 0; }
.konto-paar { display: flex; justify-content: space-between; gap: 14px; border-bottom: 1px dashed var(--rand); padding-bottom: 8px; }
.konto-paar dt { font-size: 12px; font-weight: 700; color: var(--text-mild); text-transform: uppercase; letter-spacing: .04em; }
.konto-paar dd { margin: 0; font-weight: 600; text-align: right; overflow-wrap: anywhere; }

/* ── Lade-Skelett ──────────────────────────────────────────────────────────── */
.skelett-zeile { display: grid; gap: 10px; padding: 4px; }
.skelett-kasten {
  height: 66px; border-radius: var(--rundung);
  background: linear-gradient(90deg, var(--flache-2) 25%, var(--rand) 45%, var(--flache-2) 65%);
  background-size: 240% 100%; animation: skelett 1.15s ease infinite;
}
@keyframes skelett { from { background-position: 130% 0; } to { background-position: -40% 0; } }

/* ── Dialoge (modal) ──────────────────────────────────────────────────────── */
dialog {
  border: 1px solid var(--rand); border-radius: calc(var(--rundung) * 1.2);
  padding: 20px; width: 100%; max-width: 460px;
  color: var(--text); background: var(--flache); box-shadow: var(--schatten-2);
}
/* mobil: rand-zu-Rand-Blatt */
@media (max-width: 720px) {
  dialog {
    width: 100%; max-width: none; height: 100dvh; max-height: 100dvh;
    margin: 0; border: none; border-radius: 0;
    padding: 18px 16px calc(18px + env(safe-area-inset-bottom, 0px));
  }
}
dialog[open] { animation: poppen 140ms ease; }
@keyframes poppen { from { opacity: 0; transform: scale(.97); } }
dialog::backdrop { background: rgba(10, 15, 20, .55); }
dialog form { display: flex; flex-direction: column; gap: 12px; }
dialog h2 { font-size: 17px; }
.dialog-aktionen { justify-content: flex-end; }

/* ── Foto-Lightbox ─────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 60; cursor: zoom-out;
  background: rgba(8, 10, 12, .9);
  display: flex; align-items: center; justify-content: center;
}
.lightbox img { max-width: 94vw; max-height: 82vh; border-radius: var(--rundung); box-shadow: 0 10px 40px rgba(0, 0, 0, .6); }
.lightbox-schliessen {
  position: absolute; top: max(10px, env(safe-area-inset-top, 0px)); right: 12px;
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .14); border: none; border-radius: 50%;
  color: #fff; cursor: pointer; transition: background var(--ueergang);
}
.lightbox-schliessen:hover { background: rgba(255, 255, 255, .3); }
.lightbox-schliessen .symbol { width: 22px; height: 22px; }
.lightbox-pfeil {
  position: absolute; top: 50%; translate: 0 -50%;
  width: 46px; height: 64px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .12); border: none; border-radius: var(--rundung);
  color: #fff; cursor: pointer; transition: background var(--ueergang);
}
.lightbox-pfeil:hover { background: rgba(255, 255, 255, .28); }
.lightbox-pfeil.links { left: max(10px, env(safe-area-inset-left, 0px)); }
.lightbox-pfeil.rechts { right: max(10px, env(safe-area-inset-right, 0px)); }
.lightbox-pfeil .symbol { width: 26px; height: 26px; }
.lightbox-unterschift {
  position: absolute; bottom: max(12px, env(safe-area-inset-bottom, 0px)); left: 0; right: 0;
  text-align: center; color: #e8ecef; font-size: 13px; padding: 0 12px;
}

/* ── App-Versionen ───────────────────────────────────────────────────────── */
.versionen-raster { display: grid; gap: 12px; grid-template-columns: 1fr; margin-top: 12px; }
.versionen-karte {
  background: var(--flache); border: 1px solid var(--rand); border-radius: var(--rundung);
  padding: 12px 14px; box-shadow: var(--schatten-1);
  display: flex; flex-direction: column; gap: 4px;
}
.versionen-karte:hover { border-color: var(--rand-stark); transition: border-color var(--ueergang); }
.versionen-kopf {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap;
}
.versionen-titel { font-size: 16px; font-weight: 700; margin: 0; overflow-wrap: anywhere; }
.versionen-zeile { font-size: 13px; font-weight: 600; color: var(--text); font-variant-numeric: tabular-nums; }
.versionen-hinweis {
  font-size: 13px; color: var(--text-mild); background: var(--flache-2);
  border: 1px solid var(--rand); border-radius: var(--rundung-klein); padding: 6px 9px;
}
.versionen-karte .knopf { align-self: flex-start; margin-top: 6px; }

/* ── Reduzierte Bewegung ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ── Tablette / Desktop ───────────────────────────────────────────────────── */
@media (min-width: 721px) {
  body { font-size: 15px; }
  .kopf { padding: 12px 24px 8px; }
  .marke .symbol { width: 34px; height: 34px; }
  .marke-titel { font-size: 18px; }
  .navigation {
    position: sticky; top: auto; bottom: auto;
    justify-content: flex-start; gap: 4px;
    border-top: none; border-bottom: 1px solid var(--rand);
    box-shadow: none; padding: 0 24px;
    background: var(--flache);
    margin-top: 6px;
  }
  .nav-punkt { flex-direction: row; min-height: 40px; padding: 7px 13px; font-size: 13px; gap: 7px; border-radius: 8px 8px 0 0; border-bottom: 2px solid transparent; }
  .nav-symbol { width: 18px; height: 18px; }
  .nav-punkt[aria-current="page"] { background: transparent; border-bottom-color: var(--akzent); }
  .inhalt { padding: 22px 24px 32px; }
  .raster-karten { grid-template-columns: repeat(3, 1fr); }
  .versionen-raster { grid-template-columns: repeat(2, 1fr); }
  .login-karte { margin-top: 9vh; padding: 32px 30px; }
}

/* Ab 900px: Formulare zwei- bis dreispaltig */
@media (min-width: 900px) {
  .formular { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .raster-karten { grid-template-columns: repeat(6, 1fr); }
  .stat-karte { padding: 14px 16px; }
  .stat-wert { font-size: 28px; }
  .ansicht-kopf h2 { font-size: 21px; }
}

@media (min-width: 1240px) {
  .formular { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* einspaltige Formulare (Passwort) bleiben immer einspaltig */
.formular.formular-einspaltig { grid-template-columns: minmax(0, 1fr); }
