/* Pfad: aircard-vermittler/app/static/stil.css
   Version: V1, 23-07-2026 — mobile-first, TsNW-Corporate-Design.
   Cyan #00b6de · Dunkel-Slate #1b3a4b · Gold #fdb924 */

:root {
  --cyan: #00b6de;
  --slate: #1b3a4b;
  --gold: #fdb924;
  --akzent: var(--cyan);   /* pro Betreiber ueberschrieben (station-info farbe) */
  --bg: #0f2530;
  --karte: #ffffff;
  --text: #1b3a4b;
  --ruhig: #6b7c86;
  --ok: #2e9e5b;
  --warn: #c0392b;
  --radius: 16px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(160deg, var(--slate), var(--bg));
  color: var(--text);
  min-height: 100dvh;
}

.huelle {
  max-width: 460px;
  margin: 0 auto;
  padding: max(16px, env(safe-area-inset-top)) 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100dvh;
}

.stationskopf {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  padding: 4px 2px;
}
.stationskopf.lade { opacity: .6; }

.logo-punkt {
  background: var(--akzent);
  color: var(--slate);
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 12px;
  letter-spacing: .5px;
  flex: none;
}
.logo-punkt.hat-bild { background: #fff; padding: 6px 10px; }
.logo-bild { height: 26px; max-width: 120px; object-fit: contain; display: block; }

.station-text { line-height: 1.25; }
#station-name { font-weight: 700; font-size: 1.05rem; }

.buehne { flex: 1; display: flex; flex-direction: column; gap: 14px; }

.karte {
  background: var(--karte);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.karte.zentriert { text-align: center; }

h1 { font-size: 1.3rem; margin: .2em 0 .4em; }
.ruhig { color: var(--ruhig); }

label { display: block; font-weight: 600; margin: 12px 0 6px; }

input[type=text], input[type=tel], input[type=email], input[type=number], input[type=date] {
  width: 100%;
  font-size: 1.1rem;
  padding: 14px;
  border: 2px solid #d5dee3;
  border-radius: 12px;
  outline: none;
}
input:focus { border-color: var(--akzent); }

.knopf {
  width: 100%;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background: var(--akzent);
  color: var(--slate);
  cursor: pointer;
  margin-top: 16px;
}
.knopf:active { transform: translateY(1px); }
.knopf[disabled] { opacity: .5; cursor: default; }
.knopf.gold { background: var(--gold); }
.knopf.geist { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }

.saldo { font-size: 1.6rem; font-weight: 800; color: var(--slate); }

.meldung { padding: 12px 14px; border-radius: 12px; margin-top: 12px; font-weight: 600; }
.meldung.ok { background: #e6f6ec; color: var(--ok); }
.meldung.warn { background: #fdecea; color: var(--warn); }

.fuss { text-align: center; color: rgba(255,255,255,.55); font-size: .85rem; }

.lade-punkte::after {
  content: " …";
  animation: blink 1.2s steps(3, end) infinite;
}
@keyframes blink { 0%,20% { opacity: 0 } 100% { opacity: 1 } }
