/**
 * BamLove — Anmeldeseite: gleiche Styles wie CityTransfer24 ct24-login.css
 * (Stand bezogen auf citytransfer24.at/css/ct24-login.css).
 * Abweichung: Hero ohne Fotos, nur animierte Farbverläufe; optional eine Tab-Spalte (--solo).
 */
@import url('bamlove-globales-hero-hintergrund.css');

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body.ct24-login {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  font-family:
    system-ui,
    -apple-system,
    'Segoe UI',
    Roboto,
    'Helvetica Neue',
    Arial,
    sans-serif;
  color: #1f1f1f;
  background: #0f172a;
  position: relative;
  --ct24-ui-accent-ring: #2563eb;
  --ct24-ui-shell-radius-lg: 20px;
  /* Login-Hero Inspector (anpassbar; Defaults = bisherige Werte) */
  --ct24-hero-slide-a0: 0.95;
  --ct24-hero-slide-a1: 0;
  --ct24-hero-scrim-a0: 0.26;
  --ct24-hero-scrim-a1: 0;
  --ct24-hero-scrim-a2: 0;
  --ct24-hero-scrim-mid-stop: 0%;
  --ct24-hero-scrim-radial: 0;
}

.ct24-login__main {
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 1;
}

.ct24-login__card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--ct24-ui-shell-radius-lg);
  padding: 36px 28px 32px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.06),
    0 12px 48px rgba(0, 0, 0, 0.2),
    0 0 0 1.5px var(--ct24-ui-accent-ring),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  border: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ct24-login__kicker {
  margin: 0 0 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: #6b7280;
}

.ct24-login__brand {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: center;
  line-height: 1.2;
}

.ct24-login__sub {
  margin: 0 0 20px;
  font-size: 0.9375rem;
  line-height: 1.5;
  text-align: center;
  color: #5f6368;
}

/* —— Tab-Umschalter (wie CT: drei gleich breite Kacheln) —— */
.ct24-login-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 16px;
}

.ct24-login-switch--3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

/*
 * Hinweis: Kein Nur-eine-Spalte-Raster (--solo mehr).
 * Bei fehlendem Firebase können versteckte Tabs in manchen WebViews trotzdem sichtbar bleiben;
 * drei Spalten + display:none bei [hidden] hält immer waagerecht wie CityTransfer24.
 */
.ct24-login-switch--3 .ct24-login-switch__btn[hidden] {
  display: none !important;
}

.ct24-login-switch--3 .ct24-login-switch__btn {
  min-height: 58px;
  padding: 8px 6px;
}

.ct24-login-switch--3 .ct24-login-switch__title {
  font-size: 0.8125rem;
}

.ct24-login-switch--3 .ct24-login-switch__hint {
  font-size: 0.625rem;
}

.ct24-login-switch__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 64px;
  margin: 0;
  padding: 10px 12px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: #f9fafb;
  font: inherit;
  cursor: pointer;
  color: #374151;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.ct24-login-switch__btn:hover {
  border-color: #d1d5db;
  background: #f3f4f6;
}

.ct24-login-switch__btn:focus-visible {
  outline: 2px solid #1a73e8;
  outline-offset: 2px;
}

.ct24-login-switch__btn.is-active {
  border-color: #1a73e8;
  background: #e8f0fe;
  box-shadow: 0 0 0 1px rgba(26, 115, 232, 0.25);
}

.ct24-login-switch__title {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ct24-login-switch__hint {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ct24-login-switch__btn.is-active .ct24-login-switch__hint {
  color: #1967d2;
}

/* Hinweis wenn Firebase auf dem Server noch nicht nutzbar ist (Tabs bleiben sichtbar). */
.ct24-login__firebase-hinweis {
  margin: 0 0 12px;
  font-size: 0.8125rem;
  line-height: 1.45;
  text-align: center;
  color: #9a3412;
}

.ct24-login__firebase-hinweis[hidden] {
  display: none !important;
}

.ct24-login-panels {
  margin: 0 0 4px;
}

.ct24-login-panel__lead {
  margin: 0 0 14px;
  font-size: 0.8125rem;
  line-height: 1.45;
  text-align: center;
  color: #6b7280;
}

.ct24-login-panel__lead--welcome {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #374151;
}

.ct24-login-guest-restore {
  margin-top: 4px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px 12px;
  background: rgba(248, 250, 252, 0.95);
}

.ct24-login-guest-restore__summary {
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 650;
  color: #475569;
  list-style-position: outside;
}

.ct24-login-guest-restore__summary::-webkit-details-marker {
  color: #64748b;
}

.ct24-login-guest-existing {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.ct24-login-guest-existing--restore {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ct24-login__already {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #e8f0fe;
  border: 1px solid rgba(26, 115, 232, 0.2);
  font-size: 0.875rem;
  line-height: 1.45;
  color: #174ea6;
}

.ct24-login__already[hidden] {
  display: none !important;
}

.ct24-login__already a {
  color: #1967d2;
  font-weight: 600;
  text-decoration: none;
}

.ct24-login__already a:hover {
  text-decoration: underline;
}

/* Im Stil des offiziellen „Sign in with Google“: weiß, Rahmen, farbiges G */
.ct24-btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 12px 20px;
  border: 1px solid #dadce0;
  border-radius: 8px;
  background: #fff;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1f1f1f;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    background 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.ct24-btn-google:hover:not(:disabled) {
  background: #f8f9fa;
  border-color: #d2d4d7;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.18);
}

.ct24-btn-google:active:not(:disabled) {
  background: #f1f3f4;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.12);
}

.ct24-btn-google:focus-visible {
  outline: 2px solid #1a73e8;
  outline-offset: 2px;
}

.ct24-btn-google:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

.ct24-btn-google__icon {
  flex-shrink: 0;
  display: block;
}

.anonym-login__err {
  margin-top: 0.75rem;
}

.ct24-login__hinweis-nur-anonym {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: rgba(248, 250, 252, 0.72);
  line-height: 1.45;
}

.ct24-login__err {
  margin: 16px 0 0;
  min-height: 1.25em;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #c5221f;
  text-align: center;
}

.ct24-login__err:empty {
  min-height: 0;
  margin-top: 8px;
}

.ct24-login__err--ok {
  color: #137333;
}

.anonym-spitzname-hinweis {
  margin: 6px 0 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  text-align: left;
}

.anonym-spitzname-hinweis--info {
  color: #137333;
}

.anonym-spitzname-hinweis--fehler {
  color: #c5221f;
}

.ct24-login__hint {
  margin: 20px 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  text-align: center;
  color: #80868b;
}

.ct24-login__hint a {
  color: #5f6368;
  font-weight: 500;
}

.ct24-login__hint a:hover {
  color: #1f1f1f;
}

.ct24-login__credits {
  margin: 14px 0 0;
  font-size: 0.625rem;
  line-height: 1.5;
  text-align: center;
  color: rgba(95, 99, 104, 0.92);
}

.ct24-login__credits a {
  color: #5f6368;
  font-weight: 500;
  white-space: nowrap;
}

.ct24-login__credits a:hover {
  color: #1f1f1f;
}

.ct24-login__already p {
  margin: 0;
}

.ct24-login__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ct24-login__divider::before,
.ct24-login__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.12), transparent);
}

.ct24-login-phone {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ct24-login-phone.ct24-login-form-zeilen,
.ct24-login-guest-existing.ct24-login-form-zeilen {
  gap: 12px;
}

/* Label links, Eingabe rechts (Anmeldung, Konto, SMS) */
.anonym-feld-zeile {
  display: grid;
  grid-template-columns: minmax(5.5rem, 34%) 1fr;
  gap: 6px 12px;
  align-items: start;
}

.anonym-mitglied-schritt .anonym-feld-zeile + .anonym-feld-zeile {
  margin-top: 12px;
}

.anonym-feld-label {
  margin: 0;
  padding-top: 11px;
  line-height: 1.35;
}

.anonym-feld-eingabe {
  min-width: 0;
}

.anonym-feld-eingabe .ct24-login__input,
.anonym-feld-eingabe .ct24-login__input--select {
  width: 100%;
}

.ct24-login-form-aktion {
  width: 100%;
}

.ct24-login-phone__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
}

.ct24-login-phone__label--code {
  margin-top: 0;
}

@media (max-width: 360px) {
  .anonym-feld-zeile {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .anonym-feld-label {
    padding-top: 0;
  }
}

.ct24-login__input {
  width: 100%;
  margin: 0;
  padding: 11px 14px;
  border: 1px solid #dadce0;
  border-radius: 8px;
  background: #fff;
  font: inherit;
  font-size: 0.9375rem;
  color: #1f1f1f;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.ct24-login__input::placeholder {
  color: #9ca3af;
}

.ct24-login__input:hover:not(:disabled) {
  border-color: #d2d4d7;
}

.ct24-login__input:focus {
  outline: none;
  border-color: #1a73e8;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.18);
}

.ct24-login-recaptcha {
  min-height: 0;
  overflow: hidden;
}

.ct24-btn-sms {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 11px 18px;
  border: 1px solid #c7d2fe;
  border-radius: 8px;
  background: #eef2ff;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: #3730a3;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.ct24-btn-sms--primary {
  background: #4f46e5;
  border-color: #4338ca;
  color: #fff;
}

.ct24-btn-sms:hover:not(:disabled) {
  background: #e0e7ff;
  border-color: #a5b4fc;
}

.ct24-btn-sms--primary:hover:not(:disabled) {
  background: #4338ca;
  border-color: #3730a3;
}

.ct24-btn-sms:focus-visible {
  outline: 2px solid #1a73e8;
  outline-offset: 2px;
}

.ct24-btn-sms:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.ct24-login__gast {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ct24-login__gast-text {
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 0.75rem;
}

.ct24-btn-gast {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.ct24-btn-gast:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.14);
}

/* —— Dev: Hero-Hintergrund-Inspector (wie CT; nur wenn Script eingebunden) —— */
.ct24-hero-inspect-tab {
  position: fixed;
  left: 0;
  bottom: 80px;
  z-index: 9998;
  padding: 6px 10px;
  border: none;
  border-radius: 0 8px 8px 0;
  background: rgba(15, 23, 42, 0.85);
  color: #e2e8f0;
  font: inherit;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  -webkit-tap-highlight-color: transparent;
}

.ct24-hero-inspect-tab:hover {
  background: rgba(30, 41, 59, 0.95);
}

.ct24-hero-inspect {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 9999;
  width: min(320px, calc(100vw - 24px));
  max-height: min(78vh, 520px);
  overflow: auto;
  padding: 12px 12px 14px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.96);
  color: #e2e8f0;
  font-size: 0.75rem;
  line-height: 1.35;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  -webkit-overflow-scrolling: touch;
}

.ct24-hero-inspect[hidden] {
  display: none !important;
}

.ct24-hero-inspect h2 {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f8fafc;
}

.ct24-hero-inspect__sub {
  margin: 0 0 10px;
  font-size: 0.6875rem;
  color: #94a3b8;
}

.ct24-hero-inspect__row {
  margin: 0 0 10px;
}

.ct24-hero-inspect__row label {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
  font-weight: 600;
  color: #cbd5e1;
}

.ct24-hero-inspect__row input[type='range'] {
  width: 100%;
  accent-color: #38bdf8;
}

.ct24-hero-inspect__val {
  font-variant-numeric: tabular-nums;
  color: #7dd3fc;
  font-weight: 600;
}

.ct24-hero-inspect__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.ct24-hero-inspect__actions button {
  flex: 1 1 auto;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid #334155;
  border-radius: 8px;
  background: #1e293b;
  color: #e2e8f0;
  font: inherit;
  font-size: 0.6875rem;
  font-weight: 600;
  cursor: pointer;
}

.ct24-hero-inspect__actions button:hover {
  background: #334155;
}

.ct24-hero-inspect__out {
  margin: 10px 0 0;
  padding: 8px;
  width: 100%;
  min-height: 72px;
  border: 1px solid #334155;
  border-radius: 8px;
  background: #0f172a;
  color: #a5f3fc;
  font-family: ui-monospace, monospace;
  font-size: 0.625rem;
  line-height: 1.4;
  resize: vertical;
}

.ct24-hero-inspect__hint {
  margin: 8px 0 0;
  font-size: 0.625rem;
  color: #64748b;
}

/** Eingebettet in index.html zwischen Kopfzeile und Navigation */
body.ct24-login.ct24-login--eingebettet {
  min-height: 100%;
  height: 100%;
  align-items: stretch;
  justify-content: flex-start;
  padding: 12px 12px 16px;
  overflow: auto;
}

body.ct24-login.ct24-login--eingebettet .ct24-login-hero {
  display: none;
}

body.ct24-login.ct24-login--eingebettet .ct24-login__main {
  max-width: none;
  margin: 0 auto;
}

/** Separates Google-Anmeldefenster: nur Ladehinweis, dann Weiterleitung zu Google */
body.ct24-login.ct24-login--google-fenster {
  padding: 16px;
}

body.ct24-login.ct24-login--google-fenster .ct24-login-hero,
body.ct24-login.ct24-login--google-fenster .ct24-login__brand,
body.ct24-login.ct24-login--google-fenster .ct24-login__kicker,
body.ct24-login.ct24-login--google-fenster .ct24-login__sub,
body.ct24-login.ct24-login--google-fenster .ct24-login-switch,
body.ct24-login.ct24-login--google-fenster .ct24-login-panels,
body.ct24-login.ct24-login--google-fenster .ct24-login__already,
body.ct24-login.ct24-login--google-fenster .ct24-login__hint,
body.ct24-login.ct24-login--google-fenster .ct24-login__credits {
  display: none !important;
}

body.ct24-login.ct24-login--google-fenster .ct24-login__card {
  box-shadow: none;
  background: transparent;
  padding: 24px 16px;
  text-align: center;
}

.ct24-google-fenster-lade {
  margin: 0 0 12px;
  font-size: 1.05rem;
  line-height: 1.45;
  color: #e2e8f0;
  text-align: center;
}

body.ct24-login.ct24-login--google-fenster #ct24LoginErr {
  margin-top: 8px;
  text-align: center;
}

/* Anonym Mitglied — Schritt-für-Schritt im bestehenden Login-Karten-Container */
.ct24-login__sub--anonym {
  margin-bottom: 14px;
}

.anonym-mitglied-wizard {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}

.anonym-mitglied-fortschritt {
  height: 4px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

.anonym-mitglied-fortschritt span {
  display: block;
  height: 100%;
  width: var(--anonym-fortschritt, 25%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--navigation-fab-start, #818cf8), var(--navigation-fab-ende, #ec4899));
  transition: width 0.25s ease;
}

.anonym-mitglied-schritt-hinweis {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #4b5563;
}

.anonym-mitglied-schritt {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.anonym-mitglied-schritt[hidden] {
  display: none !important;
}

.anonym-mitglied-zusammenfassung {
  margin: 10px 0 0;
  padding: 10px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
  border-radius: 10px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
}

.anonym-mitglied-aktionen {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.anonym-mitglied-aktionen .ct24-btn-sms--primary {
  flex: 1 1 auto;
  min-width: 140px;
}

.ct24-login__input--select {
  appearance: none;
  cursor: pointer;
}

.ct24-login-erweitert {
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

.ct24-login-erweitert__summary {
  cursor: pointer;
  font-size: 0.88rem;
  color: rgba(226, 232, 240, 0.8);
  list-style: none;
}

.ct24-login-erweitert__summary::-webkit-details-marker {
  display: none;
}

.ct24-login-erweitert[open] .ct24-login-erweitert__summary {
  margin-bottom: 12px;
}

.ct24-login-erweitert .ct24-login__gast {
  margin-top: 12px;
}

.anonym-mitglied-schritt-titel {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
}

.anonym-datenschutz-lead {
  margin: 0 0 10px;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #374151;
}

.anonym-datenschutz-kasten {
  max-height: 160px;
  overflow-y: auto;
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  font-size: 0.84rem;
  line-height: 1.55;
  color: #1f2937;
  -webkit-overflow-scrolling: touch;
}

.anonym-datenschutz-kasten p {
  margin: 0 0 10px;
}

.anonym-datenschutz-kasten p:last-child {
  margin-bottom: 0;
}

.anonym-datenschutz-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.84rem;
  line-height: 1.45;
  font-weight: 500;
  color: #111827;
}

.anonym-datenschutz-checkbox input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--navigation-fab-ende, #ec4899);
}

.anonym-tarif-lead {
  margin: 0 0 10px;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #4b5563;
}

.anonym-tarif-karte {
  margin: 0 0 14px;
  border-radius: 14px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.anonym-tarif-karte__kopf {
  padding: 14px 16px 12px;
  background: linear-gradient(135deg, #eef2ff 0%, #fdf2f8 100%);
  border-bottom: 1px solid #e5e7eb;
}

.anonym-tarif-karte__titelzeile {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.anonym-tarif-karte__name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
}

.anonym-tarif-karte__preis {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #166534;
  background: #dcfce7;
  border: 1px solid #86efac;
}

.anonym-tarif-karte__untertitel {
  margin: 6px 0 0;
  font-size: 0.8rem;
  color: #6b7280;
}

.anonym-tarif-abschnitt {
  padding: 12px 16px;
}

.anonym-tarif-abschnitt--inkludiert {
  background: #f0fdf4;
  border-bottom: 1px solid #e5e7eb;
}

.anonym-tarif-abschnitt--nicht {
  background: #f9fafb;
}

.anonym-tarif-abschnitt__titel {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
}

.anonym-tarif-abschnitt--inkludiert .anonym-tarif-abschnitt__titel {
  color: #15803d;
}

.anonym-tarif-abschnitt--nicht .anonym-tarif-abschnitt__titel {
  color: #9ca3af;
}

.anonym-tarif-liste {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.anonym-tarif-punkt {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.anonym-tarif-punkt__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.anonym-tarif-punkt--ja .anonym-tarif-punkt__icon {
  background-color: #dcfce7;
  border: 1px solid #86efac;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%2315803d' stroke-width='2' stroke-linecap='round' d='M2 6l3 3 5-6'/%3E%3C/svg%3E");
}

.anonym-tarif-punkt--nein .anonym-tarif-punkt__icon {
  background-color: #f3f4f6;
  border: 1px solid #d1d5db;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath stroke='%239ca3af' stroke-width='2' stroke-linecap='round' d='M3 3l6 6M9 3L3 9'/%3E%3C/svg%3E");
}

.anonym-tarif-punkt__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.anonym-tarif-punkt__text strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.anonym-tarif-punkt--nein .anonym-tarif-punkt__text strong {
  color: #6b7280;
}

.anonym-tarif-punkt__hinweis {
  font-size: 0.78rem;
  line-height: 1.35;
  color: #6b7280;
}

.anonym-tarif-checkbox {
  margin-top: 4px;
}
