:root {
  /* Navy-Blau-Design (Variablennamen historisch: --gruen = Hauptfarbe) */
  --gruen: #14264a; --gruen-hell: #e7ecf5; --gruen-mittel: #3d5f96;
  --blau: #2a5298; --blau-hell: #e3ebf8;
  --rot: #b3412f; --rot-hell: #fbeae6; --gelb-hell: #fdf5dc;
  --text: #172033; --grau: #667085; --linie: #e4dccb; --bg: #f7f2e7; --karte: #fff;
  --radius: 10px;
  color-scheme: light;   /* immer helles Design, auch im Dark Mode des Systems */
}

* { box-sizing: border-box; }
body { margin: 0; font: 15px/1.5 -apple-system, "Segoe UI", Roboto, sans-serif; background: var(--bg); color: var(--text); }
a { color: var(--blau); }
h1 { font-size: 1.7rem; margin: .2rem 0 .4rem; }
h2 { font-size: 1.1rem; margin: 0 0 .8rem; }

/* Kopf */
.kopf { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; gap: 1.2rem;
        background: var(--gruen); color: #fff; padding: .6rem 1.2rem; }
.marke { color: #fff; text-decoration: none; font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; gap: .5rem; }
.marke small { font-weight: 400; opacity: .7; font-size: .8rem; }
.logo { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 8px; background: #fff; color: var(--gruen); font-weight: 800; }
.logo.gross { width: 56px; height: 56px; font-size: 1.8rem; background: var(--gruen); color: #fff; margin: 0 auto; }
.kopf-jahr { opacity: .85; }
.kopf-link { color: #fff; opacity: .8; margin-left: auto; font-size: .9rem; }
.meter { margin-left: auto; text-decoration: none; background: rgba(255,255,255,.12); border-radius: 8px; padding: .25rem .9rem;
         display: flex; flex-direction: column; align-items: flex-end; color: #fff; }
.meter-label { font-size: .72rem; opacity: .8; }
.meter-wert { font-size: 1.25rem; font-weight: 700; }
.meter.plus .meter-wert { color: #a9d8ff; }
.meter.minus .meter-wert { color: #ffc9bd; }
.meter + .kopf-link { margin-left: 0; }

/* Rahmen */
.rahmen { display: grid; grid-template-columns: 250px 1fr; min-height: calc(100vh - 56px); }
.rahmen.ohne-seite { grid-template-columns: 1fr; }
.seite { background: var(--karte); border-right: 1px solid var(--linie); padding: 1rem 0; }
.seite-inhalt { position: sticky; top: 70px; }
.menue-knopf { display: none; }
.gruppe { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--grau); padding: .9rem 1.2rem .3rem; }
.nav { display: flex; gap: .6rem; align-items: center; padding: .4rem 1.2rem; color: var(--text); text-decoration: none; font-size: .93rem; border-left: 3px solid transparent; }
.nav:hover { background: var(--gruen-hell); }
.nav.aktiv { background: var(--gruen-hell); border-left-color: var(--gruen); font-weight: 600; }
.haken { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--linie); font-size: .72rem; flex: none; }
.nav.fertig .haken { background: var(--gruen-mittel); border-color: var(--gruen-mittel); color: #fff; }
.haupt { padding: 1.5rem 2rem 4rem; max-width: 1100px; width: 100%; }

/* Bausteine */
.karte { background: var(--karte); border: 1px solid var(--linie); border-radius: var(--radius); padding: 1.2rem 1.4rem; margin-bottom: 1rem; }
.lead { color: var(--grau); margin: 0 0 1.2rem; max-width: 70ch; }
.schritt-nr { color: var(--gruen-mittel); font-size: .85rem; font-weight: 600; }
.fortschritt { height: 5px; background: var(--linie); border-radius: 3px; overflow: hidden; margin-bottom: 1rem; }
.fortschritt div { height: 100%; background: var(--gruen-mittel); }
.meldung { padding: .7rem 1rem; border-radius: 8px; margin-bottom: 1rem; background: var(--gruen-hell); border-left: 4px solid var(--gruen-mittel); }
.meldung.fehler { background: var(--rot-hell); border-color: var(--rot); }
.warnung { color: var(--rot); }
.klein { font-size: .85rem; }
.hilfe { color: var(--grau); font-size: .83rem; display: block; margin-top: .2rem; }
.leer { color: var(--grau); text-align: center; padding: 2rem; }

.knopf { display: inline-block; border: 0; border-radius: 8px; background: var(--gruen); color: #fff; padding: .6rem 1.1rem;
         font: inherit; font-weight: 600; cursor: pointer; text-decoration: none; }
.knopf:hover { filter: brightness(1.1); }
.knopf.hell { background: var(--gruen-hell); color: var(--gruen); }
.knopf.gross { padding: .75rem 1.6rem; font-size: 1.02rem; }
.knopf.klein { padding: .35rem .8rem; font-size: .88rem; }
.knopf.rot { background: var(--rot); }
.knopf:disabled { opacity: .4; cursor: not-allowed; }
.link { background: none; border: 0; color: var(--blau); cursor: pointer; font: inherit; text-decoration: underline; padding: 0; }
.link.rot { color: var(--rot); }

/* Formular */
.schritt-form { display: grid; grid-template-columns: 1fr 290px; gap: 0 1rem; align-items: start; }
.schritt-form .felder { grid-column: 1; }
.schritt-form .auswirkung { grid-column: 2; grid-row: 1; position: sticky; top: 80px; }
.schritt-form .leiste { grid-column: 1 / -1; }
.felder { display: flex; flex-wrap: wrap; gap: 1rem 1.2rem; }
.feld { display: flex; flex-direction: column; gap: .3rem; flex: 1 1 100%; }
.feld.kurz { flex: 1 1 260px; max-width: 360px; }
.feld > span { font-weight: 500; font-size: .92rem; }
input, select { font: inherit; color: var(--text); background: var(--karte); border: 1px solid var(--linie); border-radius: 7px; padding: .5rem .65rem; width: 100%; }
input:focus, select:focus { outline: 2px solid var(--gruen-mittel); outline-offset: -1px; border-color: transparent; }
input.zahl { text-align: right; font-variant-numeric: tabular-nums; }
.euro-feld { position: relative; }
.euro-feld input { padding-right: 1.8rem; }
.euro-feld i { position: absolute; right: .7rem; top: .5rem; font-style: normal; color: var(--grau); }
.schalter { flex-direction: row; flex-wrap: wrap; align-items: center; gap: .6rem; }
.schalter input { width: 20px; height: 20px; accent-color: var(--gruen); }
.schalter .hilfe { flex-basis: 100%; margin-left: 1.9rem; }

.liste-block { flex: 1 1 100%; }
.liste-kopf { display: flex; justify-content: space-between; font-weight: 500; }
.liste-summe { font-weight: 700; color: var(--gruen); font-variant-numeric: tabular-nums; }
table.liste { width: 100%; border-collapse: collapse; margin: .4rem 0 .5rem; }
table.liste th { text-align: left; font-size: .78rem; color: var(--grau); font-weight: 500; padding: 0 .3rem .2rem; }
table.liste th.rechts { text-align: right; }
table.liste td { padding: .2rem .3rem; vertical-align: middle; }
table.liste td:last-child { width: 1%; white-space: nowrap; }
table.liste tr.importiert input, table.liste tr.importiert select { background: var(--blau-hell); }
.weg { background: none; border: 0; font-size: 1.3rem; color: var(--grau); cursor: pointer; line-height: 1; }
.weg:hover { color: var(--rot); }
.beleg-link { text-decoration: none; margin-right: .3rem; }

.auswirkung { background: var(--gruen-hell); border-color: transparent; font-size: .9rem; }
.auswirkung dl { display: grid; grid-template-columns: 1fr auto; gap: .25rem .8rem; margin: .7rem 0 0; }
.auswirkung dt { color: var(--grau); }
.auswirkung dd { margin: 0; text-align: right; font-variant-numeric: tabular-nums; }
.auswirkung .summe { font-weight: 700; color: var(--text); border-top: 1px solid var(--linie); padding-top: .3rem; }

.leiste { display: flex; justify-content: space-between; align-items: center; gap: .6rem; margin-top: 1rem; }
.leiste .knopf.gross { margin-left: auto; }

.scanner, .import, .ablage { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; border-style: dashed; border-width: 2px; border-color: var(--gruen-mittel); background: var(--gruen-hell); }
.scanner-icon, .ablage-icon { font-size: 2rem; color: var(--gruen); }
.scanner-text { flex: 1; }
.import { flex-direction: column; align-items: flex-start; border-style: solid; border-width: 1px; background: var(--blau-hell); border-color: transparent; }
.import-wege { display: flex; gap: .6rem; flex-wrap: wrap; }
.ablage { flex-direction: column; text-align: center; padding: 2rem; cursor: pointer; }
.ablage.drueber { background: var(--blau-hell); border-color: var(--blau); }
.lade-hinweis { display: none; color: var(--gruen); font-weight: 600; }
.laedt .lade-hinweis { display: inline; animation: puls 1.2s infinite; }
@keyframes puls { 50% { opacity: .4; } }

/* Belege */
.beleg-filter { color: var(--grau); margin: .5rem 0; }
.beleg { display: grid; grid-template-columns: 120px 1fr; gap: 1.2rem; }
.beleg.status-uebernommen { opacity: .75; }
.vorschau { display: grid; place-items: center; height: 150px; border-radius: 8px; background: var(--bg); overflow: hidden; text-decoration: none; }
.vorschau img { width: 100%; height: 100%; object-fit: cover; }
.pdf { font-weight: 800; color: var(--rot); font-size: 1.4rem; }
.beleg-titel { display: flex; gap: .5rem; align-items: center; flex-wrap: wrap; margin-bottom: .4rem; }
.badge { font-size: .72rem; padding: .1rem .5rem; border-radius: 20px; background: var(--linie); color: var(--text); font-weight: 600; }
.badge.erkannt { background: var(--gelb-hell); }
.badge.uebernommen { background: var(--gruen-mittel); color: #fff; }
.badge.fehler { background: var(--rot); color: #fff; }
.beleg-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: .5rem .8rem; align-items: end; }
.beleg-form label { display: flex; flex-direction: column; font-size: .8rem; color: var(--grau); gap: .2rem; }
.beleg-knoepfe { display: flex; align-items: end; }
.beleg-aktionen { display: flex; gap: 1rem; margin-top: .5rem; font-size: .85rem; }

/* Zusammenfassung */
.ergebnis { border-radius: var(--radius); padding: 1.6rem; text-align: center; margin-bottom: 1rem; color: #fff; background: var(--gruen); }
.ergebnis.minus { background: var(--rot); }
.ergebnis-label { opacity: .85; }
.ergebnis-wert { font-size: 2.6rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.ergebnis-sub { opacity: .85; font-size: .9rem; }
.pruefen { border-left: 4px solid var(--rot); }
.pruefen ul, .hinweise ul { margin: .5rem 0 0; padding-left: 1.2rem; }
.hinweise { border-left: 4px solid var(--blau); }
.zwei-spalten { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1rem; align-items: start; }
table.rechnung { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
table.rechnung td { padding: .3rem 0; border-bottom: 1px solid var(--linie); }
table.rechnung td:last-child { text-align: right; white-space: nowrap; padding-left: 1rem; }
table.rechnung tr.klein td { font-size: .84rem; color: var(--grau); }
table.rechnung tr.summe td { font-weight: 700; border-bottom-color: var(--text); }
table.rechnung tr.gross td { font-size: 1.15rem; }
details { border-top: 1px solid var(--linie); padding: .5rem 0; }
summary { cursor: pointer; font-weight: 600; }
pre { white-space: pre-wrap; font-size: .78rem; background: var(--bg); padding: .7rem; border-radius: 6px; max-height: 300px; overflow: auto; }

/* ELSTER */
.check { list-style: none; padding: 0; margin: 0; }
.check li { padding: .3rem 0 .3rem 1.8rem; position: relative; }
.check li::before { position: absolute; left: 0; font-weight: 800; }
.check li.ok::before { content: "✓"; color: var(--gruen-mittel); }
.check li.offen::before { content: "!"; color: var(--rot); }
.elster-kopf { display: flex; align-items: center; gap: .8rem; }
.elster-kopf h2 { margin: 0; }
.elster-knoepfe { display: flex; gap: .6rem; flex-wrap: wrap; align-items: center; margin-top: .8rem; }
.senden-form { display: flex; gap: .5rem; align-items: center; margin-left: auto; }
.senden-form input[type=password] { width: 170px; }
.senden-form label { display: flex; gap: .3rem; align-items: center; white-space: nowrap; }
.senden-form input[type=checkbox] { width: auto; }
.bericht { margin-top: .8rem; padding-top: .6rem; border-top: 1px solid var(--linie); }

/* Start */
.jahre { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1rem; }
.jahr-karte { text-decoration: none; color: var(--text); display: flex; flex-direction: column; gap: .5rem; }
.jahr-karte:hover { border-color: var(--gruen-mittel); }
.jahr-zahl { font-size: 2rem; font-weight: 800; color: var(--gruen); }
.jahr-ergebnis.plus { color: var(--gruen-mittel); font-weight: 700; }
.jahr-ergebnis.minus { color: var(--rot); font-weight: 700; }
.jahr-karte.neu { border-style: dashed; }
.login { max-width: 380px; margin: 4rem auto; text-align: center; display: flex; flex-direction: column; gap: .8rem; }
code { font-size: .78rem; background: var(--bg); padding: .1rem .3rem; border-radius: 4px; word-break: break-all; }

/* Handy */
@media (max-width: 860px) {
  .rahmen { grid-template-columns: 1fr; }
  .seite { border-right: 0; border-bottom: 1px solid var(--linie); padding: .4rem 0; }
  .seite-inhalt { display: none; position: static; }
  .menue-offen .seite-inhalt { display: block; }
  .menue-knopf { display: block; margin: 0 16px; background: none; border: 0; font: inherit; font-weight: 600; color: var(--gruen); padding: .4rem 0; }
  .haupt { padding: 1rem 16px 4rem; }
  .schritt-form, .zwei-spalten { grid-template-columns: 1fr; }
  .schritt-form .auswirkung { grid-column: 1; grid-row: auto; position: static; }
  .kopf { gap: .6rem; padding: .5rem 16px; }
  .kopf-jahr, .marke small { display: none; }
  .meter-wert { font-size: 1rem; }
  table.liste thead { display: none; }
  table.liste tr { display: grid; grid-template-columns: 1fr 1fr; gap: .3rem; padding: .4rem 0; border-bottom: 1px solid var(--linie); }
  table.liste td:first-child { grid-column: 1 / -1; }
  .beleg { grid-template-columns: 80px 1fr; }
  .vorschau { height: 100px; }
  .senden-form { margin-left: 0; flex-wrap: wrap; }
  .ergebnis-wert { font-size: 2rem; }
}

@media print {
  .kopf, .seite, .leiste, .nicht-drucken, .meldung { display: none !important; }
  .rahmen { display: block; }
  body { background: #fff; color: #000; }
  .karte { border: 0; padding: 0; break-inside: avoid; }
  details { display: block; } details > * { display: block; }
  .ergebnis { color: #000; background: none; border: 2px solid #000; }
}

table.abgleich { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; font-size: .88rem; margin-top: .4rem; }
table.abgleich th { font-weight: 500; color: var(--grau); text-align: right; font-size: .78rem; }
table.abgleich td { padding: .25rem 0; border-top: 1px solid var(--linie); text-align: right; }
table.abgleich td:first-child, table.abgleich th:first-child { text-align: left; }
table.abgleich tr.summe td { font-weight: 700; }
@media (max-width: 860px) { table.abgleich { font-size: .78rem; } }

/* Checkliste */
.checkkopf { display: flex; justify-content: space-between; align-items: baseline; }
.checkpunkt { display: flex; gap: .7rem; align-items: flex-start; padding: .45rem 0; border-top: 1px solid var(--linie); cursor: pointer; }
.checkpunkt input { width: 20px; height: 20px; flex: none; margin-top: .1rem; accent-color: var(--gruen-mittel); }
.checkpunkt.auto span { color: var(--grau); }
.checkpunkt .badge { margin-left: .3rem; }
/* Themenauswahl im Start */
.schalter + .schalter { margin-top: -.4rem; }

/* Tabellen mit vielen Spalten als Karten */
.zlabel { display: none; font-size: .75rem; color: var(--grau); margin-bottom: .15rem; }
table.liste.viele thead { display: none; }
table.liste.viele tr { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) auto; gap: .4rem .7rem;
                       padding: .7rem 0; border-bottom: 1px solid var(--linie); }
table.liste.viele td { padding: 0; }
table.liste.viele .zlabel { display: block; }
table.liste.viele td:last-child { grid-column: 4; grid-row: 1; align-self: end; }
@media (max-width: 860px) {
  .zlabel { display: block; }
  table.liste.viele tr { grid-template-columns: 1fr 1fr; }
  table.liste.viele td:last-child { grid-column: 2; grid-row: auto; justify-self: end; }
}
.schalter > span { flex: 1 1 0; min-width: 0; }

/* Prüfung & Optimierung */
.klein-ergebnis { padding: 1rem; }
.klein-ergebnis .ergebnis-wert { font-size: 1.6rem; }
.hilfe.inline { display: inline; font-weight: 400; margin-left: .4rem; }
h3.pp-gruppe { font-size: .95rem; margin: 1.2rem 0 .4rem; padding-left: .6rem; border-left: 4px solid var(--linie); }
h3.pp-gruppe.fehler { border-color: var(--rot); }
h3.pp-gruppe.optimierung { border-color: #2e8b57; }
h3.pp-gruppe.risiko { border-color: #d19a00; }
h3.pp-gruppe.frage, h3.pp-gruppe.info { border-color: var(--blau); }
.pruefpunkt { border-top: 1px solid var(--linie); padding: .7rem 0; }
.pruefpunkt p { margin: .25rem 0 .35rem; }
.pruefpunkt p:empty { display: none; }
.pp-kopf { display: flex; gap: .6rem; align-items: center; flex-wrap: wrap; }
.badge.spart { background: #2e8b57; color: #fff; }
.vorschlag { display: flex; gap: .6rem; align-items: center; flex-wrap: wrap; margin-top: .4rem;
             background: var(--gruen-hell); padding: .5rem .7rem; border-radius: 8px; font-size: .9rem; }
form.inline { display: inline; }
.claude-kopf { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.claude-kopf h2 { margin: 0; }
.gesamturteil { background: var(--blau-hell); border-left: 4px solid var(--blau); padding: .8rem 1rem; border-radius: 8px; margin: .6rem 0; }


/* ELSTER-Ausfüllhilfe */
.ah-fortschritt { position: sticky; top: 64px; z-index: 5; background: var(--bg); padding: .5rem 0; margin-bottom: .5rem; }
.ah-fortschritt .fortschritt { margin-bottom: .3rem; }
#ah-stand { font-size: .88rem; color: var(--grau); }
.ah-inhalt ol { margin: .4rem 0 0; padding-left: 1.3rem; columns: 2; }
.ah-gruppe { margin: 1.6rem 0 .3rem; font-size: 1.25rem; }
.ah-kopf { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.ah-kopf h2 { margin: 0; }
.ah-zaehler { font-size: .82rem; color: var(--grau); white-space: nowrap; }
.ah-zaehler.komplett { color: #2e8b57; font-weight: 700; }
.ah-bereich { margin: 1rem 0 .2rem; font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; color: var(--gruen-mittel); font-weight: 600; }
.ah-zeile { display: grid; grid-template-columns: 22px 1fr auto auto; gap: .8rem; align-items: center;
            padding: .5rem .4rem; border-top: 1px solid var(--linie); cursor: pointer; border-radius: 6px; }
.ah-zeile:hover { background: var(--gruen-hell); }
.ah-zeile input { width: 18px; height: 18px; accent-color: #2e8b57; margin: 0; }
.ah-zeile.fertig .ah-label, .ah-zeile.fertig .ah-wert { color: var(--grau); text-decoration: line-through; text-decoration-color: rgba(0,0,0,.25); }
.ah-wert { font-variant-numeric: tabular-nums; font-weight: 600; text-align: right; white-space: nowrap; }
.ah-kopie { border: 1px solid var(--linie); background: var(--karte); color: var(--gruen); border-radius: 6px; padding: .25rem .6rem;
            font: inherit; font-size: .8rem; cursor: pointer; min-width: 5.5rem; }
.ah-kopie:hover { border-color: var(--gruen-mittel); }
.ah-kopie.ok { background: #2e8b57; color: #fff; border-color: #2e8b57; }
.ah-vergleich { border-left: 4px solid var(--blau); }
@media (max-width: 860px) {
  .ah-zeile { grid-template-columns: 22px 1fr auto; }
  .ah-kopie { grid-column: 2 / -1; justify-self: start; }
  .ah-inhalt ol { columns: 1; }
  .ah-fortschritt { top: 52px; }
}
@media print {
  .ah-kopie, .ah-fortschritt { display: none !important; }
  .ah-zeile { grid-template-columns: 22px 1fr auto; break-inside: avoid; }
  .ah-formular { break-inside: auto; margin-bottom: 1.2rem; }
  .ah-zeile.fertig .ah-label, .ah-zeile.fertig .ah-wert { text-decoration: none; color: #000; }
}
.ah-zeile { grid-template-columns: 22px minmax(0, 1fr) auto auto; }
.ah-label { min-width: 0; overflow-wrap: anywhere; }
@media (max-width: 860px) {
  .ah-zeile { grid-template-columns: 22px minmax(0, 1fr) auto; gap: .3rem .6rem; }
  .ah-wert { white-space: normal; overflow-wrap: anywhere; max-width: 45vw; }
  .ah-fortschritt { position: static; }
  .ah-kopf { flex-wrap: wrap; }
}
/* Raster darf nie breiter als der Bildschirm werden */
.rahmen { grid-template-columns: 250px minmax(0, 1fr); }
.rahmen.ohne-seite { grid-template-columns: minmax(0, 1fr); }
.haupt, .seite { min-width: 0; }
table.rechnung td:first-child { overflow-wrap: anywhere; }
@media (max-width: 860px) {
  .rahmen { grid-template-columns: minmax(0, 1fr); }
  .zwei-spalten { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 860px) {
  .leiste { flex-wrap: wrap; }
  .leiste .knopf.gross { flex: 1 1 100%; text-align: center; margin-left: 0; }
}

/* Abgabe & Sperre */
fieldset.felder { min-width: 0; margin: 0 0 1rem; }
fieldset.reset { border: 0; padding: 0; margin: 0; min-width: 0; display: contents; }
fieldset:disabled input, fieldset:disabled select { background: var(--bg); color: var(--text); opacity: 1; cursor: default; }
.sperrbanner { background: #eaf4ee; border-left: 4px solid #2e8b57; padding: .7rem 1rem; border-radius: 8px; margin-bottom: 1rem; }
.abgabe { border-left: 4px solid var(--blau); }
.abgabe.fertig { border-left-color: #2e8b57; }
.abgabe-felder { display: flex; flex-wrap: wrap; gap: .8rem 1.2rem; margin: .6rem 0; }
.abgabe-arten { display: flex; flex-wrap: wrap; gap: .4rem 1rem; align-items: center; margin: .4rem 0 .8rem; font-size: .92rem; }
.abgabe-arten label { display: flex; gap: .3rem; align-items: center; }
.abgabe-arten input, .bestaetigen input { width: 18px; height: 18px; accent-color: var(--gruen); }
.bestaetigen { margin: .4rem 0 .9rem; }
.jahr-karte { gap: .4rem; }
.jahr-link { text-decoration: none; color: var(--text); display: flex; flex-direction: column; gap: .5rem; }
.jahr-kopf { display: flex; justify-content: space-between; align-items: center; }
.jahr-karte.abgegeben { border-color: #2e8b57; }
.loeschen { margin-top: .4rem; border-top: 1px solid var(--linie); padding-top: .4rem; }
.loeschen summary { font-size: .85rem; color: var(--rot); font-weight: 500; }
.loeschen form { display: flex; flex-direction: column; gap: .5rem; margin-top: .4rem; }
