/* =============================================
   Fishers Country – Startseite
   Einfaches, modernes Design für Web & Handy
   ============================================= */

/* Grund-Einstellungen */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-green-dark: #2d5016;
  --color-green: #4a7c2e;
  --color-green-light: #7cb356;
  --color-cream: #f5f0e8;
  --color-brown: #5c4033;
  --color-text: #2c2c2c;
  --color-white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background-color: var(--color-cream);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
}

/* ---- Premium-Test-Schalter (nur Dev; HTML entfernt) ---- */
.premium-schalter {
  display: none !important;
}

.dashboard-admin-zeile {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.45rem;
}

.dashboard-admin-trigger {
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0.35rem 0.65rem;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #64748b;
}

.dashboard-admin-trigger:hover,
.dashboard-admin-trigger:focus-visible {
  background: #e2e8f0;
  border-color: #94a3b8;
  color: #334155;
}

.dashboard-admin-trigger.aktiv {
  background: rgba(146, 64, 14, 0.12);
  border-color: rgba(146, 64, 14, 0.45);
  color: #92400e;
}

.premium-schalter-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  color: #78350f;
}

#premium-status-label {
  min-width: 6.5rem;
}

.premium-schalter-toggle {
  position: relative;
  width: 42px;
  height: 24px;
  display: inline-block;
}

.premium-schalter-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.premium-schalter-knopf {
  position: absolute;
  inset: 0;
  background: #d1d5db;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.premium-schalter-knopf::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.premium-schalter-toggle input:checked + .premium-schalter-knopf {
  background: #d97706;
}

.premium-schalter-toggle input:checked + .premium-schalter-knopf::before {
  transform: translateX(18px);
}

.premium-schalter-text {
  color: #92400e;
}

/* ---- Großes Bild ganz oben ---- */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #1a2e12;
  line-height: 0;
}

.hero-start-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0.55rem 0.85rem 0.65rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.72) 100%);
  line-height: 1.35;
  pointer-events: none;
}

.hero-admin-kopf {
  display: inline-flex;
  align-items: center;
  pointer-events: auto;
}

.hero-start-overlay .discrete-admin-trigger {
  pointer-events: auto;
  color: rgba(248, 250, 252, 0.72);
}

.hero-start-overlay .discrete-admin-trigger:hover,
.hero-start-overlay .discrete-admin-trigger:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-image {
  width: 100%;
  height: clamp(200px, 42vw, 520px);
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ---- Karten-Bereich ---- */
.map-section {
  padding: 0.75rem 1rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.map-section-kopf {
  text-align: center;
  margin-bottom: 0.65rem;
}

.map-section-kopf h2 {
  font-size: clamp(1.15rem, 3.5vw, 1.55rem);
  color: var(--color-green-dark);
  margin-bottom: 0.45rem;
}

.map-section-unterkarte {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 2px solid rgba(212, 203, 184, 0.65);
}

.map-section-unterkarte .users-best-karte-kompakt {
  margin: 0;
  text-align: center;
}

.map-section-steuerung {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(212, 203, 184, 0.65);
  text-align: center;
}

.map-section-steuerung .karten-werkzeugleiste {
  margin-top: 0.85rem;
  margin-bottom: 0.65rem;
}

.map-section-toolbar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.35rem;
}

.map-section-toolbar-row .karten-werkzeugleiste-karte {
  margin-top: 0;
  margin-bottom: 0;
}

.discrete-admin-trigger.aktiv {
  background: rgba(146, 64, 14, 0.12);
  border-color: rgba(146, 64, 14, 0.45);
  color: #92400e;
}

.dashboard-aktionen-wrap {
  max-width: 28rem;
  margin: 0.35rem auto 0.85rem;
  padding: 0 0.15rem;
}

.dashboard-aktionen {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  max-width: none;
  margin: 0;
  padding: 0;
}

.dashboard-aktionen-unterreihe {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
}

.dashboard-aktionen-unterreihe .dashboard-aktion-btn-logout {
  flex: 1 1 auto;
  min-width: 0;
}

.discrete-admin-trigger {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  min-height: 1.35rem;
  padding: 0.05rem 0.2rem;
  margin: 0;
  border-radius: 6px;
  border: 1px solid transparent;
  background: transparent;
  color: #b0bac7;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  vertical-align: middle;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.discrete-admin-trigger:hover,
.discrete-admin-trigger:focus-visible {
  background: rgba(148, 163, 184, 0.12);
  border-color: rgba(148, 163, 184, 0.35);
  color: #64748b;
  transform: none;
  box-shadow: none;
  outline: none;
}

.dashboard-aktion-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: clamp(0.88rem, 2.8vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}

.dashboard-aktion-btn-upload {
  background: #f59e0b;
  color: #1f2937;
  border-color: #b45309;
}

.dashboard-aktion-btn-upload:hover,
.dashboard-aktion-btn-upload:focus-visible {
  background: #d97706;
  transform: translateY(-1px);
}

.spot-server-upload-status {
  margin: 0.35rem 0 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  background: #fffbeb;
  border: 1px solid #f59e0b;
  color: #92400e;
  font-size: 0.92rem;
  line-height: 1.4;
}

.spot-server-upload-status-fehler {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #991b1b;
}

.spot-server-upload-status-erfolg {
  background: #ecfdf5;
  border-color: #6ee7b7;
  color: #065f46;
}

.karten-werkzeugleiste-karte {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5rem 0.25rem 0.15rem;
}

.karten-werkzeugleiste-link {
  flex: 1 1 0;
  min-width: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  color: var(--color-green-dark);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.35;
  padding: 0.4rem 0.35rem;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
}

.karten-werkzeugleiste-link:hover,
.karten-werkzeugleiste-link:focus-visible {
  color: #166534;
  text-decoration: underline;
  outline: none;
}

.karten-werkzeugleiste-link.aktiv {
  color: #92400e;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .karten-werkzeugleiste-karte {
    gap: 0.35rem;
    padding-left: 0;
    padding-right: 0;
  }

  .karten-werkzeugleiste-link {
    font-size: 0.82rem;
    padding: 0.35rem 0.2rem;
  }
}

.karten-btn-kompakt {
  flex: 1 1 7.5rem;
  min-width: 7rem;
  max-width: 11rem;
}

.profil-spot-beitragen-btn {
  margin-bottom: 0.85rem;
}

.karten-admin-trigger {
  position: fixed;
  right: 10px;
  bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  z-index: 9999;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(146, 64, 14, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #92400e;
  font-size: 1.15rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(4px);
  padding: 0;
}

.karten-admin-trigger:hover,
.karten-admin-trigger:focus-visible {
  background: #fff8f0;
  border-color: #92400e;
  outline: none;
}

.karten-admin-trigger.aktiv {
  background: #92400e;
  color: #ffffff;
  border-color: #78350f;
}

#secret-admin-gear,
.secret-admin-gear {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  padding: 10px;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

#secret-admin-gear:hover,
#secret-admin-gear:focus-visible,
.secret-admin-gear:hover,
.secret-admin-gear:focus-visible {
  background: rgba(0, 0, 0, 0.78);
  outline: none;
}

#secret-admin-gear.aktiv,
.secret-admin-gear.aktiv {
  background: rgba(146, 64, 14, 0.92);
}

@media (max-width: 640px) {
  #secret-admin-gear,
  .secret-admin-gear {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 640px) {
  .karten-admin-trigger {
    bottom: calc(4.6rem + env(safe-area-inset-bottom, 0px));
  }
}

.map-section-steuerung .admin-panel {
  margin-top: 0.35rem;
  margin-bottom: 0;
}

.map-section-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.map-section-header h2 {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  color: var(--color-green-dark);
  margin-bottom: 0.55rem;
}

.karten-statistik {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 0 0.75rem;
}

.karten-statistik-kachel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  min-width: 5.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 12px;
  border: 2px solid #d4cbb8;
  background: linear-gradient(180deg, #faf8f4 0%, #f3efe6 100%);
  box-shadow: 0 2px 8px rgba(45, 80, 22, 0.06);
}

.karten-statistik-gewaesser {
  border-color: #93c5fd;
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
}

.karten-statistik-gewaesser .karten-statistik-zahl {
  color: #1d4ed8;
}

.karten-statistik-spots {
  border-color: #fdba74;
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
}

.karten-statistik-zahl {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-green-dark);
}

.karten-statistik-spots .karten-statistik-zahl {
  color: #c2410c;
}

.karten-statistik-label {
  margin-top: 0.12rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-brown);
}

.map-section-steuerung p,
.map-section-header p {
  color: var(--color-brown);
  font-size: 0.95rem;
}

#standort-hinweis {
  min-height: 1.4em;
}

/* ---- Karten-Werkzeugleiste ---- */
.karten-werkzeugleiste,
.admin-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.admin-panel {
  background: #fff8f0;
  border: 2px solid #f59e0b;
  border-radius: var(--radius);
  padding: 0.75rem;
}

.admin-panel-erstell-zeile {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  width: 100%;
  margin-bottom: 0.35rem;
}

.admin-panel-freigabe-zeile {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  width: 100%;
  margin: 0.25rem 0 0.65rem;
}

.admin-panel-text {
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-brown);
  margin-bottom: 0.25rem;
}

.admin-panel-hervorheben {
  animation: admin-panel-puls 1.5s ease-out 1;
}

@keyframes admin-panel-puls {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.8);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
  }

  100% {
    box-shadow: none;
  }
}

.admin-login-inhalt {
  max-width: 22rem;
}

.admin-pin-fehler {
  margin-top: 0.45rem;
  font-size: 0.85rem;
  color: #b91c1c;
}

.karten-btn {
  background: var(--color-green);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.karten-btn:hover {
  background: var(--color-green-dark);
}

.karten-btn.aktiv {
  box-shadow: inset 0 0 0 2px var(--color-white);
  background: var(--color-green-dark);
}

.karten-btn-admin {
  background: #92400e;
}

.karten-btn-admin:hover,
.karten-btn-admin.aktiv {
  background: #78350f;
}

.admin-freigabe-zeile {
  cursor: pointer;
}

.admin-freigabe-zeile .admin-freigabe-aktionen,
.admin-freigabe-zeile .admin-freigabe-aktionen * {
  cursor: auto;
}

.admin-freigabe-vorschau-inhalt {
  max-width: min(720px, 96vw);
  max-height: 90vh;
  overflow: auto;
}

.admin-freigabe-vorschau-kopf {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.35rem;
}

.admin-freigabe-vorschau-kopf h3 {
  margin: 0;
  flex: 1 1 auto;
}

.admin-freigabe-vorschau-hinweis {
  margin-top: 0;
}

.admin-freigabe-vorschau-formular {
  margin: 0.75rem 0 1rem;
}

.admin-freigabe-vorschau-feld {
  margin-bottom: 0.85rem;
}

.admin-freigabe-vorschau-feld label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.admin-freigabe-vorschau-wert,
.admin-freigabe-vorschau-text {
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(45, 80, 22, 0.18);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 6px;
  white-space: pre-wrap;
  word-break: break-word;
}

.admin-freigabe-vorschau-text {
  max-height: 280px;
  overflow: auto;
  white-space: normal;
}

.admin-freigabe-vorschau-medien {
  display: grid;
  gap: 0.75rem;
}

.admin-freigabe-vorschau-medium img,
.admin-freigabe-vorschau-medium video {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: 8px;
  background: #111;
}

.admin-freigabe-vorschau-medium figcaption {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  opacity: 0.85;
}

.admin-freigabe-vorschau-links {
  margin: 0;
  padding-left: 1.1rem;
}

.admin-freigabe-vorschau-aktionen {
  flex-wrap: wrap;
  gap: 0.5rem;
}

.karten-btn-verbot {
  background: #b91c1c;
}

.karten-btn-verbot:hover,
.karten-btn-verbot.aktiv {
  background: #991b1b;
}

.karten-btn-shop {
  background: #7c3aed;
}

.karten-btn-shop:hover,
.karten-btn-shop.aktiv {
  background: #6d28d9;
}

.karten-btn-event {
  background: #9ca3af;
  color: #111827;
}

.karten-btn-event:hover,
.karten-btn-event.aktiv {
  background: #6b7280;
  color: #ffffff;
}

#map.shop-anlegen-modus {
  cursor: crosshair;
}

#map.event-anlegen-modus {
  cursor: crosshair;
}

.karten-btn-adventure {
  background: linear-gradient(135deg, #c4a574 0%, #8b6914 100%);
  color: #ffffff;
  border: 1px solid #6b5344;
}

.karten-btn-adventure:hover,
.karten-btn-adventure.aktiv {
  background: linear-gradient(135deg, #b8956a 0%, #5c4033 100%);
  color: #ffffff;
}

#map.adventure-anlegen-modus {
  cursor: crosshair;
}

.karten-btn-bootsverleih {
  background: #0d9488;
  color: #ffffff;
}

.karten-btn-bootsverleih:hover,
.karten-btn-bootsverleih.aktiv {
  background: #0f766e;
  color: #ffffff;
}

#map.bootsverleih-anlegen-modus {
  cursor: crosshair;
}

.karten-btn-secondary {
  background: #6b7280;
}

.karten-btn-secondary:hover {
  background: #4b5563;
}

.versteckt {
  display: none !important;
}

/* ---- Formular-Fenster (Modal) ---- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

/* Bearbeiten-Modal über Karten-Sidebar (Mobil: Sidebar hat z-index 10200) */
body.gewaesser-kopie-modal-offen #gewaesser-kopie-modal,
#gewaesser-kopie-modal:not(.versteckt) {
  z-index: 10400;
}

.modal-hintergrund {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.modal-inhalt {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: min(520px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.1rem 1.2rem 1.2rem;
}

.modal-inhalt h3 {
  color: var(--color-green-dark);
  margin-bottom: 0.4rem;
}

.modal-info {
  font-size: 0.82rem;
  color: var(--color-brown);
  margin-bottom: 0.85rem;
}

.modal-inhalt label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 0.65rem;
  margin-bottom: 0.2rem;
  color: var(--color-green-dark);
}

.modal-inhalt input,
.modal-inhalt textarea,
.modal-inhalt select {
  width: 100%;
  border: 1px solid #c9bc9e;
  border-radius: 8px;
  padding: 0.5rem 0.6rem;
  font: inherit;
  user-select: text;
  -webkit-user-select: text;
}

.feld-kontextmenue {
  position: fixed;
  z-index: 10001;
  min-width: 160px;
  background: #ffffff;
  border: 1px solid #c9bc9e;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  padding: 0.25rem;
}

.feld-kontext-btn {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.88rem;
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  cursor: pointer;
  color: var(--color-text);
}

.feld-kontext-btn:hover,
.feld-kontext-btn:focus {
  background: #f0ebe0;
  color: var(--color-green-dark);
}

.feld-kontext-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.formular-gruppe-titel {
  margin-top: 0.9rem;
  font-weight: 700;
  color: var(--color-green-dark);
}

.modal-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 1rem;
}

/* ---- Popups: Community & Verbotszonen ---- */
.spot-popup-titel,
.verbots-popup-titel {
  color: var(--color-green-dark);
  margin-bottom: 0.4rem;
}

.spot-popup-abschnitt,
.spot-popup-datum {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

.spot-popup-liste {
  margin-left: 1rem;
}

/* ---- Werbefläche in Spot-Ansicht ---- */
.spot-popup-wrapper .leaflet-popup-content-wrapper {
  border-radius: 10px;
  padding: 0;
}

.spot-popup-wrapper .leaflet-popup-content {
  margin: 0;
  line-height: 1.45;
}

.spot-popup {
  padding: 0.85rem 1rem 0.5rem;
  font-size: 0.9rem;
}

.werbung-bereich {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 2px dashed #d4cbb8;
}

.werbung-bereich-titel {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #92400e;
  margin-bottom: 0.5rem;
}

.werbung-karte {
  background: linear-gradient(135deg, #fff8eb 0%, #fef3c7 100%);
  border: 2px solid #f59e0b;
  border-radius: 10px;
  padding: 0.65rem 0.75rem 0.75rem;
  margin-bottom: 0.55rem;
}

.werbung-karte:last-child {
  margin-bottom: 0;
}

.werbung-bild {
  width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.45rem;
  display: block;
}

.werbung-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #92400e;
  background: #fde68a;
  border-radius: 4px;
  padding: 0.15rem 0.4rem;
  margin-bottom: 0.35rem;
}

.werbung-titel {
  font-weight: 700;
  color: #78350f;
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}

.werbung-titel::before {
  content: "[WERBUNG] ";
  color: #b45309;
}

.werbung-text {
  font-size: 0.82rem;
  color: #57534e;
  margin-bottom: 0.45rem;
}

.werbung-link {
  display: inline-block;
  background: #d97706;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
}

.werbung-link:hover {
  background: #b45309;
}

/* ---- Display-Werbebanner (Platzhalter & echte Banner) ---- */
.werbe-banner-slot {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  margin: 0.65rem 0;
}

.werbe-banner-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.werbe-banner-platzhalter {
  background-color: #f4f5f7;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(107, 114, 128, 0.06) 10px,
      rgba(107, 114, 128, 0.06) 11px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 10px,
      rgba(107, 114, 128, 0.04) 10px,
      rgba(107, 114, 128, 0.04) 11px
    ),
    radial-gradient(circle at 20% 30%, rgba(74, 124, 46, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(45, 80, 22, 0.03) 0%, transparent 40%);
  border: 1px solid #e5e7eb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.werbe-banner-aktiv {
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

.werbe-banner-bild {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.werbe-banner-label {
  position: absolute;
  top: 0.35rem;
  right: 0.4rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9ca3af;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.12rem 0.35rem;
  border-radius: 4px;
  line-height: 1.2;
  pointer-events: none;
}

.werbe-banner-aktiv .werbe-banner-label {
  color: #6b7280;
  background: rgba(255, 255, 255, 0.88);
}

.werbe-banner-leaderboard {
  aspect-ratio: 320 / 50;
  max-height: 72px;
  min-height: 50px;
}

.werbe-banner-medium {
  aspect-ratio: 300 / 250;
  max-height: 220px;
}

.gewaesser-popup .werbe-banner-slot,
.spot-popup .werbe-banner-slot {
  margin-top: 0.75rem;
  margin-bottom: 0.15rem;
}

.tipps-magazin-liste .werbe-banner-slot {
  margin: 0.15rem 0 0.35rem;
}

.partner-liste .werbe-banner-slot {
  margin: 0.35rem 0 0.55rem;
}

.spot-popup-datum {
  margin-top: 0.65rem;
}

/* ---- Spot: Anfahrt & Zugang ---- */
.spot-anfahrt-box {
  margin: 0.65rem 0 0.75rem;
  padding: 0.7rem 0.75rem;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 2px solid #f59e0b;
  border-radius: 10px;
}

.spot-anfahrt-titel {
  font-weight: 800;
  color: #92400e;
  font-size: 0.92rem;
  margin-bottom: 0.55rem;
}

.spot-anfahrt-zeile {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.45rem;
}

.spot-anfahrt-icon {
  font-size: 1.25rem;
  line-height: 1.2;
  flex-shrink: 0;
}

.spot-anfahrt-zeile strong {
  display: block;
  font-size: 0.82rem;
  color: #78350f;
  margin-bottom: 0.1rem;
}

.spot-anfahrt-zeile p {
  font-size: 0.88rem;
  color: #451a03;
  line-height: 1.4;
  margin: 0;
}

.spot-anfahrt-hinweis {
  font-size: 0.8rem;
  color: #92400e;
  background: rgba(255, 255, 255, 0.55);
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  margin: 0 0 0.45rem 1.85rem;
}

.spot-parkplatz-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.55rem;
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  text-align: center;
}

.spot-parkplatz-btn:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #1e40af, #1e3a8a);
}

.spot-parkplatz-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.spot-popup-kopf {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.spot-popup-kopf .spot-popup-titel {
  margin-bottom: 0;
  flex: 1;
}

.spot-favorit-btn {
  border: none;
  background: transparent;
  font-size: 1.45rem;
  line-height: 1;
  color: #d1d5db;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.spot-favorit-btn.aktiv {
  color: #f59e0b;
}

.premium-fang-stats {
  margin: 0.65rem 0;
  padding: 0.65rem 0.75rem;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #f59e0b;
  border-radius: 10px;
}

.premium-fang-stats.premium-gesperrt {
  background: #f3f4f6;
  border: 2px dashed #9ca3af;
}

.premium-fang-stats-titel {
  font-weight: 800;
  color: #92400e;
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
}

.premium-gesperrt .premium-fang-stats-titel {
  color: #4b5563;
}

.premium-stat-zeile {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.premium-stat-zeile:last-child {
  margin-bottom: 0;
}

.premium-stat-icon {
  font-size: 1.1rem;
  line-height: 1.2;
}

.premium-stat-zeile strong {
  display: block;
  font-size: 0.8rem;
  color: #78350f;
}

.premium-stat-zeile p {
  font-size: 0.84rem;
  color: #451a03;
  margin: 0.1rem 0 0;
}

.premium-sperr-hinweis {
  font-size: 0.82rem;
  color: #6b7280;
  font-weight: 600;
}

.gewaesser-offline-bereich {
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px dashed #c9ddb8;
}

.gewaesser-offline-bereich .btn-offline-speichern {
  width: 100%;
  background: linear-gradient(135deg, #1e40af, #1d4ed8);
  color: #ffffff;
}

.gewaesser-offline-bereich .btn-offline-speichern.gespeichert {
  background: linear-gradient(135deg, #166534, #15803d);
}

.offline-info {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.35rem;
}

.favoriten-info {
  font-size: 0.84rem;
  color: var(--color-brown);
  margin-bottom: 0.55rem;
}

.favoriten-liste {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.favorit-karte {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid #e5dcc8;
  border-radius: 10px;
  padding: 0.6rem 0.7rem;
}

.favorit-text {
  flex: 1;
  min-width: 0;
}

.favorit-text strong {
  display: block;
  color: var(--color-green-dark);
  font-size: 0.88rem;
}

.favorit-text span {
  font-size: 0.78rem;
  color: #6b7280;
}

.favorit-route-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #1d4ed8;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
  white-space: nowrap;
}

.favorit-route-btn:hover {
  color: #ffffff;
  background: #1e40af;
}

.favorit-entfernen-btn {
  border: none;
  background: #fee2e2;
  color: #b91c1c;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.premium-gesperrt-text {
  color: #6b7280;
}

.spot-status-badge {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.status-pending {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #f59e0b;
}

.status-hotspot {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #ef4444;
}

.fang-statistik li {
  font-size: 0.86rem;
}

.fang-melden-box {
  margin-top: 0.65rem;
  padding: 0.55rem;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 8px;
}

.fang-melden-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.35rem;
}

.fang-melden-form input {
  flex: 1 1 100px;
  border: 1px solid #c9bc9e;
  border-radius: 6px;
  padding: 0.35rem 0.45rem;
  font: inherit;
}

.fang-melden-form .karten-btn {
  padding: 0.35rem 0.65rem;
  font-size: 0.82rem;
}

.fang-melden-form select {
  flex: 1 1 140px;
  border: 1px solid #c9bc9e;
  border-radius: 6px;
  padding: 0.35rem 0.45rem;
  font: inherit;
}

/* ---- Wetter & Luftdruck (Premium) ---- */
.wetter-bereich {
  margin-top: 0.75rem;
  padding: 0.65rem 0.7rem;
  border-radius: 8px;
}

.wetter-premium {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 2px solid #3b82f6;
}

.wetter-gesperrt {
  background: #f3f4f6;
  border: 2px dashed #9ca3af;
  text-align: center;
}

.wetter-bereich-titel {
  font-weight: 700;
  color: #1d4ed8;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.wetter-gesperrt .wetter-bereich-titel {
  color: #4b5563;
}

.wetter-statistik-text {
  font-size: 0.86rem;
  margin-bottom: 0.55rem;
  line-height: 1.45;
}

.wetter-sperr-hinweis {
  font-size: 0.86rem;
  color: #6b7280;
  font-weight: 600;
}

.wetter-vorhersage-titel {
  font-size: 0.84rem;
  margin-bottom: 0.2rem;
  color: #1e3a8a;
}

.wetter-vorhersage-info {
  font-size: 0.78rem;
  color: #475569;
  margin-bottom: 0.45rem;
}

.wetter-link-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.wetter-link-btn {
  display: inline-block;
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
}

.wetter-link-btn:hover {
  background: #1d4ed8;
}

.wetter-link-btn-secondary {
  background: #0ea5e9;
}

.wetter-link-btn-secondary:hover {
  background: #0284c7;
}

/* ---- Live-Beißindex (Premium) ---- */
.beissindex-bereich {
  margin: 0.65rem 0 0.75rem;
  padding: 0.7rem 0.75rem;
  border-radius: 10px;
}

.beissindex-premium {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 2px solid var(--color-green);
}

.beissindex-gesperrt {
  background: #f3f4f6;
  border: 2px dashed #9ca3af;
  text-align: center;
}

.beissindex-titel {
  font-weight: 800;
  color: var(--color-green-dark);
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}

.beissindex-gesperrt .beissindex-titel {
  color: #4b5563;
}

.beissindex-anzeige {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.25rem;
}

.beissindex-label {
  font-size: 0.84rem;
  color: var(--color-green-dark);
  font-weight: 700;
}

.beissindex-detail {
  font-size: 0.78rem;
  color: #4b5563;
}

.beissindex-detail-klein {
  margin-top: 0.15rem;
  font-size: 0.74rem;
}

.beissindex-stress-hinweis {
  margin: 0.55rem 0 0;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  background: #fff7ed;
  border: 1px solid #fdba74;
  color: #9a3412;
  font-size: 0.76rem;
  line-height: 1.4;
}

.beissindex-sperr-hinweis {
  font-size: 0.86rem;
  color: #6b7280;
  font-weight: 600;
}

.beissindex-quelle {
  font-size: 0.72rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.hotspot-gesperrt-popup {
  text-align: center;
  padding: 0.5rem 0.25rem;
}

.hotspot-schloss {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.hotspot-gesperrt-popup h3 {
  color: #374151;
  margin-bottom: 0.35rem;
}

.hotspot-upgrade-hinweis {
  font-size: 0.82rem;
  color: #92400e;
  margin-top: 0.45rem;
}

.spot-medien-bereich {
  margin-top: 0.65rem;
}

.spot-medien-liste {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.55rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  padding-bottom: 0.35rem;
  margin-right: -0.15rem;
}

.spot-medien-liste::-webkit-scrollbar {
  height: 6px;
}

.spot-medien-liste::-webkit-scrollbar-thumb {
  background: rgba(45, 90, 61, 0.35);
  border-radius: 999px;
}

.spot-medium {
  flex: 0 0 auto;
  width: min(68vw, 210px);
  max-width: 210px;
  scroll-snap-align: start;
  background: #f8fafc;
  border: 1px solid #d4cbb8;
  border-radius: 8px;
  padding: 0.45rem;
}

.btn-spot-medium-admin-loeschen {
  width: 100%;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  padding: 0.35rem 0.5rem;
}

.medium-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-green-dark);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.medium-bild {
  width: 100%;
  height: 132px;
  max-height: 132px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  pointer-events: none;
}

.medium-bild-btn {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  border-radius: 6px;
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
}

.medium-bild-btn:focus-visible {
  outline: 2px solid var(--color-green-dark);
  outline-offset: 2px;
}

.medium-bild-zoom-hinweis {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.25rem 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.72));
  pointer-events: none;
}

body.spot-medien-viewer-offen {
  overflow: hidden;
}

.spot-medien-viewer {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  flex-direction: column;
  background: rgba(15, 23, 42, 0.94);
}

.spot-medien-viewer.versteckt {
  display: none;
}

.spot-medien-viewer-hintergrund {
  position: absolute;
  inset: 0;
}

.spot-medien-viewer-kopf {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  padding-top: calc(0.65rem + env(safe-area-inset-top, 0px));
  color: #ffffff;
}

.spot-medien-viewer-titel {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spot-medien-viewer-werkzeug {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.spot-medien-viewer-btn {
  min-width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.spot-medien-viewer-btn-reset {
  min-width: 3.4rem;
  font-size: 0.78rem;
}

.spot-medien-viewer-schliessen {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.spot-medien-viewer-stage {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: none;
  cursor: grab;
  padding: 0.5rem;
}

.spot-medien-viewer-stage.is-dragging {
  cursor: grabbing;
}

.spot-medien-viewer-bild {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transform-origin: center center;
  user-select: none;
  -webkit-user-drag: none;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.spot-medien-viewer-hinweis {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0.55rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
}

.medium-video {
  width: 100%;
  height: 132px;
  max-height: 132px;
  border-radius: 6px;
  display: block;
  object-fit: cover;
}

.medium-youtube iframe {
  width: 100%;
  height: 132px;
  border: 0;
  border-radius: 6px;
}

.spot-youtube-admin {
  margin-top: 0.65rem;
  padding: 0.55rem 0.6rem;
  border: 1px dashed rgba(45, 90, 61, 0.35);
  border-radius: 8px;
  background: #f8fafc;
}

.spot-youtube-admin-hinweis {
  font-size: 0.78rem;
  color: #64748b;
  margin: 0 0 0.45rem;
}

.spot-youtube-admin-input {
  width: 100%;
  min-height: 3.2rem;
  margin-bottom: 0.45rem;
  font-size: 0.85rem;
}

.btn-spot-youtube-admin-loeschen {
  width: 100%;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  padding: 0.35rem 0.5rem;
}

.spot-youtube-admin-status {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
}

.spot-youtube-admin-status-ok {
  color: #166534;
}

.spot-youtube-admin-status-fehler {
  color: #b91c1c;
}

.medium-link {
  color: var(--color-green);
  font-weight: 600;
  word-break: break-word;
}

.modal-info-klein {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.modal-inhalt input[type="file"] {
  width: 100%;
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

/* ---- Admin-Freigabe (Moderation) – kompakt wie Mitgliederverwaltung ---- */
.admin-moderation {
  margin-top: 1rem;
  padding: 0.85rem 0.9rem;
  background: #fff8f0;
  border: 2px solid #f59e0b;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.admin-moderation h3,
.admin-moderation h4 {
  color: var(--color-green-dark);
  margin-bottom: 0.35rem;
}

.admin-freigabe-info {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.35;
}

.admin-freigabe-unterkopf {
  margin: 0.85rem 0 0.45rem;
  font-size: 0.88rem;
  color: var(--color-green-dark);
}

.admin-freigabe-details-hilfe {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
}

.admin-freigabe-details-hilfe summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-brown);
}

.admin-freigabe-liste {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-height: 22rem;
  overflow-y: auto;
  padding-right: 0.15rem;
}

.admin-freigabe-liste-klein {
  max-height: 14rem;
}

.admin-freigabe-zeile {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.65rem 0.75rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5dcc8;
  cursor: pointer;
}

.admin-freigabe-kopf {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.35rem 0.5rem;
}

.admin-freigabe-titel {
  flex: 1 1 12rem;
  color: var(--color-green-dark);
  font-size: 0.88rem;
  line-height: 1.3;
  margin: 0;
}

.admin-freigabe-meta {
  display: block;
  font-size: 0.74rem;
  color: #64748b;
  line-height: 1.4;
}

.admin-freigabe-meta-kompakt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  font-size: 0.74rem;
  color: #64748b;
}

.admin-freigabe-aktionen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.admin-freigabe-btn {
  flex: 1 1 calc(50% - 0.2rem);
  min-width: 7.5rem;
  min-height: 2.1rem;
  padding: 0.4rem 0.55rem;
  border: none;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
}

.admin-freigabe-btn-freigeben {
  background: var(--color-green);
}

.admin-freigabe-btn-freigeben:hover {
  background: var(--color-green-dark);
}

.admin-freigabe-btn-ablehnen {
  background: #b91c1c;
}

.admin-freigabe-btn-ablehnen:hover {
  background: #991b1b;
}

.admin-freigabe-btn-secondary {
  background: #64748b;
}

.admin-freigabe-btn-secondary:hover {
  background: #475569;
}

.admin-freigabe-btn-bearbeiten {
  background: #92400e;
}

.admin-freigabe-btn-bearbeiten:hover {
  background: #78350f;
}

.admin-freigabe-foto-klein .fang-foto-vorschau {
  width: 64px;
  height: 48px;
  border-radius: 8px;
}

.moderation-info {
  font-size: 0.82rem;
  color: var(--color-brown);
  margin-bottom: 0.55rem;
}

.moderation-leer,
.moderation-keine-medien {
  font-size: 0.82rem;
  color: #6b7280;
  margin: 0;
}

.moderation-karte {
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
  background: transparent;
}

.moderation-karte-kopf {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.35rem;
  margin-bottom: 0;
}

.moderation-karte-kopf h4 {
  color: var(--color-green-dark);
  font-size: 0.88rem;
  margin: 0;
}

.status-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  white-space: nowrap;
}

.moderation-medien-liste {
  margin: 0.2rem 0 0;
  padding-left: 1rem;
  font-size: 0.74rem;
}

.moderation-buttons,
.moderation-aktionen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.moderation-buttons .karten-btn,
.moderation-aktionen .karten-btn {
  flex: 1 1 calc(50% - 0.2rem);
  min-width: 7.5rem;
  min-height: 2.1rem;
  padding: 0.4rem 0.55rem;
  font-size: 0.78rem;
}

.btn-freigeben {
  background: var(--color-green);
}

.verbots-popup-titel {
  color: #b91c1c;
}

.btn-loeschen {
  margin-top: 0.65rem;
  background: #b91c1c;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.4rem 0.65rem;
  font-size: 0.82rem;
  cursor: pointer;
}

.btn-loeschen:hover {
  background: #991b1b;
}

.infopoint-admin-aktionen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.btn-bearbeiten {
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 0.4rem 0.65rem;
  font-size: 0.82rem;
  cursor: pointer;
}

.btn-bearbeiten:hover {
  background: #1d4ed8;
}

.infopoint-admin-aktionen .btn-loeschen {
  margin-top: 0;
}

.gewaesser-admin-bereich {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px dashed #c4a882;
}

.gewaesser-admin-hinweis {
  margin-top: 0.55rem;
  font-size: 0.78rem;
  color: var(--color-brown, #6b5344);
  line-height: 1.4;
}

.gewaesser-admin-hinweis code {
  font-size: 0.76rem;
}

.btn-gewaesser-verschieben,
.btn-gewaesser-kopieren,
.btn-gewaesser-reset,
.btn-gewaesser-loeschen {
  display: block;
  width: 100%;
  margin-top: 0.45rem;
  border: none;
  border-radius: 6px;
  padding: 0.45rem 0.65rem;
  font-size: 0.82rem;
  cursor: pointer;
}

.btn-gewaesser-verschieben {
  background: var(--color-green, #2d5016);
  color: white;
}

.btn-gewaesser-verschieben:hover {
  background: #234012;
}

.btn-gewaesser-kopieren {
  background: #2563eb;
  color: white;
}

.btn-gewaesser-kopieren:hover {
  background: #1d4ed8;
}

.btn-gewaesser-reset {
  background: #6b7280;
  color: white;
}

.btn-gewaesser-reset:hover {
  background: #4b5563;
}

.btn-gewaesser-loeschen {
  background: #dc2626;
  color: white;
}

.btn-gewaesser-loeschen:hover,
.btn-gewaesser-loeschen:focus-visible {
  background: #b91c1c;
}

.gewaesser-loeschen-bereich {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(220, 38, 38, 0.22);
}

.btn-gewaesser-loeschen-prominent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  margin: 0;
  border: none;
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.28);
}

.btn-gewaesser-loeschen-prominent:hover,
.btn-gewaesser-loeschen-prominent:focus-visible {
  background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
  outline: none;
}

.gewaesser-loeschen-modal-inhalt .modal-info {
  color: #475569;
  line-height: 1.5;
}

.gewaesser-verschieben-modus,
.staustufen-verschieben-modus,
.staustufen-anlegen-modus,
.staustufen-ende-waehlen-modus,
.gewaesser-kopieren-modus,
.gewaesser-anlegen-modus,
.gewaesser-vorschlag-modus,
.verbotszone-anlegen-modus,
.verbotszone-verschieben-modus {
  cursor: crosshair;
}

.gewaesser-verschieben-modus .leaflet-marker-pane,
.gewaesser-verschieben-modus .leaflet-overlay-pane,
.gewaesser-kopieren-modus .leaflet-marker-pane,
.gewaesser-kopieren-modus .leaflet-overlay-pane,
.gewaesser-anlegen-modus .leaflet-marker-pane,
.gewaesser-anlegen-modus .leaflet-overlay-pane,
.gewaesser-vorschlag-modus .leaflet-marker-pane,
.gewaesser-vorschlag-modus .leaflet-overlay-pane,
.kommerziell-anlegen-modus .leaflet-marker-pane,
.kommerziell-anlegen-modus .leaflet-overlay-pane,
.staustufen-anlegen-modus .leaflet-marker-pane,
.staustufen-anlegen-modus .leaflet-overlay-pane,
.staustufen-verschieben-modus .leaflet-marker-pane,
.staustufen-verschieben-modus .leaflet-overlay-pane,
.verbotszone-anlegen-modus .leaflet-marker-pane,
.verbotszone-anlegen-modus .leaflet-overlay-pane,
.verbotszone-verschieben-modus .leaflet-marker-pane,
.verbotszone-verschieben-modus .leaflet-overlay-pane {
  pointer-events: none !important;
}

.gewaesser-verschieben-modus.leaflet-container,
.gewaesser-kopieren-modus.leaflet-container,
.gewaesser-anlegen-modus.leaflet-container,
.gewaesser-vorschlag-modus.leaflet-container,
.kommerziell-anlegen-modus.leaflet-container,
.gewaesser-verschieben-modus .leaflet-tile-pane,
.gewaesser-kopieren-modus .leaflet-tile-pane,
.gewaesser-anlegen-modus .leaflet-tile-pane,
.gewaesser-vorschlag-modus .leaflet-tile-pane,
.kommerziell-anlegen-modus .leaflet-tile-pane,
.gewaesser-verschieben-modus .leaflet-map-pane,
.gewaesser-kopieren-modus .leaflet-map-pane,
.gewaesser-anlegen-modus .leaflet-map-pane,
.gewaesser-vorschlag-modus .leaflet-map-pane,
.kommerziell-anlegen-modus .leaflet-map-pane {
  pointer-events: auto !important;
}

.verbots-popup-wrapper .leaflet-popup-content-wrapper {
  border-left: 4px solid #ff0000;
}

.karten-btn-abmelden {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.karten-btn-abmelden:hover {
  filter: brightness(1.05);
}

.tresor-leer-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 9rem;
  padding: 1rem;
  border-radius: 12px;
  background: linear-gradient(145deg, #f8fafc 0%, #ecfdf5 100%);
  border: 1px dashed rgba(15, 118, 110, 0.35);
  text-align: center;
}

.tresor-leer-icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 0.5rem;
}

.admin-hotspot-limits-panel,
.admin-partner-panel {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(15, 118, 110, 0.15);
}

.admin-hotspot-zeile {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.45rem;
}

.admin-hotspot-input {
  width: 4.5rem;
  padding: 0.35rem 0.45rem;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
}

.admin-partner-zeile {
  margin-bottom: 0.75rem;
  padding: 0.65rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 118, 110, 0.12);
}

.admin-partner-anleitung {
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
}

.luftdruck-trend-svg {
  width: 100%;
  height: 3.5rem;
  margin: 0.35rem 0 0.5rem;
  background: rgba(15, 118, 110, 0.06);
  border-radius: 8px;
}

.mondphasen-liste {
  margin: 0;
  padding-left: 1.1rem;
  line-height: 1.55;
}

.eigener-shop-banner-platzhalter {
  border-style: dashed;
}

.eigener-shop-platzhalter-hinweis {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  color: #64748b;
}

.btn-verbotszone-verschieben {
  display: block;
  width: 100%;
  margin: 0.35rem 0;
  padding: 0.45rem 0.65rem;
  border: none;
  border-radius: 8px;
  background: #0f766e;
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.karten-btn-gewaesser {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
}

.karten-btn-gewaesser.aktiv {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.35);
}

.karten-btn-gewaesser-vorschlag,
.karten-btn-gewaesser-vorschlag-admin {
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: #fff;
}

.karten-btn-gewaesser-vorschlag.aktiv,
.karten-btn-gewaesser-vorschlag-admin.aktiv {
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.35);
}

.gewaesser-vorschlag-modal-inhalt {
  max-height: 90vh;
  overflow-y: auto;
  width: min(640px, 100%);
}

.gewaesser-feld-gruppe {
  margin-bottom: 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #ece6d6;
}

.gewaesser-feld-gruppe:last-of-type {
  border-bottom: none;
}

.gewaesser-feld-gruppe-kopf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.gewaesser-feld-gruppe-kopf .formular-gruppe-titel,
.gewaesser-feld-gruppe-kopf > label:first-child {
  margin: 0;
}

.gewaesser-unbekannt-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}

.gewaesser-unbekannt-toggle input {
  width: auto;
  margin: 0;
}

.gewaesser-feld-gruppe.ist-unbekannt input:not(.gewaesser-unbekannt-checkbox),
.gewaesser-feld-gruppe.ist-unbekannt select,
.gewaesser-feld-gruppe.ist-unbekannt textarea,
.gewaesser-feld-gruppe.ist-unbekannt .gewaesser-fischarten-picker {
  opacity: 0.45;
}

body.gewaesser-vorschlag-offen,
body.karten-formular-offen {
  overflow: hidden;
}

body.gewaesser-vorschlag-offen #gewaesser-vorschlag-modal,
body.karten-formular-offen #kommerziell-modal,
body.karten-formular-offen #shop-modal,
body.karten-formular-offen #event-modal,
body.karten-formular-offen #adventure-modal,
body.karten-formular-offen #bootsverleih-modal,
body.karten-formular-offen #ws-fischereibereich-modal,
body.karten-formular-offen #ws-verbotszone-modal {
  z-index: 10300;
}

.waterstudio-wrap {
  position: relative;
  display: inline-flex;
}

.waterstudio-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.waterstudio-trigger.aktiv,
.waterstudio-trigger:hover {
  filter: brightness(1.03);
}

.waterstudio-chevron {
  font-size: 0.75rem;
  opacity: 0.85;
}

.waterstudio-dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  z-index: 12050;
  min-width: min(18rem, 92vw);
  background: #fff;
  border: 1px solid #c9bc9e;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
  padding: 0.35rem;
}

.waterstudio-dropdown-item {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  font: inherit;
  font-size: 0.88rem;
  color: #1f2937;
  cursor: pointer;
}

.waterstudio-dropdown-item:hover,
.waterstudio-dropdown-item:focus-visible {
  background: #ecfdf5;
  color: #065f46;
}

.waterstudio-korrektur-zeile {
  margin-top: 0.75rem;
}

.waterstudio-modus-gewaesser.leaflet-container,
.waterstudio-modus-kommerziell.leaflet-container,
.waterstudio-modus-shop.leaflet-container,
.waterstudio-modus-bootsverleih.leaflet-container,
.waterstudio-modus-adventure.leaflet-container,
.waterstudio-modus-event.leaflet-container,
.waterstudio-modus-fischereibereich.leaflet-container,
.waterstudio-modus-verbotszone.leaflet-container,
.waterstudio-modus-aktiv.leaflet-container {
  cursor: crosshair;
}

/* Waterstudio: Klicks müssen die Karte erreichen (nicht Marker/Polygone/Schatten) */
.waterstudio-modus-gewaesser .leaflet-overlay-pane,
.waterstudio-modus-gewaesser .leaflet-shadow-pane,
.waterstudio-modus-gewaesser .leaflet-marker-pane,
.waterstudio-modus-gewaesser .leaflet-tooltip-pane,
.waterstudio-modus-kommerziell .leaflet-overlay-pane,
.waterstudio-modus-kommerziell .leaflet-shadow-pane,
.waterstudio-modus-kommerziell .leaflet-marker-pane,
.waterstudio-modus-kommerziell .leaflet-tooltip-pane,
.waterstudio-modus-shop .leaflet-overlay-pane,
.waterstudio-modus-shop .leaflet-shadow-pane,
.waterstudio-modus-shop .leaflet-marker-pane,
.waterstudio-modus-shop .leaflet-tooltip-pane,
.waterstudio-modus-bootsverleih .leaflet-overlay-pane,
.waterstudio-modus-bootsverleih .leaflet-shadow-pane,
.waterstudio-modus-bootsverleih .leaflet-marker-pane,
.waterstudio-modus-bootsverleih .leaflet-tooltip-pane,
.waterstudio-modus-adventure .leaflet-overlay-pane,
.waterstudio-modus-adventure .leaflet-shadow-pane,
.waterstudio-modus-adventure .leaflet-marker-pane,
.waterstudio-modus-adventure .leaflet-tooltip-pane,
.waterstudio-modus-event .leaflet-overlay-pane,
.waterstudio-modus-event .leaflet-shadow-pane,
.waterstudio-modus-event .leaflet-marker-pane,
.waterstudio-modus-event .leaflet-tooltip-pane,
.waterstudio-modus-fischereibereich .leaflet-overlay-pane,
.waterstudio-modus-fischereibereich .leaflet-shadow-pane,
.waterstudio-modus-fischereibereich .leaflet-marker-pane,
.waterstudio-modus-fischereibereich .leaflet-tooltip-pane,
.waterstudio-modus-verbotszone .leaflet-overlay-pane,
.waterstudio-modus-verbotszone .leaflet-shadow-pane,
.waterstudio-modus-verbotszone .leaflet-marker-pane,
.waterstudio-modus-verbotszone .leaflet-tooltip-pane,
.waterstudio-modus-aktiv .leaflet-overlay-pane,
.waterstudio-modus-aktiv .leaflet-shadow-pane,
.waterstudio-modus-aktiv .leaflet-marker-pane,
.waterstudio-modus-aktiv .leaflet-tooltip-pane {
  pointer-events: none !important;
}

.waterstudio-modus-gewaesser.leaflet-container,
.waterstudio-modus-kommerziell.leaflet-container,
.waterstudio-modus-shop.leaflet-container,
.waterstudio-modus-bootsverleih.leaflet-container,
.waterstudio-modus-adventure.leaflet-container,
.waterstudio-modus-event.leaflet-container,
.waterstudio-modus-fischereibereich.leaflet-container,
.waterstudio-modus-verbotszone.leaflet-container,
.waterstudio-modus-aktiv.leaflet-container,
.waterstudio-modus-gewaesser .leaflet-tile-pane,
.waterstudio-modus-kommerziell .leaflet-tile-pane,
.waterstudio-modus-shop .leaflet-tile-pane,
.waterstudio-modus-bootsverleih .leaflet-tile-pane,
.waterstudio-modus-adventure .leaflet-tile-pane,
.waterstudio-modus-event .leaflet-tile-pane,
.waterstudio-modus-fischereibereich .leaflet-tile-pane,
.waterstudio-modus-verbotszone .leaflet-tile-pane,
.waterstudio-modus-aktiv .leaflet-tile-pane {
  pointer-events: auto !important;
}

.gewaesser-vorschlag-leitfaden {
  margin: 0 0 1rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
}

.gewaesser-vorschlag-leitfaden-titel {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
}

.gewaesser-vorschlag-leitfaden-liste {
  margin: 0;
  padding-left: 1.1rem;
  color: #115e59;
  font-size: 0.86rem;
  line-height: 1.45;
}

.gewaesser-vorschlag-text {
  white-space: pre-wrap;
  line-height: 1.45;
}

.gewaesser-vorschlag-text-leer {
  color: #64748b;
}

.gewaesser-vorschlag-buttons {
  flex-wrap: wrap;
}

/* Küsten-Warnungen & EU-Meldepflicht (RecFishing) */
.kuesten-warnung-box {
  margin: 0 0 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 10px;
  background: #fff7ed;
  border: 1px solid #fdba74;
  color: #7c2d12;
  font-size: 0.88rem;
  line-height: 1.45;
}

.kuesten-warnung-titel {
  margin: 0 0 0.35rem;
}

.spot-abstand-modal-inhalt {
  max-width: 28rem;
}

.spot-abstand-modal-inhalt .modal-info {
  margin-bottom: 1rem;
}

.kuesten-rechtlich-modal {
  max-width: 34rem;
}

.kuesten-rechtlich-text {
  margin: 0 0 1rem;
  line-height: 1.5;
  color: #334155;
}

.kuesten-meldepflicht-art {
  margin: 0 0 0.5rem;
  font-weight: 700;
  color: #b45309;
}

.kuesten-recfishing-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.kuesten-recfishing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: 0.82rem;
  line-height: 1.25;
  padding: 0.55rem 0.75rem;
}

.kuesten-recfishing-ios {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #fff;
}

.kuesten-recfishing-android {
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff;
}

.kuesten-btn-bestaetigen {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  color: #fff;
}

.kuesten-warnung-links {
  margin-top: 0.65rem;
}

.gewaesser-modal-inhalt {
  max-height: 90vh;
  overflow-y: auto;
}

.gewaesser-modal-position {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: #4b5563;
}

/* Fischarten-Icons (überall in der App) */
.fish-icon-thumbnail,
.fischart-icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  object-position: center;
  vertical-align: middle;
  flex-shrink: 0;
  image-rendering: auto;
  filter: drop-shadow(0 1px 2px rgba(15, 23, 42, 0.12));
}

.fischart-zeile .fish-icon-thumbnail,
.fischart-inline .fish-icon-thumbnail,
.zielfisch-tag .fish-icon-thumbnail,
.zielfisch-dropdown-option .fish-icon-thumbnail {
  width: 40px;
  height: 40px;
}

.fischart-zeile,
.fischart-liste-item,
.fischart-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  vertical-align: middle;
  max-width: 100%;
}

.fischart-name {
  line-height: 1.2;
}

.fischart-listen-eintrag {
  display: flex;
  align-items: center;
}

.gewaesser-popup-liste .fischart-listen-eintrag,
.spot-popup-liste .fischart-listen-eintrag,
.fang-statistik li {
  align-items: center;
  gap: 0.35rem;
}

.fang-statistik li {
  display: flex;
  flex-wrap: wrap;
}

.fischart-tabellen-zelle {
  gap: 0.35rem;
}

.gewaesser-popup-tabelle td:first-child {
  min-width: 8.5rem;
}

.schonzeit-checker-art-wrap {
  position: relative;
  z-index: 3;
}

.schonzeit-checker-art-suche {
  position: relative;
  z-index: 4;
}

.schonzeit-checker-art-suche .zielfisch-dropdown {
  z-index: 120;
}

.premium-dash-schonzeit {
  position: relative;
  z-index: 1;
}

.schonzeit-checker-art-icon {
  flex-shrink: 0;
}

.schonzeit-ergebnis-art {
  display: flex;
  margin-bottom: 0.35rem;
}

.favorit-fischarten {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.tagebuch-details .fischart-inline {
  margin-right: 0.15rem;
}

.gewaesser-kopie-counter-hinweis {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  margin: 0 0 1rem;
}

.gewaesser-info-point-hinweis {
  color: #1d4ed8;
}

.admin-panel-hinweis-klein {
  font-size: 0.82rem;
  margin-top: 0.35rem;
  line-height: 1.45;
}

.fischerkarte-btn-erlaubnis {
  background: linear-gradient(135deg, #059669, #047857);
}

.modal-buttons-staustufe {
  flex-wrap: wrap;
  gap: 0.5rem;
}

.karten-btn-staustufe {
  background: linear-gradient(135deg, #d97706, #b45309);
  color: #fff;
}

.karten-btn-staustufe.aktiv {
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.35);
}

.staustufe-zeichnen-overlay {
  position: absolute;
  z-index: 1000;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  pointer-events: auto;
}

.staustufe-zeichnen-overlay .karten-btn {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.staustufe-admin-popup-wrapper .leaflet-popup-content-wrapper {
  border-radius: 12px;
}

.staustufe-admin-popup h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: #92400e;
}

.staustufe-admin-koordinaten {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  color: #4b5563;
}

.btn-staustufe-verschieben,
.btn-staustufe-bearbeiten,
.btn-staustufe-loeschen,
.btn-staustufe-reset {
  display: block;
  width: 100%;
  margin-top: 0.45rem;
  border: none;
  border-radius: 6px;
  padding: 0.45rem 0.65rem;
  font-size: 0.82rem;
  cursor: pointer;
}

.btn-staustufe-bearbeiten {
  background: #2563eb;
  color: #fff;
}

.btn-staustufe-bearbeiten:hover {
  background: #1d4ed8;
}

.btn-staustufe-loeschen {
  background: #b91c1c;
  color: #fff;
}

.btn-staustufe-loeschen:hover {
  background: #991b1b;
}

.btn-staustufe-verschieben {
  background: #d97706;
  color: white;
}

.btn-staustufe-verschieben:hover {
  background: #b45309;
}

.btn-staustufe-reset {
  background: #6b7280;
  color: white;
}

.btn-staustufe-reset:hover {
  background: #4b5563;
}

.detail-popup h3 {
  color: #1d4ed8;
  margin-bottom: 0.35rem;
}

/* ---- Gewässer-Marker (Wellen-Icon) auf der Karte ---- */
.gewaesser-marker-leaflet {
  background: transparent;
  border: none;
}

.gewaesser-marker-pin {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #3b82f6 0%, #1d4ed8 100%);
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.45);
  color: #ffffff;
}

.gewaesser-marker-welle {
  width: 24px;
  height: 24px;
  display: block;
}

/* ---- Kommerzielles Gewässer (Gelbes Wellen-Icon) ---- */
.kommerziell-marker-leaflet {
  background: transparent;
  border: none;
}

.kommerziell-marker-pin {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #fde047 0%, #facc15 55%, #eab308 100%);
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(234, 179, 8, 0.55);
  color: #422006;
  cursor: grab;
}

.kommerziell-marker-pin:active {
  cursor: grabbing;
}

.kommerziell-marker-welle {
  width: 24px;
  height: 24px;
  display: block;
}

.kommerziell-anlegen-modus {
  cursor: crosshair;
}

.kommerziell-popup-badge {
  display: inline-block;
  margin: 0 0 0.35rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fef3c7, #fdba74);
  color: #9a3412;
  font-size: 0.75rem;
  font-weight: 700;
}

.kommerziell-admin-bereich {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px dashed #fdba74;
}

.kommerziell-admin-hinweis {
  font-size: 0.82rem;
  color: #9a3412;
  margin: 0 0 0.5rem;
}

.btn-kommerziell-bearbeiten,
.btn-kommerziell-loeschen {
  display: inline-block;
  margin: 0.25rem 0.35rem 0.25rem 0;
}

.karten-btn-kommerziell {
  background: linear-gradient(135deg, #fbbf24 0%, #ea580c 100%);
  color: #fff;
  border: 1px solid #c2410c;
}

.karten-btn-kommerziell.aktiv,
.karten-btn-kommerziell:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #c2410c 100%);
}

.kommerziell-modal-inhalt {
  max-width: 520px;
}

.karten-legende {
  display: none;
}

.karten-optionen-zeile {
  margin: 0.55rem 0 0.75rem;
}

.karten-btn-optionen {
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  color: #fff;
  font-weight: 700;
}

.karten-optionen-modal-inhalt {
  max-width: 420px;
  max-height: min(85vh, 640px);
  overflow: auto;
}

.karten-optionen-liste {
  list-style: none;
  margin: 0.75rem 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.karten-optionen-zeile-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.karten-optionen-zeile-item.karten-optionen-gesperrt {
  opacity: 0.55;
}

.karten-optionen-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
}

.karten-optionen-premium {
  font-style: normal;
  font-weight: 600;
  font-size: 0.78rem;
  color: #b45309;
  margin-left: 0.25rem;
}

.karten-optionen-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 28px;
  flex-shrink: 0;
}

.karten-optionen-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.karten-optionen-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #cbd5e1;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.karten-optionen-slider::before {
  content: "";
  position: absolute;
  height: 22px;
  width: 22px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.karten-optionen-switch input:checked + .karten-optionen-slider {
  background: #2563eb;
}

.karten-optionen-switch input:checked + .karten-optionen-slider::before {
  transform: translateX(20px);
}

.karten-optionen-switch input:disabled + .karten-optionen-slider {
  cursor: not-allowed;
  background: #e2e8f0;
}

.karten-legende-eintrag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.karten-legende-symbol {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}

.karten-legende-gewaesser {
  background: linear-gradient(145deg, #3b82f6, #1d4ed8);
}

.karten-legende-kommerziell {
  background: linear-gradient(145deg, #fde047, #eab308);
}

.karten-legende-staustufe {
  background: #fbbf24;
  border-radius: 4px;
  width: 14px;
  height: 14px;
}

.karten-legende-verbotszone {
  background: #ef4444;
  border-color: #b91c1c;
  border-radius: 4px;
  width: 22px;
  height: 6px;
}

.verbotszonen-karten-control {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  margin-top: 10px !important;
}

.verbotszonen-karten-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 0.35rem;
  width: auto !important;
  height: auto !important;
  padding: 0.55rem 0.75rem !important;
  border: 2px solid #7f1d1d !important;
  border-radius: 10px !important;
  background: #dc2626 !important;
  color: #fff !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(127, 29, 29, 0.35);
}

.verbotszonen-karten-btn:hover,
.verbotszonen-karten-btn:focus-visible {
  background: #b91c1c !important;
}

.karten-legende-verbotszonen-btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(185, 28, 28, 0.45);
  text-underline-offset: 2px;
}

.karten-legende-verbotszonen-btn:hover,
.karten-legende-verbotszonen-btn:focus-visible {
  color: #b91c1c;
  text-decoration-color: #b91c1c;
}

.karten-legende-anzahl {
  font-weight: 700;
  color: #b91c1c;
}

.verbotszone-leaflet-marker {
  background: transparent !important;
  border: none !important;
}

.verbotszone-marker-punkt {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #dc2626;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.verbotszone-marker-kreuz {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  margin-top: -1px;
}

.gewaesser-fischarten-picker {
  margin: 0.35rem 0 0.85rem;
}

.gewaesser-fischarten-auswahl {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.45rem 0;
  min-height: 1.5rem;
}

.gewaesser-fischarten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
  gap: 0.45rem;
  max-height: 220px;
  overflow-y: auto;
  padding: 0.35rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
}

.gewaesser-fischarten-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.45rem 0.35rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-size: 0.72rem;
  line-height: 1.2;
}

.gewaesser-fischarten-chip.ist-gewaehlt {
  border-color: #2563eb;
  background: #eff6ff;
  box-shadow: inset 0 0 0 1px #2563eb;
}

.gewaesser-fischarten-chip-label {
  text-align: center;
}

.gewaesser-fischarten-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  font-size: 0.78rem;
}

.gewaesser-fischarten-picker-leer {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0.25rem 0;
}

.gewaesser-fischarten-icon-leiste {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.25rem 0 0.65rem;
}

.gewaesser-fischarten-icon-kachel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.gewaesser-fischarten-liste-kompakt {
  margin-top: 0.35rem;
}

/* Köder-Picker (Fang melden & Spot-Formular) */
.koeder-picker-wrap {
  margin: 0.35rem 0 0.85rem;
}

.koeder-picker {
  margin: 0.25rem 0 0.5rem;
}

.koeder-picker-liste {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-height: min(52vh, 320px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0.4rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: y proximity;
}

.koeder-picker-chip {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  min-height: 56px;
  padding: 0.55rem 0.65rem;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  scroll-snap-align: start;
  touch-action: manipulation;
}

.koeder-picker-chip.ist-gewaehlt {
  border-color: #2563eb;
  background: #eff6ff;
  box-shadow: inset 0 0 0 1px #2563eb;
}

.koeder-picker-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.35);
}

.koeder-picker-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}

.koeder-picker-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.koeder-picker-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
}

.koeder-picker-sub {
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.2;
}

.koeder-picker-sonstiges-wrap {
  margin-top: 0.55rem;
}

.koeder-picker-sonstiges-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 0.3rem;
}

.koeder-picker-sonstiges-input {
  width: 100%;
  min-height: 44px;
  padding: 0.55rem 0.65rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 1rem;
}

.fang-koeder-picker-titel {
  margin: 0.65rem 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
}

.fang-melden-box .koeder-picker-liste {
  max-height: min(42vh, 260px);
}

@media (max-width: 480px) {
  .koeder-picker-chip {
    min-height: 60px;
    padding: 0.65rem 0.7rem;
  }

  .koeder-picker-icon {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }
}

.spot-top-koeder {
  margin: 0.65rem 0 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid #fdba74;
}

.spot-top-koeder-leer {
  background: #f8fafc;
  border-color: #e2e8f0;
}

.spot-top-koeder-titel {
  margin: 0 0 0.45rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: #9a3412;
}

.spot-top-koeder-leer .spot-top-koeder-titel {
  color: #475569;
}

.spot-top-koeder-inhalt {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.spot-top-koeder-name {
  font-size: 1rem;
  font-weight: 700;
  color: #7c2d12;
}

.spot-top-koeder-hinweis {
  margin: 0;
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.4;
}

.koeder-top-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(251, 146, 60, 0.35);
}

.koeder-top-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.koeder-top-icon-fallback {
  font-size: 1.2rem;
  line-height: 1;
}

.spot-top-koeder-split {
  display: grid;
  gap: 0.55rem;
}

.spot-top-koeder-kategorie {
  margin: 0;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(251, 146, 60, 0.35);
}

.spot-top-koeder-fried {
  border-color: rgba(34, 197, 94, 0.45);
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.spot-top-koeder-fried .spot-top-koeder-titel {
  color: #166534;
}

.spot-top-koeder-raub {
  border-color: rgba(239, 68, 68, 0.4);
  background: linear-gradient(135deg, #fef2f2 0%, #fff1f2 100%);
}

.spot-top-koeder-raub .spot-top-koeder-titel {
  color: #991b1b;
}

.global-top-koeder-start,
.global-top-koeder-profil {
  margin: 0.75rem 0 1rem;
}

.global-top-koeder-wrap {
  display: grid;
  gap: 0.65rem;
}

.global-top-koeder-badge {
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.global-top-koeder-fried {
  border-color: rgba(34, 197, 94, 0.45);
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.global-top-koeder-raub {
  border-color: rgba(239, 68, 68, 0.4);
  background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}

.global-top-koeder-badge-text {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.global-top-koeder-name {
  font-weight: 700;
}

.global-top-koeder-unbekannt {
  font-weight: 500;
  color: #64748b;
}

.global-top-koeder-wrap-mit-aktion {
  grid-template-columns: 1fr;
}

.global-top-koeder-badge-mit-aktion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.global-top-koeder-badge-inhalt {
  flex: 1 1 12rem;
  min-width: 0;
}

.global-top-koeder-badge-mit-aktion .btn-koeder-spot-filter {
  width: auto;
  flex: 0 1 auto;
  max-width: 100%;
  font-size: 0.8rem;
  padding: 0.5rem 0.75rem;
  white-space: normal;
  text-align: center;
}

@media (min-width: 640px) {
  .global-top-koeder-wrap:not(.global-top-koeder-wrap-mit-aktion) {
    grid-template-columns: 1fr 1fr;
  }
}

.gewaesser-quick-info {
  margin: 0.65rem 0 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fcd34d;
}

.gewaesser-quick-info-text {
  font-size: 0.92rem;
  line-height: 1.45;
  color: #78350f;
}

.gewaesser-regelungen-link-wrap {
  margin: 0.65rem 0 0.85rem;
}

.gewaesser-regelungen-btn {
  display: inline-block;
  text-decoration: none;
}

/* ---- Shop-Marker auf der Karte ---- */
.shop-marker-leaflet {
  background: transparent;
  border: none;
}

.leaflet-div-icon.shop-marker-leaflet {
  width: 38px !important;
  height: 42px !important;
  margin-left: -19px !important;
  margin-top: -42px !important;
}

.shop-marker-pin {
  width: 38px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  border: 3px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 3px 12px rgba(91, 33, 182, 0.45);
}

.shop-marker-symbol {
  transform: rotate(45deg);
  font-size: 1.05rem;
  line-height: 1;
}

.shop-popup-wrapper .leaflet-popup-content-wrapper {
  border-radius: 10px;
  padding: 0;
}

.shop-popup-wrapper .leaflet-popup-content {
  margin: 0;
}

.shop-popup {
  padding: 0.85rem 1rem 1rem;
  font-size: 0.9rem;
}

.shop-popup-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #ede9fe;
  color: #5b21b6;
  border-radius: 999px;
  padding: 0.15rem 0.45rem;
  margin-bottom: 0.4rem;
}

.shop-popup-titel {
  color: #5b21b6;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.shop-popup-adresse {
  font-size: 0.86rem;
  margin-bottom: 0.45rem;
}

.shop-popup-abschnitt {
  color: var(--color-green-dark);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.shop-popup-services {
  margin: 0 0 0.55rem 1.1rem;
  font-size: 0.86rem;
}

.shop-popup-link {
  display: inline-block;
  background: #7c3aed;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0.35rem;
}

.shop-popup-link:hover {
  background: #6d28d9;
  color: #ffffff;
}

/* ---- Event-Marker auf der Karte (silber) ---- */
.event-marker-leaflet {
  background: transparent;
  border: none;
}

.leaflet-div-icon.event-marker-leaflet {
  width: 38px !important;
  height: 42px !important;
  margin-left: -19px !important;
  margin-top: -42px !important;
}

.event-marker-pin {
  width: 38px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e5e7eb, #9ca3af);
  border: 3px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 3px 12px rgba(107, 114, 128, 0.45);
}

.event-marker-symbol {
  transform: rotate(45deg);
  font-size: 1.05rem;
  line-height: 1;
}

.event-popup-wrapper .leaflet-popup-content-wrapper {
  border-radius: 10px;
  padding: 0;
}

.event-popup-wrapper .leaflet-popup-content {
  margin: 0;
}

.event-popup {
  padding: 0.85rem 1rem 1rem;
  font-size: 0.9rem;
}

.event-popup-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #f3f4f6;
  color: #4b5563;
  border-radius: 999px;
  padding: 0.15rem 0.45rem;
  margin-bottom: 0.4rem;
}

.event-popup-titel {
  color: #374151;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.event-popup-info {
  font-size: 0.86rem;
  margin-bottom: 0.55rem;
  line-height: 1.45;
}

.event-popup-link {
  display: inline-block;
  background: #9ca3af;
  color: #111827;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0.35rem;
}

.event-popup-link:hover {
  background: #6b7280;
  color: #ffffff;
}

/* ---- Fishing-Adventure-Marker auf der Karte (türkis) ---- */
.adventure-marker-leaflet {
  background: transparent;
  border: none;
}

.leaflet-div-icon.adventure-marker-leaflet {
  width: 38px !important;
  height: 42px !important;
  margin-left: -19px !important;
  margin-top: -42px !important;
}

.adventure-marker-pin {
  width: 38px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #5eead4, #0d9488);
  border: 3px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 3px 12px rgba(13, 148, 136, 0.45);
}

.adventure-marker-symbol {
  transform: rotate(45deg);
  font-size: 1.05rem;
  line-height: 1;
}

.adventure-popup-wrapper .leaflet-popup-content-wrapper {
  border-radius: 10px;
  padding: 0;
}

.adventure-popup-wrapper .leaflet-popup-content {
  margin: 0;
}

.adventure-popup {
  padding: 0.85rem 1rem 1rem;
  font-size: 0.9rem;
}

.adventure-popup-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #ccfbf1;
  color: #0f766e;
  border-radius: 999px;
  padding: 0.15rem 0.45rem;
  margin-bottom: 0.4rem;
}

.adventure-popup-titel {
  color: #115e59;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.adventure-popup-abschnitt {
  color: #0f766e;
  font-weight: 600;
  font-size: 0.78rem;
  margin: 0.35rem 0 0.15rem;
}

.adventure-popup-info,
.adventure-popup-preise {
  font-size: 0.86rem;
  margin-bottom: 0.35rem;
  line-height: 1.45;
}

.adventure-popup-link {
  display: inline-block;
  background: #0d9488;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
  margin-top: 0.25rem;
  margin-bottom: 0.35rem;
}

.adventure-popup-link:hover {
  background: #0f766e;
  color: #ffffff;
}

/* ---- Bootsverleih-Marker auf der Karte (türkis, Boot) ---- */
.bootsverleih-marker-leaflet {
  background: transparent;
  border: none;
}

.leaflet-div-icon.bootsverleih-marker-leaflet {
  width: 38px !important;
  height: 42px !important;
  margin-left: -19px !important;
  margin-top: -42px !important;
}

.bootsverleih-marker-pin {
  width: 38px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #5eead4, #0d9488);
  border: 3px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 3px 12px rgba(13, 148, 136, 0.45);
}

.bootsverleih-marker-symbol {
  transform: rotate(45deg);
  font-size: 1.05rem;
  line-height: 1;
}

.bootsverleih-popup-wrapper .leaflet-popup-content-wrapper {
  border-radius: 10px;
  padding: 0;
}

.bootsverleih-popup-wrapper .leaflet-popup-content {
  margin: 0;
}

.bootsverleih-popup {
  padding: 0.85rem 1rem 1rem;
  font-size: 0.9rem;
}

.bootsverleih-popup-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #ccfbf1;
  color: #0f766e;
  border-radius: 999px;
  padding: 0.15rem 0.45rem;
  margin-bottom: 0.4rem;
}

.bootsverleih-popup-titel {
  color: #115e59;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.bootsverleih-popup-abschnitt {
  color: #0f766e;
  font-weight: 600;
  font-size: 0.78rem;
  margin: 0.35rem 0 0.15rem;
}

.bootsverleih-popup-info,
.bootsverleih-popup-preise {
  font-size: 0.86rem;
  margin-bottom: 0.35rem;
  line-height: 1.45;
}

.bootsverleih-popup-link {
  display: inline-block;
  background: #0d9488;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
  margin-top: 0.25rem;
  margin-bottom: 0.35rem;
}

.bootsverleih-popup-link:hover {
  background: #0f766e;
  color: #ffffff;
}

.map-karte-wrapper {
  position: relative;
  margin: 0;
}

.fisch-filter-leiste {
  position: absolute;
  top: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  width: calc(100% - 1rem);
  max-width: 640px;
  pointer-events: none;
}

.karten-suche-leiste {
  position: absolute;
  top: 0.55rem;
  left: 0.5rem;
  z-index: 502;
  width: min(calc(100% - 1rem), 320px);
  pointer-events: none;
}

.karten-suche-formular {
  margin: 0;
}

.karten-suche-inner {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(45, 80, 22, 0.22);
  border-radius: 999px;
  padding: 0.28rem 0.45rem 0.28rem 0.65rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(4px);
}

.karten-suche-icon {
  font-size: 0.9rem;
  line-height: 1;
  opacity: 0.75;
}

.karten-suche-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.84rem;
  color: var(--color-green-dark);
  outline: none;
}

.karten-suche-input::placeholder {
  color: rgba(45, 80, 22, 0.55);
}

.karten-suche-leeren {
  border: none;
  background: rgba(45, 80, 22, 0.1);
  color: var(--color-green-dark);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

.karten-suche-leeren:hover {
  background: rgba(45, 80, 22, 0.18);
}

.karten-suche-ergebnisse {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(45, 80, 22, 0.18);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  max-height: 240px;
  overflow-y: auto;
}

.karten-suche-ergebnis {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(45, 80, 22, 0.08);
  background: transparent;
  text-align: left;
  padding: 0.55rem 0.7rem;
  cursor: pointer;
  font-family: inherit;
}

.karten-suche-ergebnisse li:last-child .karten-suche-ergebnis {
  border-bottom: none;
}

.karten-suche-ergebnis:hover,
.karten-suche-ergebnis:focus {
  background: rgba(45, 80, 22, 0.08);
  outline: none;
}

.karten-suche-ergebnis-titel {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-green-dark);
  line-height: 1.3;
}

.karten-suche-ergebnis-untertitel {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.72rem;
  color: #4b5563;
  line-height: 1.35;
}

.karten-suche-status {
  margin: 0.25rem 0 0;
  padding: 0.25rem 0.45rem;
  font-size: 0.72rem;
  color: #4b5563;
  pointer-events: none;
}

.karten-suche-status-fehler {
  color: #b91c1c;
}

.karten-suche-marker-leaflet {
  background: transparent;
  border: none;
}

.leaflet-div-icon.karten-suche-marker-leaflet {
  width: 34px !important;
  height: 38px !important;
  margin-left: -17px !important;
  margin-top: -38px !important;
}

.karten-suche-marker-pin {
  width: 34px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fde68a, #d97706);
  border: 3px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 3px 12px rgba(217, 119, 6, 0.45);
}

.karten-suche-marker-symbol {
  transform: rotate(45deg);
  font-size: 0.95rem;
  line-height: 1;
}

.karten-suche-popup-wrapper .leaflet-popup-content-wrapper {
  border-radius: 10px;
}

.karten-suche-popup {
  font-size: 0.86rem;
  line-height: 1.4;
}

.fisch-filter-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  pointer-events: auto;
}

.fisch-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid rgba(45, 80, 22, 0.25);
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-green-dark);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(4px);
}

.fisch-filter-pill.aktiv {
  background: var(--color-green-dark);
  color: #ffffff;
  border-color: var(--color-green-dark);
}

.fisch-filter-pill.fisch-filter-gesperrt {
  opacity: 0.72;
}

.fisch-filter-hinweis {
  font-size: 0.65rem;
  text-align: center;
  color: #78350f;
  margin-top: 0.25rem;
  pointer-events: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.offline-hinweis {
  position: absolute;
  bottom: 0.45rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  background: rgba(30, 64, 175, 0.92);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  max-width: calc(100% - 1rem);
  text-align: center;
}

.fang-sync-hinweis {
  position: absolute;
  bottom: 2.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  background: rgba(120, 53, 15, 0.92);
  color: #fffbeb;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  max-width: calc(100% - 1rem);
  text-align: center;
  pointer-events: none;
}

.mitglied-nahe-hinweis {
  margin: 0.5rem 0 0.75rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius);
  background: rgba(14, 116, 144, 0.1);
  color: #0e7490;
  font-size: 0.85rem;
  line-height: 1.4;
}

.map-container {
  width: 100%;
  height: clamp(360px, 58vh, 620px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 3px solid var(--color-white);
  overflow: hidden;
}

@media (max-width: 640px) {
  .map-container.map-leaflet-popup-offen {
    z-index: 510;
  }
}

.map-karte-wrapper.map-karte-info-offen .fisch-filter-leiste,
.map-karte-wrapper.map-karte-info-offen .karten-suche-leiste,
.map-karte-wrapper.map-karte-info-offen .offline-hinweis,
.map-karte-wrapper.map-karte-info-offen .fang-sync-hinweis {
  z-index: 1;
  pointer-events: none;
}

/* ---- Info-Fenster für Gewässer (Admin-Inhalte) ---- */
.gewaesser-popup-wrapper .leaflet-popup-content-wrapper {
  border-radius: 10px;
  padding: 0;
}

.gewaesser-popup-wrapper .leaflet-popup-content {
  margin: 0;
  line-height: 1.45;
}

.gewaesser-popup {
  padding: 0.85rem 1rem 1rem;
  font-size: 0.9rem;
  color: var(--color-text);
  max-height: 70vh;
  overflow-y: auto;
}

.gewaesser-popup-titel {
  color: var(--color-green-dark);
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--color-green-light);
}

.gewaesser-popup-zeile {
  margin-bottom: 0.5rem;
}

.gewaesser-popup-abschnitt {
  margin-top: 0.65rem;
  margin-bottom: 0.25rem;
  color: var(--color-green-dark);
}

.gewaesser-popup-liste {
  margin-left: 1.1rem;
  margin-bottom: 0.25rem;
}

.gewaesser-popup-tabelle {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin-top: 0.25rem;
}

.gewaesser-popup-tabelle th,
.gewaesser-popup-tabelle td {
  border: 1px solid #d4cbb8;
  padding: 0.35rem 0.4rem;
  text-align: left;
  vertical-align: top;
}

.gewaesser-popup-tabelle th {
  background-color: var(--color-cream);
  color: var(--color-green-dark);
  font-weight: 600;
}

.gewaesser-popup-link {
  color: var(--color-green);
  font-weight: 600;
  text-decoration: underline;
}

.gewaesser-popup-link:hover {
  color: var(--color-green-dark);
}

.fischerkarte-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.25rem;
  margin-bottom: 0.15rem;
}

.fischerkarte-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  color: #ffffff;
  line-height: 1.3;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.fischerkarte-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

.fischerkarte-btn-online {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.fischerkarte-btn-stationaer {
  background: linear-gradient(135deg, #059669, #047857);
}

.fischerkarte-icon {
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}

.fischerkarte-hinweis {
  font-size: 0.78rem;
  color: var(--color-brown);
  margin-top: 0.15rem;
  margin-bottom: 0.25rem;
}

/* ---- Schonzeiten-Grafik im Gewässer-Popup ---- */
.schonzeiten-regelungen {
  margin: 0.5rem 0 0.65rem;
  padding: 0.65rem;
  background: #f8faf5;
  border: 1px solid #c9ddb8;
  border-radius: 10px;
}

.gewaesser-abschnitt-regelungen {
  margin-top: 0;
  margin-bottom: 0.45rem;
  color: var(--color-green-dark);
  font-size: 0.95rem;
}

.schonzeiten-grafik-text {
  font-size: 0.84rem;
  color: var(--color-brown);
  margin-bottom: 0.45rem;
}

.schonzeiten-bild-link {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #d4cbb8;
  background: #ffffff;
}

.schonzeiten-bild {
  width: 100%;
  height: auto;
  max-height: 55vh;
  object-fit: contain;
  display: block;
  background: #ffffff;
}

.schonzeiten-zoom-hinweis {
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
  margin-top: 0.35rem;
  margin-bottom: 0.15rem;
}

.schonzeiten-pdf-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #374151, #1f2937);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  text-align: center;
}

.schonzeiten-pdf-btn:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #1f2937, #111827);
}

.schonzeiten-pdf-icon {
  font-size: 1.15rem;
  line-height: 1;
}

.gewaesser-schonzeiten-kurz {
  margin-top: 0.65rem;
  margin-bottom: 0.25rem;
  font-size: 0.84rem;
}

.gewaesser-shop-liste {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
}

.gewaesser-shop-karte {
  background: #f8faf5;
  border: 1px solid #c9ddb8;
  border-radius: 8px;
  padding: 0.55rem 0.65rem;
  margin-bottom: 0.5rem;
}

.gewaesser-shop-karte:last-child {
  margin-bottom: 0;
}

.gewaesser-shop-name {
  color: var(--color-green-dark);
  margin-bottom: 0.15rem;
}

.gewaesser-shop-adresse {
  font-size: 0.84rem;
  color: var(--color-brown);
  margin-bottom: 0.2rem;
}

.gewaesser-shop-hinweis {
  font-size: 0.84rem;
  margin-bottom: 0.35rem;
}

.gewaesser-shop-link {
  display: inline-block;
  font-size: 0.84rem;
}

/* ---- Mosel: Fischereikarten Staustufen-Abschnitte ---- */
.fischereikarte-bereich-popup-wrapper .leaflet-popup-content-wrapper {
  border-radius: var(--radius);
  border: 2px solid #86efac;
}

.fischereikarte-bereich-popup {
  font-size: 0.88rem;
  line-height: 1.45;
}

.fischereikarte-bereich-badge {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.fischereikarte-bereich-popup h3 {
  margin: 0 0 0.45rem;
  color: var(--color-green-dark);
  font-size: 1rem;
}

.fischereikarte-bereich-grenzen {
  margin: 0 0 0.5rem;
  padding: 0.45rem 0.55rem;
  background: #f0fdf4;
  border-radius: 8px;
  font-size: 0.82rem;
}

.fischereikarte-bereich-hinweis {
  margin: 0 0 0.65rem;
  color: #374151;
  font-size: 0.82rem;
}

.staustufe-tooltip {
  font-size: 0.75rem;
  font-weight: 600;
  color: #92400e;
  border: 1px solid #fbbf24;
  background: #fffbeb;
  border-radius: 6px;
  padding: 0.15rem 0.4rem;
}

/* ---- App-Ansichten & untere Navigation ---- */
.app-view {
  display: none;
}

.app-view.aktiv {
  display: block;
}

.app-seite {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 1rem 1.5rem;
}

.app-seite-kopf {
  text-align: center;
  margin-bottom: 1.25rem;
}

.app-seite-kopf h2 {
  color: var(--color-green-dark);
  font-size: clamp(1.3rem, 4vw, 1.8rem);
}

.app-seite-kopf p {
  color: var(--color-brown);
  font-size: 0.92rem;
}

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9500;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #ffffff;
  border-top: 1px solid #d4cbb8;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.08);
  padding: 0.35rem 0.15rem calc(0.35rem + env(safe-area-inset-bottom, 0px));
}

.bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  border: none;
  background: transparent;
  color: #6b7280;
  font-size: 0.56rem;
  font-weight: 600;
  line-height: 1.1;
  padding: 0.3rem 0.08rem;
  cursor: pointer;
  border-radius: 10px;
  min-height: 3.4rem;
}

.bottom-nav-btn .nav-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.bottom-nav-btn .nav-label {
  text-align: center;
}

.bottom-nav-btn.aktiv {
  color: var(--color-green-dark);
  background: #eef5e8;
}

.bottom-nav-btn.aktiv .nav-label {
  color: var(--color-green-dark);
}

/* ---- Profil & Fangtagebuch ---- */
.profil-bereich {
  margin-bottom: 1.25rem;
}

.mein-fc-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.15rem;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  position: static;
  box-shadow: none;
}

.mein-fc-nav-btn.akademie-kategorie-karte {
  appearance: none;
  width: 100%;
  min-height: 8.2rem;
}

.mein-fc-nav-btn.akademie-kategorie-karte.ist-aktiv {
  border-color: #0f766e;
  background: #ecfdf5;
  box-shadow: inset 0 0 0 1px #0f766e;
}

.mein-fc-nav-btn.akademie-kategorie-karte.ist-aktiv h4 {
  color: #0f766e;
}

.mein-fc-sektion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
  padding: 1rem 0.9rem 1.1rem;
  background: #fff;
  border: 1px solid #d7e0d4;
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
  scroll-margin-top: 1rem;
}

@media (max-width: 420px) {
  .mein-fc-nav {
    grid-template-columns: 1fr;
  }
}

.mein-fc-sektion-kopf {
  margin: 0 0 0.15rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid #e4ebe2;
}

.mein-fc-sektion-titel {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
  color: #163825;
}

.mein-fc-sektion-info {
  margin: 0.35rem 0 0;
  font-size: 0.86rem;
  color: #5b6b60;
}

.mein-fc-untertitel {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  line-height: 1.3;
  color: #1f3d2a;
}

.profil-dashboard-sektion {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.75rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #e8e0d0;
}

.profil-dashboard-sektion.mein-fc-sektion {
  border-bottom: 1px solid #d7e0d4;
  margin-bottom: 1.35rem;
  padding-bottom: 1.1rem;
}

.profil-dashboard-sektion:last-child,
.profil-dashboard-sektion.mein-fc-sektion:last-of-type {
  border-bottom: 1px solid #d7e0d4;
  margin-bottom: 1.35rem;
}

.angeltrip-bereich {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.angeltrip-formular {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: #fff;
  border: 1px solid #d7e0d4;
  border-radius: 12px;
  padding: 0.9rem 0.95rem;
}

.angeltrip-formular label {
  font-size: 0.84rem;
  font-weight: 650;
  color: #374151;
}

.angeltrip-formular input,
.angeltrip-formular textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  font: inherit;
  background: #fff;
}

.angeltrip-zeit-reihe {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0.55rem;
}

@media (max-width: 640px) {
  .angeltrip-zeit-reihe {
    grid-template-columns: 1fr;
  }
}

.angeltrip-ort-box {
  border: 1px dashed #9bbb8e;
  border-radius: 12px;
  padding: 0.75rem;
  background: #f7faf5;
}

.angeltrip-ort-text {
  margin: 0 0 0.55rem;
  font-weight: 650;
  color: #1f2937;
}

.angeltrip-ort-buttons,
.angeltrip-ort-aktionen,
.angeltrip-formular-aktionen,
.angeltrip-karte-aktionen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.angeltrip-bedingungen {
  border-radius: 12px;
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  padding: 0.75rem;
}

.angeltrip-bedingungen-teaser {
  border-radius: 12px;
  border: 1px solid #fde68a;
  background: #fffbeb;
  padding: 0.75rem;
}

.angeltrip-bedingungen-teaser p {
  margin: 0 0 0.55rem;
  font-size: 0.88rem;
  color: #374151;
}

.angeltrip-bedingungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
  gap: 0.55rem;
}

.angeltrip-bedingung {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.angeltrip-bedingung-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #6b7280;
}

.angeltrip-bissindex {
  color: #b45309;
  font-size: 1.05rem;
}

.angeltrip-hinweis {
  margin: 0.45rem 0 0;
  font-size: 0.8rem;
  color: #6b7280;
}

.angeltrip-liste {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.angeltrip-karte {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  padding: 0.75rem 0.85rem;
}

.angeltrip-karte-kopf {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem;
  margin-bottom: 0.25rem;
}

.angeltrip-karte-ort {
  margin: 0 0 0.55rem;
  color: #4b5563;
  font-size: 0.9rem;
}

.angeltrip-checkliste-bereich {
  margin-top: 0.35rem;
  padding-top: 0.55rem;
  border-top: 1px solid #e5e7eb;
}

.angeltrip-checkliste-start,
.angeltrip-checkliste-panel {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.angeltrip-checkliste-liste {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.angeltrip-checkliste-punkt {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
}

.angeltrip-checkliste-punkt.ist-erledigt {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.angeltrip-checkliste-punkt.ist-erledigt .angeltrip-checkliste-text {
  text-decoration: line-through;
  color: #6b7280;
}

.angeltrip-checkliste-label {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  flex: 1;
  margin: 0;
  font-weight: 500;
  cursor: pointer;
}

.angeltrip-checkliste-text {
  flex: 1;
  line-height: 1.35;
}

.angeltrip-checkliste-badge {
  flex-shrink: 0;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #6b7280;
  background: #f3f4f6;
  border-radius: 999px;
  padding: 0.15rem 0.45rem;
}

.angeltrip-checkliste-entfernen {
  appearance: none;
  border: none;
  background: transparent;
  color: #9ca3af;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.15rem;
}

.angeltrip-checkliste-aktionen,
.angeltrip-checkliste-freitext-reihe {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.angeltrip-checkliste-freitext-reihe input {
  flex: 1;
  min-width: 12rem;
}

.angeltrip-ausruestung-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid #86efac;
  background: #ecfdf5;
}

.angeltrip-ausruestung-banner p {
  margin: 0;
  font-weight: 650;
  color: #166534;
}

.profil-unterbereich {
  margin-bottom: 1rem;
}

.profil-unterbereich:last-child {
  margin-bottom: 0;
}

.profil-fangtagebuch-bereich {
  background: #ffffff;
  border: 1px solid #d4cbb8;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.profil-fangtagebuch-bereich .fangtagebuch-liste {
  margin-top: 0.75rem;
}

.fangbuch-buch {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  gap: 1rem;
  margin-top: 0.85rem;
  align-items: start;
}

.fangbuch-register {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 0.15rem;
}

.fangbuch-register-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  width: 100%;
  text-align: left;
  border: 1px solid #c9bc9e;
  border-radius: 8px;
  background: #f8f4ea;
  padding: 0.55rem 0.65rem;
  cursor: pointer;
  font: inherit;
  color: #374151;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.fangbuch-register-btn:hover {
  border-color: var(--color-green);
  background: #ffffff;
}

.fangbuch-register-btn.aktiv {
  border-color: var(--color-green-dark);
  background: #ffffff;
  box-shadow: inset 3px 0 0 var(--color-green-dark);
}

.fangbuch-register-nummer {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-green-dark);
}

.fangbuch-register-titel {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.25;
}

.fangbuch-register-count {
  font-size: 0.78rem;
  color: #6b7280;
}

.fangbuch-seitenblatt {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  border: 1px solid #c9bc9e;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffdf8 0%, #f7f1e4 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.fangbuch-seitenkopf {
  padding: 0.85rem 1rem 0.65rem;
  border-bottom: 1px dashed #d4cbb8;
}

.fangbuch-seitennummer {
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #6b7280;
}

.fangbuch-seitentitel {
  margin: 0;
  font-size: 1.15rem;
  color: var(--color-green-dark);
}

.fangbuch-seitenblatt-inhalt {
  flex: 1;
  padding: 0.85rem 1rem;
}

.fangbuch-eintraege-liste {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.fangbuch-gewaesser-badge {
  display: inline-block;
  margin: 0 0 0.35rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #e8f3ea;
  color: var(--color-green-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.fangbuch-koeder-zeile {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: #4b5563;
}

.fangbuch-koeder-zeile span {
  font-weight: 700;
  color: var(--color-green-dark);
}

.fangbuch-leer {
  margin: 0;
}

.fangbuch-seitenfuss {
  margin-top: auto;
  padding: 0.85rem 1rem 1rem;
  border-top: 1px dashed #d4cbb8;
  display: flex;
  justify-content: flex-end;
}

.fangbuch-pdf-btn {
  min-width: 180px;
}

@media (max-width: 760px) {
  .fangbuch-buch {
    grid-template-columns: 1fr;
  }

  .fangbuch-register {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    padding-bottom: 0.25rem;
  }

  .fangbuch-register-btn {
    min-width: 150px;
    flex: 0 0 auto;
  }

  .fangbuch-seitenfuss {
    justify-content: stretch;
  }

  .fangbuch-pdf-btn {
    width: 100%;
  }
}

.social-community-bereich .social-profil-inhalt .social-icons {
  margin-top: 0.35rem;
}

.profil-fangbuch-stats-bereich,
.profil-favoriten-bereich {
  background: #ffffff;
  border: 1px solid #d4cbb8;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.profil-fangbuch-stats-bereich .profil-feature-teaser-wrap,
.profil-favoriten-bereich .profil-feature-teaser-wrap {
  margin-top: 0.5rem;
}

.profil-bereich h3 {
  color: var(--color-green-dark);
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
}

.profil-karte {
  background: #ffffff;
  border: 1px solid #d4cbb8;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.profil-name-zeile {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.profil-karte label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-green-dark);
  margin-bottom: 0.25rem;
}

.profil-karte input {
  width: 100%;
  border: 1px solid #c9bc9e;
  border-radius: 8px;
  padding: 0.5rem 0.6rem;
  font: inherit;
  margin-bottom: 0.65rem;
}

.profil-status-zeile {
  margin-bottom: 0.75rem;
}

.profil-status-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.status-standard {
  background: #e5e7eb;
  color: #4b5563;
  border: 1px solid #9ca3af;
}

.status-premium-gold {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 45%, #f59e0b 100%);
  color: #78350f;
  border: 1px solid #d97706;
  box-shadow: 0 1px 4px rgba(217, 119, 6, 0.25);
}

.status-pionier-gold {
  background: linear-gradient(135deg, #fffbeb 0%, #fcd34d 35%, #f59e0b 70%, #b45309 100%);
  color: #451a03;
  border: 1px solid #b45309;
  box-shadow: 0 2px 8px rgba(180, 83, 9, 0.3);
}

.status-premium {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #f59e0b;
}

.profil-abschnitt-info {
  margin: 0 0 0.75rem;
  font-size: 0.86rem;
  color: var(--color-brown);
  line-height: 1.45;
}

.profil-tresor-bereich {
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  padding: 1rem;
}

.profil-tresor-bereich h3 {
  margin-bottom: 0.35rem;
}

.tresor-grid {
  display: grid;
  gap: 1rem;
}

.tresor-karte {
  background: #ffffff;
  border: 1px solid #d4cbb8;
  border-radius: var(--radius);
  padding: 0.85rem;
  box-shadow: var(--shadow);
}

.tresor-karte h4 {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  color: var(--color-green-dark);
}

.tresor-vorschau {
  margin-bottom: 0.75rem;
  min-height: 120px;
}

.tresor-leer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 140px;
  padding: 0.85rem;
  border: 2px dashed #cbd5e1;
  border-radius: 10px;
  background: #f8fafc;
  text-align: center;
}

.tresor-leer p {
  margin: 0;
  font-size: 0.88rem;
  color: #64748b;
}

.tresor-leer-hinweis {
  margin-top: 0.35rem !important;
  font-size: 0.8rem !important;
}

.tresor-lade {
  margin: 0;
  padding: 2rem 0;
  text-align: center;
  color: #64748b;
  font-size: 0.88rem;
}

.tresor-vorschau-figur {
  margin: 0;
}

.tresor-vorschau-bild {
  display: block;
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  border-radius: 10px;
  border: 2px solid #166534;
  background: #000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.tresor-vorschau-figur figcaption {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: #64748b;
  text-align: center;
}

.tresor-upload-label {
  display: block;
  width: 100%;
  text-align: center;
  cursor: pointer;
  margin-bottom: 0.45rem;
}

.tresor-upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.tresor-foto-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
}

.tresor-hybrid-actions-unten {
  grid-template-columns: 1fr;
  margin-top: 0.15rem;
}

.profilbild-bereich {
  position: relative;
  text-align: center;
  margin-bottom: 1rem;
}

.profil-upload-input {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.profil-name-gesperrt {
  background: #f1f5f9;
  color: #64748b;
  cursor: not-allowed;
  border-color: #cbd5e1;
}

.profil-daten-bereich {
  margin: 1rem 0;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.profil-daten-bereich h4 {
  margin: 0 0 0.85rem;
  color: var(--color-green-dark);
  font-size: 1rem;
}

.profil-daten-zeile {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #eef2f7;
}

.profil-daten-zeile:last-of-type {
  border-bottom: none;
  margin-bottom: 0.5rem;
}

.profil-daten-inhalt {
  flex: 1 1 auto;
  min-width: 0;
}

.profil-daten-inhalt label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: #334155;
  font-size: 0.88rem;
}

.profil-daten-inhalt input[type="text"],
.profil-daten-inhalt input[type="number"] {
  width: 100%;
  max-width: 100%;
}

.profil-daten-privat {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 4.5rem;
  position: relative;
  z-index: 1;
}

.profil-privat-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.profil-schalter-toggle {
  position: relative;
  width: 42px;
  height: 24px;
  display: inline-block;
}

.profil-schalter-toggle input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  z-index: 2;
}

.profil-schalter-knopf {
  position: absolute;
  inset: 0;
  background: #d1d5db;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.profil-schalter-knopf::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.profil-schalter-toggle input:checked + .profil-schalter-knopf {
  background: #059669;
}

.profil-schalter-toggle input:checked + .profil-schalter-knopf::before {
  transform: translateX(18px);
}

.profil-geheimniskraemer-bereich {
  margin: 1.15rem 0 0.85rem;
  padding: 0.95rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.profil-geheimniskraemer-bereich .profil-daten-zeile-geheimniskraemer {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.profil-geheimniskraemer-bereich .profil-daten-inhalt label {
  color: var(--color-green-dark, #166534);
}

.profil-geheimniskraemer-info {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #475569;
}

.profil-daten-zeile-geheimniskraemer .profil-daten-inhalt {
  flex: 1 1 70%;
}

.profil-username-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.profil-username-wrap input {
  flex: 1 1 auto;
}

.profil-username-lock {
  font-size: 1.1rem;
  line-height: 1;
}

.profil-username-hinweis {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: #92400e;
  line-height: 1.4;
}

.profil-angelmethoden-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.profil-methoden-tag {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.profil-methoden-tag:hover,
.profil-methoden-tag:focus-visible {
  border-color: #059669;
  outline: none;
}

.profil-methoden-tag-aktiv {
  background: rgba(5, 150, 105, 0.12);
  border-color: #059669;
  color: #065f46;
}

.profil-erfahrung-zeile {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.9rem;
  color: #334155;
}

.profil-erfahrung-zeile input {
  width: 5.5rem;
}

.profil-erfahrung-text {
  color: #64748b;
  font-size: 0.82rem;
}

.profil-daten-status {
  margin: 0.5rem 0 0.75rem;
  font-size: 0.82rem;
  color: #475569;
}

.profil-daten-status-fehler {
  color: #b91c1c;
  font-weight: 600;
}

.oeffentliches-profil-karte {
  margin: 0.85rem 0 1rem;
  padding: 0.85rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
}

.oeffentliches-profil-zeile {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.65rem;
}

.oeffentliches-profil-zeile:last-child {
  margin-bottom: 0;
}

.oeffentliches-profil-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
}

.oeffentliches-profil-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.oeffentliches-profil-tag {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.12);
  color: #065f46;
  font-size: 0.75rem;
  font-weight: 700;
}

.oeffentliches-profil-leer {
  margin: 0.85rem 0 1rem;
  font-size: 0.88rem;
  color: #64748b;
  font-style: italic;
}

.mitglied-profil-karte {
  display: block;
}

@media (max-width: 520px) {
  .profil-daten-zeile {
    flex-direction: column;
    align-items: stretch;
  }

  .profil-geheimniskraemer-bereich {
    padding: 0.85rem 0.8rem;
  }

  .profil-daten-privat {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }
}

.profilbild-vorschau {
  width: 7.5rem;
  height: 7.5rem;
  margin: 0 auto 0.75rem;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(135deg, #ecfdf5, #dbeafe);
  border: 3px solid rgba(15, 118, 110, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profilbild-bild {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profilbild-platzhalter {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #0f766e;
}

.profilbild-foto-actions {
  max-width: 22rem;
  margin: 0 auto 0.35rem;
}

.tresor-loeschen-btn {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  color: #b91c1c;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.35rem;
}

.tresor-hybrid-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.tresor-hybrid-actions .tresor-upload-label {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
}

.tresor-digital-btn {
  width: 100%;
  min-height: 2.65rem;
}

.tresor-digital-vorschau {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-height: 140px;
  padding: 0.85rem;
  border: 2px solid #93c5fd;
  border-radius: 10px;
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}

.tresor-digital-oeffnen-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  border: 2px solid #2563eb;
  border-radius: 10px;
  background: #ffffff;
  color: #1e3a8a;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: left;
  padding: 0.85rem 0.9rem;
  cursor: pointer;
}

.tresor-digital-oeffnen-btn:hover,
.tresor-digital-oeffnen-btn:focus {
  background: #dbeafe;
}

.tresor-digital-icon {
  font-size: 1.65rem;
  line-height: 1;
  flex-shrink: 0;
}

.tresor-digital-meta {
  margin: 0.55rem 0 0;
  font-size: 0.8rem;
  color: #475569;
  text-align: center;
}

.tresor-digital-hinweis {
  margin: 0.25rem 0 0;
  font-size: 0.76rem;
  color: #64748b;
  text-align: center;
}

.tresor-digital-modal-inhalt {
  width: min(520px, 100%);
}

.tresor-viewer-modal {
  z-index: 10020;
}

.tresor-viewer-inhalt {
  width: min(920px, 100%);
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.tresor-viewer-kopf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #d4cbb8;
}

.tresor-viewer-kopf h3 {
  margin: 0;
}

.tresor-viewer-schliessen {
  border: none;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-brown);
  padding: 0.15rem 0.35rem;
}

.tresor-viewer-body {
  flex: 1 1 auto;
  min-height: 55vh;
  background: #f8fafc;
}

.tresor-viewer-iframe {
  width: 100%;
  height: 100%;
  min-height: 55vh;
  border: none;
}

.tresor-viewer-actions {
  padding: 0.75rem 1rem 1rem;
  margin-top: 0;
  flex-wrap: wrap;
}

@media (max-width: 520px) {
  .tresor-hybrid-actions {
    grid-template-columns: 1fr;
  }
}

/* ---- Profil: Zielfische (Tag-Suche + Dropdown) ---- */
.profil-zielfische-bereich h3 {
  margin-bottom: 0.55rem;
}

.profil-zielfische-limit-hinweis {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  color: var(--color-brown);
  line-height: 1.4;
}

.profil-zielfische-limit-hinweis:empty {
  display: none;
}

.zielfisch-picker {
  position: relative;
}

.zielfisch-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  min-height: 0;
  margin-bottom: 0.55rem;
}

.zielfisch-tags-leer {
  margin: 0;
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.4;
}

.zielfisch-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.28rem 0.45rem 0.28rem 0.6rem;
  border-radius: 999px;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: var(--color-green-dark);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

.zielfisch-tag-entfernen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #d1fae5;
  color: #047857;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
}

.zielfisch-tag-entfernen:hover,
.zielfisch-tag-entfernen:focus {
  background: #a7f3d0;
}

.zielfisch-suche-wrap {
  position: relative;
}

.zielfisch-suche-input {
  width: 100%;
  border: 2px solid #d4cbb8;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font: inherit;
  font-size: 0.92rem;
  color: var(--color-text);
  background: #fff;
}

.zielfisch-suche-wrap-offen .zielfisch-suche-input {
  border-color: var(--color-green);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.zielfisch-suche-input:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 2px rgba(22, 101, 52, 0.12);
}

.zielfisch-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 50;
  max-height: 11.5rem;
  overflow-y: auto;
  border: 2px solid var(--color-green);
  border-top: none;
  border-radius: 0 0 10px 10px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.zielfisch-dropdown-option {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  text-align: left;
  border: none;
  border-bottom: 1px solid #eef2f0;
  background: #fff;
  padding: 0.52rem 0.75rem;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-green-dark);
  cursor: pointer;
}

.zielfisch-dropdown-option:last-child {
  border-bottom: none;
}

.zielfisch-dropdown-option:hover,
.zielfisch-dropdown-option:focus {
  background: #f0fdf4;
}

.zielfisch-dropdown-option.ist-gewaehlt {
  color: #64748b;
  background: #f8fafc;
  cursor: default;
}

.zielfisch-dropdown-leer {
  margin: 0;
  padding: 0.75rem;
  font-size: 0.84rem;
  color: var(--color-brown);
  text-align: center;
}

.profil-hotspots-bereich .favoriten-liste,
.profil-favoriten-bereich .favoriten-liste {
  margin-bottom: 0.75rem;
}

.fangtagebuch-toggle-btn {
  width: 100%;
  margin-bottom: 0.75rem;
}

.fangtagebuch-panel {
  background: #ffffff;
  border: 1px solid #d4cbb8;
  border-radius: var(--radius);
  padding: 0.85rem;
  box-shadow: var(--shadow);
}

.fangtagebuch-panel h4 {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  color: var(--color-green-dark);
}

.favorit-hotspot-badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: #fee2e2;
  color: #991b1b;
  font-size: 0.68rem;
  font-weight: 700;
  vertical-align: middle;
}

.profil-tresor-limit-hinweis {
  margin: 0 0 0.75rem;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 0.82rem;
  color: #475569;
}

.profil-unterabschnitt-titel {
  margin: 0 0 0.55rem;
  font-size: 0.92rem;
  color: var(--color-green-dark);
}

.profil-premium-zone {
  margin-bottom: 0.85rem;
}

.profil-feature-teaser-wrap {
  margin-bottom: 0.5rem;
}

.profil-feature-teaser {
  display: block;
  width: 100%;
  text-align: left;
  padding: 1rem 0.85rem;
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  cursor: pointer;
  font: inherit;
  color: #64748b;
  opacity: 0.92;
  transition: border-color 0.15s, background 0.15s;
}

.profil-feature-teaser:hover,
.profil-feature-teaser:focus-visible {
  border-color: #94a3b8;
  background: #eef2f7;
  outline: none;
}

.profil-teaser-schloss {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.profil-feature-teaser strong {
  display: block;
  color: #475569;
  margin-bottom: 0.25rem;
}

.profil-feature-teaser p {
  margin: 0 0 0.45rem;
  font-size: 0.84rem;
  line-height: 1.4;
}

.profil-teaser-cta {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #b45309;
}

.tresor-karte-gesperrt {
  opacity: 0.88;
}

.tresor-upload-gesperrt {
  opacity: 0.65;
  cursor: pointer;
  pointer-events: auto;
}

.profil-upgrade-modal-inhalt {
  text-align: center;
  max-width: 22rem;
}

.profil-upgrade-icon {
  font-size: 2rem;
  margin: 0 0 0.35rem;
}

.profil-upgrade-modal-inhalt h3 {
  margin-bottom: 0.5rem;
}

.profil-upgrade-modal-inhalt p {
  margin-bottom: 1rem;
  color: var(--color-brown);
  line-height: 1.45;
}

.profil-upgrade-buttons {
  flex-direction: column;
  gap: 0.5rem;
}

.karte-gast-conversion-inhalt {
  text-align: center;
  max-width: 24rem;
  position: relative;
}

.karte-gast-conversion-icon {
  font-size: 2.2rem;
  margin: 0 0 0.35rem;
}

.karte-gast-conversion-inhalt h3 {
  margin-bottom: 0.5rem;
}

.karte-gast-conversion-text {
  color: var(--color-brown);
  line-height: 1.5;
  margin-bottom: 1.1rem;
}

.karte-gast-conversion-buttons {
  flex-direction: column;
  gap: 0.55rem;
}

.karte-gast-conversion-buttons .karten-btn {
  width: 100%;
}

.profil-fangbuch-stats {
  margin-top: 0.85rem;
}

/* ---- Premium-Dashboard ---- */
.profil-premium-dashboard-bereich {
  background: linear-gradient(180deg, #fffbeb 0%, #ffffff 100%);
  border: 1px solid #fcd34d;
  border-radius: var(--radius);
  padding: 1rem;
}

.profil-premium-dashboard-bereich h3 {
  margin-bottom: 0.35rem;
}

.premium-dashboard-grid {
  display: grid;
  gap: 0.85rem;
}

.premium-dash-karte {
  margin: 0;
}

.premium-dash-widget {
  background: #ffffff;
  border: 1px solid #e5dcc8;
  border-radius: 12px;
  padding: 0.85rem;
  box-shadow: var(--shadow);
}

.premium-dash-widget-kopf {
  margin: 0 0 0.35rem;
  font-weight: 700;
  color: var(--color-green-dark);
  font-size: 0.95rem;
}

.premium-dash-meta {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  color: #64748b;
}

.koeder-kompass-empfehlung strong {
  display: block;
  color: #92400e;
  margin-bottom: 0.25rem;
}

.koeder-kompass-empfehlung p {
  margin: 0 0 0.5rem;
  font-size: 0.86rem;
  line-height: 1.4;
}

.koeder-farben-leiste {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.45rem;
}

.koeder-farbe-pill {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid #f59e0b;
  font-size: 0.72rem;
  font-weight: 700;
  color: #78350f;
}

.koeder-kompass-tipp {
  margin: 0;
  font-size: 0.8rem;
  color: #64748b;
  font-style: italic;
}

.schonzeit-checker-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0.45rem 0 0.2rem;
  color: var(--color-green-dark);
}

.schonzeit-checker-form select,
.schonzeit-checker-form input[type="search"],
.schonzeit-checker-form input[type="number"],
.schonzeit-checker-form input:not([type="hidden"]) {
  width: 100%;
  border: 1px solid #c9bc9e;
  border-radius: 8px;
  padding: 0.45rem 0.55rem;
  font: inherit;
  touch-action: manipulation;
}

.schonzeit-checker-form button {
  width: 100%;
  margin-top: 0.65rem;
}

.schonzeit-checker-ergebnis {
  margin-top: 0.75rem;
  padding: 0.75rem;
  border-radius: 10px;
  border: 2px solid #cbd5e1;
}

.schonzeit-checker-ergebnis strong {
  display: block;
  margin-bottom: 0.25rem;
}

.schonzeit-checker-ergebnis p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.4;
}

.schonzeit-ergebnis-gruen {
  background: #ecfdf5;
  border-color: #22c55e;
  color: #166534;
}

.schonzeit-ergebnis-rot {
  background: #fef2f2;
  border-color: #ef4444;
  color: #991b1b;
}

.schonzeit-ergebnis-grau {
  background: #f8fafc;
  color: #64748b;
}

.luftdruck-kurve {
  width: 100%;
  height: 90px;
  color: #2563eb;
  margin-bottom: 0.5rem;
}

.luftdruck-beiss-banner {
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  background: #fef2f2;
  border: 2px solid #ef4444;
  color: #991b1b;
  font-weight: 800;
  font-size: 0.82rem;
  text-align: center;
  margin-bottom: 0.45rem;
}

.luftdruck-banner-aktiv {
  animation: luftdruck-banner-blink 1.1s ease-in-out infinite;
}

@keyframes luftdruck-banner-blink {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45);
  }
  50% {
    opacity: 0.82;
    box-shadow: 0 0 12px 2px rgba(239, 68, 68, 0.35);
  }
}

.luftdruck-alarm-info {
  margin: 0;
  font-size: 0.82rem;
  color: #64748b;
}

.profil-modus-premium .profil-premium-dashboard-bereich,
.profil-modus-pionier .profil-premium-dashboard-bereich {
  border-color: #f59e0b;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.12);
}

.profil-impressum {
  font-size: 0.84rem;
  color: var(--color-brown);
  border-top: 1px solid #e5dcc8;
  padding-top: 0.65rem;
}

.profil-datenschutz {
  margin-top: 0.45rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.profil-rechtliches-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 1.25rem 0 calc(4.75rem + env(safe-area-inset-bottom, 0px));
  padding: 0.85rem 0.5rem 0.5rem;
  border-top: 1px solid #e5dcc8;
  position: relative;
  z-index: 1;
}

.rechtliches-link {
  background: none;
  border: none;
  padding: 0.15rem 0.25rem;
  font-size: 0.82rem;
  color: #6b5344;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.rechtliches-link:hover,
.rechtliches-link:focus-visible {
  color: var(--color-green-dark, #2d5016);
}

.rechtliches-trenner {
  color: #c4a882;
  font-size: 0.82rem;
  user-select: none;
}

.rechtliches-modal-inhalt {
  max-width: 42rem;
  width: calc(100% - 1.5rem);
  max-height: min(88vh, 720px);
  display: flex;
  flex-direction: column;
}

.rechtliches-inhalt {
  overflow-y: auto;
  flex: 1 1 auto;
  padding-right: 0.25rem;
  margin-bottom: 0.75rem;
}

.rechtliches-kopf {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e5dcc8;
}

.rechtliches-kopf h3 {
  margin: 0 0 0.35rem;
  color: var(--color-green-dark, #2d5016);
}

.rechtliches-untertitel {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-brown, #6b5344);
}

.rechtliches-stand {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: #6b7280;
}

.rechtliches-abschnitt {
  margin-bottom: 1rem;
}

.rechtliches-abschnitt h4 {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
  color: var(--color-green-dark, #2d5016);
}

.rechtliches-abschnitt p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #374151;
}

.rechtliches-liste {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #374151;
}

.rechtliches-volltext {
  font-size: 0.86rem;
  line-height: 1.55;
  color: #374151;
}

body.rechtliches-modal-offen {
  overflow: hidden;
}

#rechtliches-modal:not(.versteckt) {
  display: flex !important;
}

.fangtagebuch-liste,
.partner-liste {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.tagebuch-karte,
.partner-karte {
  background: #ffffff;
  border: 1px solid #d4cbb8;
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
  box-shadow: var(--shadow);
}

.angelkasten-formular-karte {
  margin-bottom: 1rem;
}

.angelkasten-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1rem;
}

.angelkasten-tab-btn {
  appearance: none;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #374151;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.84rem;
  font-weight: 650;
  cursor: pointer;
}

.angelkasten-tab-btn.ist-aktiv {
  background: #eef5e8;
  border-color: #9bbb8e;
  color: var(--color-green-dark);
}

.angelkasten-combo-slots {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.angelkasten-combo-slot {
  padding: 0.55rem 0.65rem;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
}

.angelkasten-combo-slot.ist-leer {
  background: #f9fafb;
}

.angelkasten-combo-slot-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.35rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: #111827;
}

.angelkasten-combo-slot-select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0.5rem 0.65rem;
  font: inherit;
  background: #fff;
}

.angelkasten-combos-ueberschrift {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  color: var(--color-green-dark);
}

.angelkasten-combos-liste {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 1rem;
}

.angelkasten-combo-karte {
  background: #fff;
  border: 1px solid #d4cbb8;
  border-radius: var(--radius);
  padding: 0.85rem;
  box-shadow: var(--shadow);
}

.angelkasten-combo-karte h4 {
  margin: 0 0 0.25rem;
}

.angelkasten-combo-teile {
  list-style: none;
  margin: 0.45rem 0 0.65rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.angelkasten-combo-teil {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.4rem 0.5rem;
  border-radius: 8px;
  background: #f8faf8;
  border: 1px solid #e5efe2;
}

.angelkasten-combo-teil-kat {
  font-size: 0.74rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.angelkasten-combo-teil-name {
  font-size: 0.88rem;
  color: #111827;
}

.angelkasten-formular {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.angelkasten-formular label {
  font-size: 0.86rem;
  font-weight: 650;
  color: #374151;
  margin-top: 0.25rem;
}

.angelkasten-feld-label {
  margin: 0.55rem 0 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1f2937;
}

.angelkasten-icon-wahl {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(8.2rem, 1fr));
  gap: 0.5rem;
}

.angelkasten-uebersicht {
  margin: 0.35rem 0 1rem;
}

.angelkasten-uebersicht-titel,
.angelkasten-detail-titel {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  color: var(--color-green-dark, #1f3d2b);
}

.angelkasten-uebersicht-grid {
  margin-top: 0.65rem;
}

.angelkasten-uebersicht-anzahl {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
}

.angelkasten-kategorie-detail {
  margin-top: 0.25rem;
}

.angelkasten-zurueck-btn {
  margin-bottom: 0.75rem;
}

.angelkasten-hinzufuegen-bereich {
  margin: 1rem 0 0.75rem;
}

.angelkasten-hinzufuegen-bereich .karten-btn {
  width: 100%;
}

.angelkasten-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.angelkasten-icon-fallback {
  font-size: 1.4rem;
  line-height: 1;
}

.angelkasten-icon-btn {
  appearance: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  min-height: 5.2rem;
  padding: 0.55rem 0.4rem;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.angelkasten-icon-btn-zeichen {
  font-size: 1.7rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.angelkasten-icon-bild {
  width: 2.45rem;
  height: 2.45rem;
  object-fit: cover;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  background: #2f86d6;
  flex-shrink: 0;
}

.angelkasten-icon-bild-klein {
  width: 1.95rem;
  height: 1.95rem;
}

.angelkasten-icon-bild-inline {
  width: 1.65rem;
  height: 1.65rem;
  margin-right: 0.2rem;
}

.angelkasten-icon-bild-gross {
  width: 4.4rem;
  height: 4.4rem;
}

.angelkasten-icon-btn-label {
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.2;
  color: #374151;
}

.angelkasten-icon-btn.ist-aktiv {
  background: #eef5e8;
  border-color: #9bbb8e;
}

.angelkasten-typ-wahl {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.15rem;
}

.angelkasten-typ-btn {
  appearance: none;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  width: 100%;
  text-align: left;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  padding: 0.55rem 0.65rem;
  cursor: pointer;
}

.angelkasten-typ-btn-icon {
  font-size: 1.2rem;
  line-height: 1.2;
  flex-shrink: 0;
}

.angelkasten-typ-btn-label {
  font-size: 0.88rem;
  font-weight: 650;
  color: #111827;
}

.angelkasten-typ-btn.ist-aktiv {
  background: #ecfdf5;
  border-color: #5eead4;
}

.angelkasten-typ-info {
  margin: 0.45rem 0 0.15rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: #f8faf8;
  border: 1px solid #d9e5d6;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #374151;
}

.angelkasten-andere-felder {
  margin: 0.35rem 0 0.15rem;
  padding: 0.7rem 0.75rem;
  border-radius: 10px;
  background: #fffbeb;
  border: 1px solid #fde68a;
}

.angelkasten-andere-felder label {
  margin-top: 0;
}

.angelkasten-formular input,
.angelkasten-formular select,
.angelkasten-formular textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  font: inherit;
  background: #fff;
}

.angelkasten-hinweis {
  margin: 0;
  font-size: 0.8rem;
  color: #6b7280;
}

.angelkasten-formular-aktionen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.55rem;
}

.angelkasten-foto-vorschau {
  margin-top: 0.35rem;
}

.angelkasten-foto-vorschau-bild,
.angelkasten-foto {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #f3f4f6;
}

.angelkasten-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
}

.angelkasten-filter-btn {
  appearance: none;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #374151;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 650;
  cursor: pointer;
}

.angelkasten-filter-btn.ist-aktiv {
  background: #eef5e8;
  border-color: #9bbb8e;
  color: var(--color-green-dark);
}

.angelkasten-liste {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding-bottom: 1rem;
}

.angelkasten-gruppe h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  color: var(--color-green-dark);
}

.angelkasten-gruppe h3 span {
  font-weight: 600;
  color: #6b7280;
  font-size: 0.86rem;
}

.angelkasten-gruppen-liste {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.angelkasten-karte {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.75rem;
  background: #ffffff;
  border: 1px solid #d4cbb8;
  border-radius: var(--radius);
  padding: 0.7rem;
  box-shadow: var(--shadow);
}

.angelkasten-karte-medien {
  min-height: 96px;
}

.angelkasten-foto-leer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  border-radius: 12px;
  background: #f3f4f6;
  border: 1px dashed #d1d5db;
  font-size: 1.6rem;
}

.angelkasten-karte-inhalt h4 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color: #111827;
}

.angelkasten-karte-kategorie {
  margin: 0 0 0.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #6b7280;
}

.angelkasten-karte-meta,
.angelkasten-karte-infos {
  margin: 0 0 0.35rem;
  font-size: 0.86rem;
  color: #4b5563;
  line-height: 1.4;
}

.angelkasten-karte-aktionen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.35rem;
}

@media (max-width: 520px) {
  .angelkasten-karte {
    grid-template-columns: 1fr;
  }

  .angelkasten-foto,
  .angelkasten-foto-leer {
    max-height: 180px;
    height: 160px;
  }
}

.tagebuch-kopf {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
  color: var(--color-green-dark);
}

.tagebuch-datum {
  font-size: 0.78rem;
  color: #6b7280;
  white-space: nowrap;
}

.tagebuch-ort {
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.tagebuch-details {
  font-size: 0.86rem;
  color: var(--color-brown);
}

.partner-kategorie {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #92400e;
  background: #fef3c7;
  border-radius: 999px;
  padding: 0.15rem 0.45rem;
  margin-bottom: 0.35rem;
}

.partner-karte h3 {
  color: var(--color-green-dark);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.partner-karte p {
  font-size: 0.88rem;
  color: var(--color-brown);
  margin-bottom: 0.45rem;
}

.seiten-link-btn {
  display: inline-block;
  background: var(--color-green);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
}

.seiten-link-btn:hover {
  background: var(--color-green-dark);
}

.seiten-leer {
  text-align: center;
  color: #6b7280;
  font-size: 0.9rem;
  padding: 1rem 0.5rem;
}

/* ---- Premium-Seite ---- */
.premium-seite {
  max-width: 640px;
  margin: 0 auto;
  padding: 1.5rem 1rem 2rem;
  text-align: center;
}

.premium-seite h2 {
  color: var(--color-green-dark);
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin-bottom: 0.35rem;
}

.premium-untertitel {
  color: var(--color-brown);
  margin-bottom: 1rem;
}

.premium-hauptvorteil-kopf {
  margin-bottom: 1rem;
}

.premium-hauptvorteil-kopf .premium-vorteil-karte {
  margin: 0;
}

.premium-vorteile-liste {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding: 0;
}

.premium-vorteile-liste > li {
  list-style: none;
}

.premium-vorteil-karte {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 2px solid #f59e0b;
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
}

.premium-vorteil-karte-haupt {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-color: #dc2626;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.15);
}

.premium-hauptvorteil-badge {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.premium-vorteil-karte-haupt strong {
  color: #991b1b;
}

.premium-vorteil-karte-haupt p {
  color: #7f1d1d;
}

.premium-vorteil-karte strong {
  display: block;
  color: #92400e;
  margin-bottom: 0.2rem;
}

.premium-vorteil-karte p {
  font-size: 0.88rem;
  color: #78350f;
}

.premium-preis {
  font-size: 0.84rem;
  color: #6b7280;
  margin-bottom: 0.85rem;
}

.karten-btn-premium {
  background: linear-gradient(135deg, #d97706, #b45309);
  font-size: 1rem;
  padding: 0.65rem 1.2rem;
}

.karten-btn-premium:hover {
  background: linear-gradient(135deg, #b45309, #92400e);
}

/* ---- Premium-Kauf & Gutschein ---- */
.premium-upgrade-bereich {
  margin-top: 1.25rem;
  padding: 1.1rem 1rem;
  background: #ffffff;
  border: 2px solid #d4cbb8;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.premium-upgrade-bereich.premium-upgrade-aktiv {
  border-color: #d97706;
  background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
  text-align: center;
}

.premium-upgrade-badge {
  display: inline-block;
  margin-bottom: 0.4rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: #fef3c7;
  color: #92400e;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.premium-preis-karten {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.premium-preis-karten-drei {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.premium-preis-karte {
  position: relative;
  padding: 0.95rem 0.55rem 0.85rem;
  border-radius: 12px;
  border: 2px solid #d4cbb8;
  background: #faf8f4;
  text-align: center;
}

.premium-preis-karte-jahr {
  border-color: #d97706;
  background: linear-gradient(180deg, #fffbeb 0%, #faf8f4 100%);
}

.premium-preis-karte-pionier {
  border-color: #15803d;
  background: linear-gradient(180deg, #ecfdf5 0%, #fffbeb 55%, #faf8f4 100%);
  box-shadow: 0 6px 20px rgba(21, 128, 61, 0.12);
}

.premium-preis-karte-pionier .premium-preis-karte-badge {
  background: linear-gradient(135deg, #15803d, #166534);
}

.premium-preis-karte-pionier .premium-preis-karte-betrag {
  font-size: 1.25rem;
}

.premium-preis-karte-untertitel {
  margin: 0.1rem 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: #92400e;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.premium-preis-karte-meta {
  margin: 0.25rem 0 0;
  font-size: 0.72rem;
  line-height: 1.35;
  color: #4b5563;
}

.premium-preis-karte-badge {
  position: absolute;
  top: -0.45rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: #d97706;
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.premium-preis-karte-label {
  margin: 0.15rem 0 0.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-brown);
}

.premium-preis-karte-betrag {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-green-dark);
  line-height: 1.1;
}

.premium-preis-karte-intervall {
  margin: 0.15rem 0 0;
  font-size: 0.76rem;
  color: #6b7280;
}

.premium-preis-karte-spar {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: #92400e;
}

.premium-gruender-box {
  margin: 0 0 1rem;
  padding: 1rem 0.95rem;
  border-radius: 14px;
  border: 2px solid #86efac;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 45%, #fffbeb 100%);
  box-shadow: 0 4px 18px rgba(45, 80, 22, 0.08);
}

.premium-gruender-box-aktion {
  border-color: #15803d;
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 35%, #fffbeb 70%, #fef3c7 100%);
  box-shadow: 0 8px 24px rgba(21, 128, 61, 0.14);
}

.premium-gruender-box-aktion p {
  font-size: 0.9rem;
  font-weight: 500;
}

.premium-gruender-box p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #1f3d12;
}

.premium-kauf-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

.premium-kauf-buttons .btn-premium-jahr {
  background: linear-gradient(135deg, #15803d, #166534);
}

.premium-kauf-buttons .btn-premium-pionier {
  background: linear-gradient(135deg, #166534, #14532d);
  border: 2px solid #fbbf24;
  box-shadow: 0 4px 14px rgba(21, 128, 61, 0.22);
}

.premium-kauf-buttons .btn-premium-pionier:hover {
  background: linear-gradient(135deg, #14532d, #134e28);
}

.premium-laufzeit-hinweis {
  margin: 0.75rem 0 0;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: #ecfdf5;
  border: 1px solid #86efac;
  font-size: 0.84rem;
  color: #166534;
  line-height: 1.45;
}

.premium-upgrade-preis {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-green-dark);
}

.premium-upgrade-anbieter {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  color: #6b7280;
  text-transform: capitalize;
}

.premium-upgrade-hinweis {
  margin: 0 0 0.85rem;
  font-size: 0.84rem;
  color: var(--color-brown);
  line-height: 1.45;
}

.premium-upgrade-bereich label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-green-dark);
}

.premium-gutschein-zeile {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.premium-gutschein-input {
  flex: 1 1 10rem;
  min-width: 0;
  padding: 0.55rem 0.65rem;
  border: 1px solid #d4cbb8;
  border-radius: 8px;
  font-size: 0.9rem;
}

.premium-upgrade-bereich .karten-btn-premium {
  width: 100%;
}

@media (max-width: 720px) {
  .premium-preis-karten-drei {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .premium-preis-karten {
    grid-template-columns: 1fr;
  }
}

.premium-kauf-status {
  margin: 0.75rem 0 0;
  min-height: 1.25rem;
  font-size: 0.84rem;
}

.premium-kauf-status-laden {
  color: #1d4ed8;
}

.premium-kauf-status-erfolg {
  color: #166534;
  font-weight: 600;
}

.premium-kauf-status-fehler {
  color: #b91c1c;
  font-weight: 600;
}

/* ---- Admin: Premium verschenken ---- */
.admin-premium-verwaltung {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed #d4a574;
}

.admin-premium-kopf {
  margin-bottom: 0.35rem;
  color: #92400e;
  font-size: 0.95rem;
}

.admin-premium-kopf strong {
  color: var(--color-green-dark);
}

.admin-premium-info {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  color: var(--color-brown);
  line-height: 1.45;
}

.admin-premium-toggle-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0 0.75rem;
  font-size: 0.88rem;
  cursor: pointer;
}

.admin-premium-liste {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-height: 16rem;
  overflow-y: auto;
}

.admin-mitgliederverwaltung {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed #d4a574;
}

.admin-user-counter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.75rem 0 0.35rem;
}

.admin-user-counter-kachel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 5.4rem;
  padding: 0.45rem 0.7rem;
  border-radius: 12px;
  border: 2px solid #d4cbb8;
  background: linear-gradient(180deg, #faf8f4 0%, #f3efe6 100%);
  box-shadow: 0 2px 8px rgba(45, 80, 22, 0.06);
}

.admin-user-counter-zahl {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-green-dark);
}

.admin-user-counter-label {
  margin-top: 0.12rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-brown);
  text-align: center;
}

.admin-user-counter-gesamt {
  border-color: #93c5fd;
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
}

.admin-user-counter-gesamt .admin-user-counter-zahl {
  color: #1d4ed8;
}

.admin-user-counter-aktiv {
  border-color: #86efac;
  background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
}

.admin-user-counter-aktiv .admin-user-counter-zahl {
  color: #15803d;
}

.admin-user-counter-premium {
  border-color: #fcd34d;
  background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
}

.admin-user-counter-premium .admin-user-counter-zahl {
  color: #b45309;
}

.admin-user-counter-neu {
  border-color: #c4b5fd;
  background: linear-gradient(180deg, #f5f3ff 0%, #ede9fe 100%);
}

.admin-user-counter-neu .admin-user-counter-zahl {
  color: #6d28d9;
}

.admin-user-counter-email {
  border-color: #fdba74;
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
}

.admin-user-counter-email .admin-user-counter-zahl {
  color: #c2410c;
}

.admin-user-counter-stand {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  color: #64748b;
}

.admin-mitglied-loeschen-modal-inhalt {
  max-width: 28rem;
}

.admin-mitglied-loeschen-modal-inhalt .modal-info {
  margin-bottom: 0.85rem;
  line-height: 1.45;
}

.admin-mitglieder-liste {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-height: 22rem;
  overflow-y: auto;
  padding-right: 0.15rem;
}

.admin-mitglieder-status {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  color: #475569;
}

.admin-mitglieder-status-fehler {
  color: #b91c1c;
  font-weight: 600;
}

.admin-smtp-env-formular label {
  display: block;
  margin: 0.5rem 0 0.25rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.admin-smtp-env-formular input[type="password"] {
  width: 100%;
  max-width: 22rem;
  box-sizing: border-box;
}

.admin-smtp-env-buttons {
  margin-top: 0.65rem;
}

.admin-smtp-env-info {
  margin-bottom: 0.35rem;
}

.admin-mitglied-zeile {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.75rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5dcc8;
}

.admin-mitglied-zeile-gesperrt {
  border-color: #fecaca;
  background: #fff7f7;
}

.admin-mitglied-user strong {
  display: block;
  color: var(--color-green-dark);
  font-size: 0.9rem;
}

.admin-mitglied-email,
.admin-mitglied-id {
  display: block;
  font-size: 0.74rem;
  color: #64748b;
}

.admin-mitglied-id {
  font-family: monospace;
}

.admin-mitglied-admin-badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: rgba(146, 64, 14, 0.12);
  color: #92400e;
  font-size: 0.68rem;
  font-weight: 700;
  vertical-align: middle;
}

.admin-mitglied-aktionen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.admin-mitglied-btn {
  flex: 1 1 calc(50% - 0.25rem);
  min-width: 8.5rem;
  min-height: 2.35rem;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.admin-mitglied-btn:hover,
.admin-mitglied-btn:focus-visible {
  background: #f8fafc;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  outline: none;
}

.admin-mitglied-btn-chat {
  border-color: rgba(45, 80, 22, 0.25);
  color: var(--color-green-dark);
}

.admin-mitglied-btn-sperren {
  border-color: #fcd34d;
  color: #92400e;
}

.admin-mitglied-btn-loeschen {
  border-color: #fecaca;
  color: #b91c1c;
}

.profil-status-badge.status-gesperrt {
  background: #fee2e2;
  color: #991b1b;
}

.chat-admin-badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.08rem 0.4rem;
  border-radius: 999px;
  background: rgba(146, 64, 14, 0.14);
  color: #92400e;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  vertical-align: middle;
}

.konto-gesperrt-screen {
  position: fixed;
  inset: 0;
  z-index: 1000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.konto-gesperrt-screen.versteckt {
  display: none;
}

.konto-gesperrt-inhalt {
  width: min(100%, 26rem);
  padding: 2rem 1.5rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #cbd5e1;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  text-align: center;
}

.konto-gesperrt-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.konto-gesperrt-inhalt h2 {
  margin: 0 0 0.75rem;
  color: #991b1b;
  font-size: 1.35rem;
}

.konto-gesperrt-inhalt p {
  margin: 0 0 1rem;
  color: #475569;
  line-height: 1.55;
}

.konto-gesperrt-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #f8fafc;
  font-weight: 700;
  text-decoration: none;
}

.konto-gesperrt-mail:hover,
.konto-gesperrt-mail:focus-visible {
  color: #fff;
  outline: none;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.22);
}

body.konto-gesperrt-aktiv {
  overflow: hidden;
}

.admin-premium-zeile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  padding: 0.65rem 0.75rem;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e5dcc8;
}

.admin-premium-user {
  flex: 1 1 8rem;
  min-width: 0;
}

.admin-premium-user strong {
  display: block;
  color: var(--color-green-dark);
  font-size: 0.88rem;
}

.admin-premium-id {
  display: block;
  font-size: 0.72rem;
  color: #6b7280;
  font-family: monospace;
}

.admin-premium-select-label {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.72rem;
  color: var(--color-brown);
  font-weight: 600;
}

.admin-premium-select {
  padding: 0.35rem 0.45rem;
  border-radius: 6px;
  border: 1px solid #d4cbb8;
  font-size: 0.82rem;
  min-width: 6.5rem;
}

.admin-premium-schenken-btn {
  padding: 0.4rem 0.65rem !important;
  font-size: 0.78rem !important;
  white-space: nowrap;
}

.admin-premium-zeile .profil-status-badge {
  font-size: 0.72rem;
}

.admin-subscriptions-panel {
  margin-top: 0.75rem;
}

.admin-subscriptions-table-wrap {
  overflow-x: auto;
  margin-top: 0.5rem;
}

.admin-subscriptions-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.admin-subscriptions-table th,
.admin-subscriptions-table td {
  padding: 0.55rem 0.45rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  text-align: left;
  vertical-align: middle;
}

.admin-subscriptions-table th {
  font-weight: 700;
  color: #334155;
}

.admin-sub-input-name,
.admin-sub-input-price,
.admin-sub-input-days {
  width: 100%;
  min-width: 5.5rem;
  padding: 0.35rem 0.45rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font: inherit;
}

.admin-sub-actions {
  white-space: nowrap;
}

.admin-sub-actions .karten-btn {
  margin: 0.15rem 0.2rem 0.15rem 0;
  padding: 0.35rem 0.55rem;
  font-size: 0.82rem;
}

.admin-sub-status {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.admin-sub-status-aktiv {
  background: #dcfce7;
  color: #166534;
}

.admin-sub-status-inaktiv {
  background: #fee2e2;
  color: #991b1b;
}

.admin-subscriptions-status {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #64748b;
}

.admin-subscriptions-laden {
  color: #64748b;
  font-style: italic;
}

/* ---- Shop-Banner & Social Media ---- */
.social-leiste {
  display: flex;
  justify-content: center;
  padding: 0.65rem 1rem;
}

.social-werbung-karte {
  margin: 1rem 0 0.25rem;
  padding: 0 0.15rem;
}

.social-werbung-inhalt {
  background: linear-gradient(135deg, #ffffff 0%, #f8f4ec 100%);
  border: 2px solid #d4cbb8;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1rem 1.1rem;
  text-align: center;
}

.social-werbung-badge {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: #fef3c7;
  color: #92400e;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.social-werbung-inhalt h3 {
  margin: 0 0 0.35rem;
  color: var(--color-green-dark);
  font-size: 1.05rem;
}

.social-werbung-text {
  margin: 0 0 0.85rem;
  color: var(--color-brown);
  font-size: 0.88rem;
  line-height: 1.45;
}

.social-werbung-inhalt .social-icons {
  justify-content: center;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  color: #ffffff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.social-link-youtube {
  background: #ff0000;
}

.social-link-instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-svg {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.social-profil-bereich h3 {
  color: var(--color-green-dark);
  font-size: 1rem;
  margin-bottom: 0.65rem;
  text-align: center;
}

.social-profil-bereich .social-icons {
  margin-bottom: 0.25rem;
}

.eigener-shop-banner {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c2e 55%, #7cb356 100%);
  color: #ffffff;
  border-radius: var(--radius);
  padding: 1.1rem 1rem 1.15rem;
  margin-bottom: 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid #fef3c7;
}

.eigener-shop-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #fef3c7;
  color: #92400e;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  margin-bottom: 0.45rem;
}

.eigener-shop-banner h3 {
  font-size: clamp(1.2rem, 4vw, 1.55rem);
  margin-bottom: 0.35rem;
}

.eigener-shop-banner p {
  font-size: 0.92rem;
  opacity: 0.95;
  margin-bottom: 0.85rem;
}

.eigener-shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: #ffffff;
  color: var(--color-green-dark);
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease;
}

.eigener-shop-btn:hover {
  transform: scale(1.03);
  color: var(--color-green-dark);
}

.eigener-shop-icon {
  font-size: 1.25rem;
  line-height: 1;
}

/* ---- Community-Chat & Mitgliedersuche ---- */
.support-kontakt-btn {
  width: 100%;
  margin-bottom: 0.35rem;
  background: linear-gradient(135deg, #374151, #1f2937);
  color: #ffffff;
  border: none;
  font-size: 0.92rem;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.support-kontakt-hinweis {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  color: #64748b;
  text-align: center;
}

.support-kontakt-btn:hover {
  background: linear-gradient(135deg, #1f2937, #111827);
}

.kontakt-modal-inhalt {
  max-width: 520px;
}

.kontakt-status {
  min-height: 1.25rem;
  font-size: 0.85rem;
  margin: 0.35rem 0 0;
}

.kontakt-status-erfolg {
  color: #166534;
}

.kontakt-status-fehler {
  color: #b91c1c;
}

.community-chat-bereich,
.social-community-bereich {
  background: #ffffff;
  border: 1px solid #d4cbb8;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.community-chat-info {
  font-size: 0.86rem;
  color: var(--color-brown);
  margin-bottom: 0.85rem;
}

.admin-chat-zentrale-btn {
  width: 100%;
  margin-bottom: 1rem;
}

.community-unterbereich {
  margin-bottom: 1.1rem;
}

.community-unterbereich h4 {
  color: var(--color-green-dark);
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.mitgliedersuche-input {
  width: 100%;
  border: 1px solid #c9bc9e;
  border-radius: 8px;
  padding: 0.55rem 0.65rem;
  font: inherit;
  margin-bottom: 0.55rem;
}

.mitgliedersuche-liste,
.meine-chats-liste,
.admin-chat-liste {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  max-height: 280px;
  overflow-y: auto;
}

.mitglied-such-karte,
.chat-inbox-karte {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  text-align: left;
  border: 1px solid #e5dcc8;
  border-radius: 10px;
  padding: 0.6rem 0.7rem;
  background: #faf8f4;
  cursor: pointer;
  font: inherit;
  color: inherit;
  position: relative;
}

.mitglied-such-karte:hover,
.chat-inbox-karte:hover {
  background: #f0ebe0;
  border-color: #c9bc9e;
}

.mitglied-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mitglied-avatar.klein {
  width: 38px;
  height: 38px;
  font-size: 0.95rem;
}

.mitglied-avatar.admin-avatar {
  background: linear-gradient(135deg, #374151, #1f2937);
}

.mitglied-such-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.mitglied-such-text strong {
  color: var(--color-green-dark);
  font-size: 0.92rem;
}

.mitglied-such-text span {
  font-size: 0.8rem;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mitglied-badge-demo {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  background: #dbeafe;
  color: #1e40af;
  padding: 0.05rem 0.35rem;
  border-radius: 999px;
  margin-left: 0.35rem;
  vertical-align: middle;
}

.chat-inbox-text {
  flex: 1;
  min-width: 0;
}

.chat-inbox-kopf {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.chat-inbox-kopf strong {
  color: var(--color-green-dark);
  font-size: 0.9rem;
}

.chat-inbox-zeit {
  font-size: 0.72rem;
  color: #9ca3af;
  flex-shrink: 0;
}

.chat-inbox-typ {
  font-size: 0.72rem;
  color: var(--color-green);
  font-weight: 600;
}

.chat-inbox-vorschau {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-ungelesen-punkt {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dc2626;
}

.nav-chat-badge {
  position: absolute;
  top: 0.15rem;
  right: 0.35rem;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: #dc2626;
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-nav-btn {
  position: relative;
}

.mitglied-profil-modal-inhalt {
  max-width: 420px;
}

.mitglied-profil-kopf {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.mitglied-profil-kopf h3 {
  color: var(--color-green-dark);
  margin-bottom: 0.15rem;
}

.mitglied-seit {
  font-size: 0.82rem;
  color: #6b7280;
}

.mitglied-bio {
  font-size: 0.88rem;
  color: var(--color-brown);
  margin-bottom: 0.75rem;
}

.mitglied-demo-hinweis {
  font-size: 0.8rem;
  color: #1e40af;
  background: #eff6ff;
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
  margin-bottom: 0.65rem;
}

.mitglied-stats {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.mitglied-stat {
  flex: 1;
  text-align: center;
  background: #f8faf5;
  border: 1px solid #c9ddb8;
  border-radius: 10px;
  padding: 0.55rem;
}

.mitglied-stat strong {
  display: block;
  font-size: 1.25rem;
  color: var(--color-green-dark);
}

.mitglied-stat span {
  font-size: 0.78rem;
  color: #6b7280;
}

.chat-nachricht-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.admin-chat-zentrale-inhalt {
  max-width: 480px;
  max-height: 85vh;
  overflow-y: auto;
}

.admin-chat-filter {
  width: 100%;
  border: 1px solid #c9bc9e;
  border-radius: 8px;
  padding: 0.5rem;
  font: inherit;
  margin-bottom: 0.75rem;
}

body.chat-offen {
  overflow: hidden;
}

.chat-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  flex-direction: column;
  background: #ece5dd;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--color-green-dark);
  color: #ffffff;
  padding: 0.65rem 0.75rem;
  padding-top: calc(0.65rem + env(safe-area-inset-top, 0px));
  flex-shrink: 0;
}

.chat-zurueck-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.35rem;
  cursor: pointer;
  padding: 0.25rem 0.45rem;
  line-height: 1;
}

.chat-header-text h3 {
  font-size: 1rem;
  margin-bottom: 0.05rem;
}

.chat-header-text p {
  font-size: 0.75rem;
  opacity: 0.85;
}

.chat-nachrichten {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  background-image: linear-gradient(rgba(236, 229, 221, 0.92), rgba(236, 229, 221, 0.92));
}

.chat-leer {
  text-align: center;
  color: #6b7280;
  font-size: 0.88rem;
  margin-top: 2rem;
}

.chat-blase {
  max-width: 82%;
  padding: 0.45rem 0.65rem;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.chat-blase-eigen {
  align-self: flex-end;
  background: #dcf8c6;
  border-bottom-right-radius: 4px;
}

.chat-blase-fremd {
  align-self: flex-start;
  background: #ffffff;
  border-bottom-left-radius: 4px;
}

.chat-absender {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-green-dark);
  margin-bottom: 0.15rem;
}

.chat-blase-eigen .chat-absender {
  color: #166534;
}

.chat-text {
  font-size: 0.9rem;
  word-wrap: break-word;
  margin-bottom: 0.2rem;
}

.chat-zeit {
  font-size: 0.68rem;
  color: #9ca3af;
  display: block;
  text-align: right;
}

.chat-eingabe-leiste {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  padding: 0.55rem 0.65rem;
  padding-bottom: calc(0.55rem + env(safe-area-inset-bottom, 0px));
  background: #f0f0f0;
  border-top: 1px solid #d1d5db;
  flex-shrink: 0;
}

.chat-eingabe-leiste textarea {
  flex: 1;
  border: none;
  border-radius: 20px;
  padding: 0.55rem 0.85rem;
  font: inherit;
  resize: none;
  max-height: 100px;
  background: #ffffff;
}

.chat-senden-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--color-green);
  color: #ffffff;
  font-size: 1.1rem;
  cursor: pointer;
  flex-shrink: 0;
}

.chat-senden-btn:hover {
  background: var(--color-green-dark);
}

/* ---- Tipps & Tricks – Angler-Akademie ---- */
.tipps-bereich {
  background: #ffffff;
  border: 1px solid #d4cbb8;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.tipps-kopf h3 {
  color: var(--color-green-dark);
  margin-bottom: 0.25rem;
}

.tipps-untertitel {
  font-size: 0.86rem;
  color: var(--color-brown);
  margin-bottom: 0.85rem;
}

.tipps-kategorie-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.tipps-filter-btn {
  border: 1px solid #c9bc9e;
  background: #faf8f4;
  color: var(--color-green-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
}

.tipps-filter-btn.aktiv,
.tipps-filter-btn:hover {
  background: var(--color-green-dark);
  color: #ffffff;
  border-color: var(--color-green-dark);
}

.tipps-magazin-liste {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.tipps-karte {
  border: 1px solid #e5dcc8;
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  background: linear-gradient(135deg, #faf8f4 0%, #f5f0e8 100%);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.tipps-karte:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(45, 80, 22, 0.12);
  border-color: #c9bc9e;
}

.tipps-kategorie-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: #dcfce7;
  color: var(--color-green-dark);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  margin-bottom: 0.35rem;
}

.tipps-karte h4 {
  color: var(--color-green-dark);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.tipps-teaser {
  font-size: 0.84rem;
  color: #4b5563;
  line-height: 1.45;
  margin-bottom: 0.4rem;
}

.tipps-karte-meta {
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.tipps-karte-mehr {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-green);
}

.tipps-detail {
  margin-top: 0.5rem;
}

.tipps-zurueck-btn {
  background: transparent;
  border: none;
  color: var(--color-green-dark);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  padding: 0.25rem 0;
  margin-bottom: 0.65rem;
  font-family: inherit;
}

.tipps-detail-inhalt h3 {
  color: var(--color-green-dark);
  font-size: 1.15rem;
  margin: 0.35rem 0 0.65rem;
}

.tipps-youtube {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  background: #000000;
}

.tipps-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.tipps-detail-bild-box {
  margin-bottom: 0.75rem;
}

.tipps-detail-bild {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid #d4cbb8;
  display: block;
}

.tipps-detail-text p {
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 0.65rem;
  color: var(--color-text);
}

.tipps-loeschen-btn {
  margin-top: 0.75rem;
}

.tipps-admin-bereich {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px dashed #c9ddb8;
}

.tipps-admin-bereich h4 {
  color: var(--color-green-dark);
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
}

.tipps-admin-formular label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-green-dark);
  margin-top: 0.5rem;
  margin-bottom: 0.2rem;
}

.tipps-admin-formular input,
.tipps-admin-formular select,
.tipps-admin-formular textarea {
  width: 100%;
  border: 1px solid #c9bc9e;
  border-radius: 8px;
  padding: 0.5rem 0.6rem;
  font: inherit;
}

.tipps-admin-formular button {
  margin-top: 0.75rem;
  width: 100%;
}

.akademie-login-hinweis {
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.75rem;
}

.akademie-kategorien-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.akademie-kategorie-karte {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  padding: 0.9rem 0.85rem;
  border: 1px solid #c9bc9e;
  border-radius: 12px;
  background: linear-gradient(145deg, #fffef8 0%, #f5f0e4 100%);
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  font: inherit;
  color: inherit;
}

.akademie-kategorie-karte:hover,
.akademie-kategorie-karte:focus-visible {
  border-color: #0f766e;
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.12);
  transform: translateY(-1px);
}

.akademie-kategorie-icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.akademie-kategorie-karte h4 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: var(--color-green-dark);
}

.akademie-kategorie-beschreibung {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #6b7280;
}

.akademie-kategorie-anzahl {
  font-size: 0.72rem;
  font-weight: 600;
  color: #0f766e;
  margin-top: auto;
}

.akademie-kategorie-titel {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  color: var(--color-green-dark);
}

.akademie-kategorie-auswahl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.akademie-kategorie-option {
  width: 100%;
  padding: 0.55rem 0.5rem;
  border: 1px solid #c9bc9e;
  border-radius: 8px;
  background: #fffef8;
  color: var(--color-text);
  font: inherit;
  font-size: 0.78rem;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.akademie-kategorie-option:hover,
.akademie-kategorie-option:focus-visible {
  border-color: #0f766e;
}

.akademie-kategorie-option.aktiv {
  border-color: #0f766e;
  background: #ecfdf5;
  box-shadow: inset 0 0 0 1px #0f766e;
  font-weight: 600;
}

@media (max-width: 420px) {
  .akademie-kategorien-grid {
    grid-template-columns: 1fr;
  }

  .akademie-kategorie-auswahl {
    grid-template-columns: 1fr;
  }
}

.akademie-detail-autor {
  color: #6b7280;
  font-size: 0.9rem;
  margin: 0.25rem 0 0.75rem;
}

.akademie-detail-foto {
  margin: 0.75rem 0;
}

.akademie-detail-video {
  margin: 0.75rem 0;
}

.akademie-detail-video video {
  width: 100%;
  max-height: 420px;
  border-radius: 12px;
  background: #000;
}

.akademie-detail-link a {
  color: #0f766e;
  font-weight: 600;
}

.akademie-loeschen-btn {
  margin-top: 0.75rem;
}

/* ---- Fußzeile ---- */
.site-footer {
  background-color: var(--color-green-dark);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
}

/* ---- Handy-Optimierung ---- */
@media (max-width: 600px) {
  .map-section {
    padding: 0.5rem 0.65rem 1.75rem;
  }

  .map-section-kopf {
    margin-bottom: 0.5rem;
  }

  .map-container {
    height: clamp(340px, 52vh, 480px);
    border-radius: 12px;
  }

  .karten-suche-leiste {
    left: 0.35rem;
    right: 0.35rem;
    width: auto;
    max-width: none;
  }

  .fisch-filter-leiste {
    top: 3.1rem;
  }

  .map-section-steuerung {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
  }

  .hero-image {
    height: clamp(140px, 32vw, 220px);
  }

  .premium-schalter {
    top: auto;
    bottom: calc(4.8rem + env(safe-area-inset-bottom, 0px));
    right: 0.5rem;
    left: 0.5rem;
    border-radius: 12px;
    justify-content: center;
  }

  .bottom-nav-btn .nav-label {
    font-size: 0.48rem;
  }
}

.community-feed-liste {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0 0 1rem;
}

.community-feed-karte {
  background: #ffffff;
  border: 1px solid #e8dfd0;
  border-radius: 14px;
  padding: 0.95rem 1rem;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.community-feed-kopf {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.community-feed-icon {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.community-feed-meta {
  flex: 1;
  min-width: 0;
}

.community-feed-zeile {
  margin: 0;
  font-size: 0.92rem;
  color: #1f2937;
  line-height: 1.45;
}

.community-feed-zeit {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  color: #6b7280;
}

.community-feed-text {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.5;
}

.community-feed-schlagwort,
.community-feed-user,
.community-feed-lektion-link,
.community-feed-akademie-tab {
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  color: #0f766e;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.community-feed-schlagwort:hover,
.community-feed-schlagwort:focus-visible,
.community-feed-user:hover,
.community-feed-user:focus-visible,
.community-feed-lektion-link:hover,
.community-feed-lektion-link:focus-visible,
.community-feed-akademie-tab:hover,
.community-feed-akademie-tab:focus-visible {
  color: #115e59;
}

.community-feed-user-static {
  font-weight: 700;
  color: #334155;
}

.community-feed-bissindex-label {
  font-weight: 700;
  color: #0f766e;
}

.community-feed-bissindex-details {
  color: #374151;
}

.community-beitrag-toolbar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 0 0 1rem;
}

.community-beitrag-toolbar-aktionen {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.community-medien-plus-btn {
  width: 2.55rem;
  min-width: 2.55rem;
  height: 2.55rem;
  padding: 0;
  border-radius: 999px;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.community-beitrag-login-hinweis {
  margin: 0;
  font-size: 0.82rem;
  color: #6b7280;
}

.community-beitrag-modal-inhalt {
  max-width: 34rem;
}

.community-beitrag-formular label {
  display: block;
  margin: 0.75rem 0 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
}

.community-beitrag-formular input[type="text"],
.community-beitrag-formular textarea,
.community-beitrag-formular input[type="file"] {
  width: 100%;
  box-sizing: border-box;
}

.community-beitrag-formular textarea {
  resize: vertical;
  min-height: 7rem;
}

.community-beitrag-hinweis {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  color: #6b7280;
}

.community-feed-beitrag-label {
  font-weight: 700;
  color: #0f766e;
}

.community-beitrag-titel {
  margin: 0.75rem 0 0.35rem;
  font-size: 1rem;
  line-height: 1.35;
  color: #111827;
}

.community-beitrag-text {
  white-space: pre-wrap;
}

.community-beitrag-bild {
  display: block;
  width: 100%;
  max-height: 18rem;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 0.75rem;
  border: 1px solid #e5e7eb;
}

.community-beitrag-video {
  display: block;
  width: 100%;
  max-height: 20rem;
  margin-top: 0.75rem;
  border-radius: 10px;
  background: #0f172a;
  border: 1px solid #e5e7eb;
}

.community-beitrag-youtube {
  position: relative;
  width: 100%;
  margin-top: 0.75rem;
  padding-top: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  background: #0f172a;
  border: 1px solid #e5e7eb;
}

.community-beitrag-youtube iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.community-beitrag-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #f8fafc;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
  word-break: break-all;
}

.community-beitrag-link:hover,
.community-beitrag-link:focus-visible {
  background: #ecfdf5;
  border-color: #99f6e4;
  color: #115e59;
}

.community-beitrag-pdf {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f766e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.community-beitrag-pdf:hover,
.community-beitrag-pdf:focus-visible {
  color: #115e59;
}

.community-beitrag-admin-aktionen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.community-beitrag-admin-aktionen .karten-btn {
  font-size: 0.82rem;
  padding: 0.4rem 0.7rem;
}

.community-beitrag-interaktionen {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e5e7eb;
}

.community-beitrag-interaktionen-hinweis {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  font-weight: 650;
  color: #4b5563;
}

.community-beitrag-reaktionen {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
}

.community-reaktion-picker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.community-reaktion-zusammenfassung {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.28rem;
}

.community-reaktion-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
  min-height: 1.55rem;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  background: #f3f4f6;
  font-size: 0.88rem;
  line-height: 1;
}

.community-reaktion-picker-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.community-reaktion-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, opacity 0.15s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.community-reaktion-trigger.ist-blass {
  opacity: 0.38;
  filter: grayscale(0.35);
}

.community-reaktion-trigger.ist-blass:hover,
.community-reaktion-trigger.ist-blass:focus-visible {
  opacity: 0.7;
  background: #f3f4f6;
  outline: none;
}

.community-reaktion-trigger.ist-gesetzt {
  opacity: 1;
  background: #ecfdf5;
  border-color: #99f6e4;
}

.community-reaktion-trigger.ist-gesetzt:hover,
.community-reaktion-trigger.ist-gesetzt:focus-visible {
  background: #ccfbf1;
  outline: none;
}

.community-reaktion-menu {
  position: absolute;
  left: calc(100% + 0.35rem);
  top: 50%;
  z-index: 40;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.2rem;
  padding: 0.35rem 0.4rem;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  transform: translateY(-50%);
  white-space: nowrap;
}

.community-reaktion-menu[hidden] {
  display: none !important;
}

.community-reaktion-wahl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: transparent;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.community-reaktion-wahl:hover,
.community-reaktion-wahl:focus-visible {
  background: #f3f4f6;
  transform: scale(1.18);
  outline: none;
}

.community-reaktion-wahl.ist-aktiv {
  background: #ccfbf1;
}

.community-reaktion-wahl:disabled {
  opacity: 0.55;
  cursor: wait;
}

.community-beitrag-emoji-anzahl {
  font-size: 0.78rem;
  font-weight: 700;
  color: #374151;
}

.community-reaktion-picker.ist-kompakt {
  margin-top: 0.35rem;
}

.community-reaktion-picker.ist-kompakt .community-reaktion-trigger {
  width: 1.85rem;
  height: 1.85rem;
  font-size: 1.05rem;
}

.community-reaktion-picker.ist-kompakt .community-reaktion-wahl {
  width: 1.75rem;
  height: 1.75rem;
  font-size: 1rem;
}

.community-reaktion-picker.ist-kompakt .community-reaktion-menu {
  padding: 0.28rem 0.32rem;
}

@media (max-width: 640px) {
  .community-reaktion-menu {
    left: 0;
    top: calc(100% + 0.35rem);
    right: auto;
    transform: none;
    max-width: min(92vw, 20rem);
    flex-wrap: wrap;
    border-radius: 1rem;
    white-space: normal;
  }
}

.community-beitrag-kommentare {
  margin-top: 0.35rem;
}

.btn-community-kommentar-oeffnen {
  font-size: 0.82rem;
  padding: 0.4rem 0.75rem;
}

.community-beitrag-kommentar-panel {
  margin-top: 0.65rem;
}

.community-beitrag-kommentare-titel {
  margin: 0 0 0.45rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: #374151;
}

.community-beitrag-kommentar-leer {
  margin: 0 0 0.65rem;
  font-size: 0.84rem;
  color: #6b7280;
}

.community-beitrag-kommentar-liste {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.community-beitrag-kommentar {
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.community-beitrag-kommentar-kopf {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.65rem;
  margin-bottom: 0.25rem;
}

.community-beitrag-kommentar-autor {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f766e;
}

.community-beitrag-kommentar-zeit {
  font-size: 0.75rem;
  color: #9ca3af;
}

.community-beitrag-kommentar-loeschen {
  margin-left: auto;
  border: none;
  background: transparent;
  color: #b91c1c;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.community-beitrag-kommentar-loeschen:hover,
.community-beitrag-kommentar-loeschen:focus-visible {
  color: #7f1d1d;
}

.community-beitrag-kommentar-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.4;
  color: #1f2937;
  white-space: pre-wrap;
  word-break: break-word;
}

.community-beitrag-kommentar-formular {
  display: grid;
  gap: 0.45rem;
}

.community-beitrag-kommentar-input {
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
  min-height: 2.6rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font: inherit;
  font-size: 0.88rem;
  color: #111827;
  background: #fff;
}

.community-beitrag-kommentar-input:focus {
  outline: 2px solid #99f6e4;
  outline-offset: 1px;
  border-color: #14b8a6;
}

.community-beitrag-kommentar-senden {
  justify-self: start;
  font-size: 0.82rem;
  padding: 0.4rem 0.75rem;
}

.community-feed-spot-medien-art {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f766e;
}

.community-feed-spot-video {
  background: #0f172a;
}

.community-feed-fang-details {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
}

.community-feed-fang-bild,
.community-feed-fang-foto .fang-foto-bild {
  display: block;
  width: 100%;
  max-height: 18rem;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 0.75rem;
  border: 1px solid #e5e7eb;
}

.community-feed-fang-foto {
  margin-top: 0.75rem;
}

.community-feed-fang-foto .fang-foto-fehlt {
  display: block;
  padding: 1rem;
  font-size: 0.85rem;
  color: #6b7280;
  background: #f8fafc;
  border: 1px dashed #d1d5db;
  border-radius: 10px;
}

/* ---- Registrierung / Auth ---- */

.auth-karte-hinweis {
  position: absolute;
  /* Unten links, schmal – Kartenmitte bleibt frei fuer Verbotszonen/Gewaesser */
  inset: auto auto 0.65rem 0.65rem;
  right: auto;
  z-index: 450;
  pointer-events: none;
  max-width: min(16.5rem, calc(100% - 1.3rem));
}

.auth-karte-hinweis-inhalt {
  pointer-events: auto;
  max-width: 16.5rem;
  margin: 0;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 118, 110, 0.25);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.16);
  text-align: left;
}

.auth-karte-badge {
  display: inline-block;
  margin: 0 0 0.35rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.18);
  color: #92400e;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.auth-karte-hinweis-inhalt h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--color-text);
}

.auth-karte-hinweis-inhalt p {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.45;
}

.auth-modal-inhalt {
  position: relative;
  max-width: 24rem;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin: 0.75rem 0 1rem;
}

.auth-tab-btn {
  border: 1px solid rgba(15, 118, 110, 0.25);
  background: #f8fafc;
  color: #334155;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.auth-tab-btn.aktiv {
  background: var(--color-green);
  border-color: var(--color-green);
  color: #fff;
}

.auth-formular label {
  display: block;
  margin-top: 0.55rem;
}

.auth-formular input[type="text"],
.auth-formular input[type="email"],
.auth-formular input[type="password"] {
  font-size: 16px;
}

.auth-gast-leiste {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(3.75rem + env(safe-area-inset-bottom, 0px));
  z-index: 9400;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(15, 118, 110, 0.18);
  box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.08);
}

.auth-gast-leiste-text {
  margin: 0;
  flex: 1 1 12rem;
  font-size: 0.82rem;
  line-height: 1.35;
  color: #334155;
}

.auth-gast-leiste-buttons {
  display: flex;
  gap: 0.45rem;
  flex-shrink: 0;
}

.auth-gast-leiste-buttons .karten-btn {
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
}

body.auth-gast-leiste-sichtbar {
  padding-bottom: calc(7.5rem + env(safe-area-inset-bottom, 0px));
}

.auth-checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 0.85rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #334155;
  cursor: pointer;
}

.auth-checkbox-label input {
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.auth-fehler {
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: #b91c1c;
}

.auth-modal-buttons {
  margin-top: 1rem;
}

.auth-email-verifizierung-hinweis {
  margin-top: 0.75rem;
  padding: 0.85rem 0.95rem;
  border-radius: 0.65rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.auth-email-verifizierung-badge {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1d4ed8;
}

.auth-email-verifizierung-status {
  margin-top: 0.55rem;
  font-size: 0.85rem;
}

.auth-passwort-vergessen-zeile {
  margin: 0.35rem 0 0;
  text-align: right;
}

.auth-link-btn {
  border: 0;
  background: none;
  padding: 0;
  color: #2563eb;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: underline;
}

.auth-link-btn:hover {
  color: #1d4ed8;
}

.reset-password-seite {
  min-height: 100vh;
  background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.reset-password-wrap {
  width: min(480px, 100%);
}

.reset-password-karte {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.reset-password-karte h1 {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
}

.reset-password-info,
.reset-token-status {
  color: #475569;
  margin: 0 0 1rem;
}

.reset-password-formular label {
  display: block;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}

.reset-password-formular input {
  width: 100%;
}

.reset-password-erfolg {
  margin: 0.75rem 0 0;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.12);
  color: #065f46;
  font-size: 0.92rem;
}

.modal-schliessen-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #64748b;
}

.profil-auth-gate {
  margin-bottom: 1rem;
}

.auth-gate-karte {
  text-align: center;
}

.auth-gate-karte h3 {
  margin-top: 0;
}

.profil-email-zeile {
  margin: 0.35rem 0 0.5rem;
  font-size: 0.9rem;
  color: #475569;
}

.profil-passwort-bereich {
  margin: 1rem 0 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.profil-passwort-bereich h4 {
  margin: 0 0 0.35rem;
  color: var(--color-green-dark);
  font-size: 1rem;
}

.profil-passwort-formular label {
  display: block;
  margin: 0.65rem 0 0.35rem;
  font-weight: 600;
  color: #334155;
  font-size: 0.88rem;
}

.profil-passwort-formular input[type="password"] {
  width: 100%;
  max-width: 100%;
}

.profil-passwort-status {
  margin: 0.65rem 0 0.35rem;
  min-height: 1.2em;
  font-size: 0.85rem;
}

.profil-passwort-status-erfolg {
  color: #15803d;
}

.profil-passwort-status-fehler {
  color: #b91c1c;
}

.profil-abmelden-btn {
  margin: 0.5rem 0 0.75rem;
}

.profil-gefahrenzone {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #fecaca;
}

.profil-gefahrenzone h4 {
  margin: 0 0 0.35rem;
  color: #991b1b;
  font-size: 0.95rem;
}

.profil-gefahrenzone-info {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: #7f1d1d;
  line-height: 1.45;
}

.btn-profil-loeschen,
.btn-profil-loeschen-weiter,
.btn-profil-loeschen-endgueltig {
  background: #b91c1c;
  border-color: #991b1b;
  color: #fff;
}

.btn-profil-loeschen:hover,
.btn-profil-loeschen-weiter:hover,
.btn-profil-loeschen-endgueltig:hover {
  background: #991b1b;
}

.profil-loeschen-modal-inhalt {
  max-width: 28rem;
}

.profil-loeschen-warnung {
  margin: 0 0 1rem;
  line-height: 1.5;
  color: #374151;
}

.profil-loeschen-warnung-streng {
  color: #991b1b;
  font-weight: 600;
}

.profil-loeschen-passwort {
  width: 100%;
  margin-bottom: 0.75rem;
}

.auth-erfolg {
  color: #166534;
  background: #dcfce7;
  border: 1px solid #86efac;
}

.spot-popup-gesperrt-wrapper .leaflet-popup-content-wrapper {
  background: #f3f4f6;
  border: 1px solid #d1d5db;
}

.spot-marker-locked {
  opacity: 0.92;
}

.spot-lock-badge {
  font-size: 1.1rem;
  margin-left: 0.35rem;
}

.spot-popup-gesperrt .spot-popup-kopf {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.spot-hotspot-paywall {
  margin: 0.35rem 0 0.65rem;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  background: rgba(107, 114, 128, 0.15);
  color: #374151;
  font-weight: 700;
  text-align: center;
}

.spot-popup-gesperrt .spot-popup-hinweis {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.45;
}

.fang-gesamt-zeile {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
}

/* ---- Personal Best & Users Best ---- */

.users-best-karte-kompakt {
  margin: 0.35rem 0 0.75rem;
  font-size: 0.88rem;
  color: #475569;
}

.users-best-start-zeile {
  display: block;
  margin: 0.35rem 0 0.5rem;
}

.users-best-start-inhalt {
  min-width: 0;
}

.users-best-start-kopf {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
  margin-bottom: 0.15rem;
}

.users-best-start-titel {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-green-dark);
}

.dashboard-aktion-btn:hover,
.dashboard-aktion-btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.dashboard-aktion-btn:active {
  transform: translateY(0);
}

.dashboard-aktion-btn-primary {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #f8fafc;
  border-color: rgba(148, 163, 184, 0.35);
}

.dashboard-aktion-btn-primary:hover,
.dashboard-aktion-btn-primary:focus-visible {
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.28);
}

.dashboard-aktion-btn-secondary {
  background: linear-gradient(135deg, var(--color-green-dark) 0%, #1a3d0f 100%);
  color: #f8fafc;
  border-color: rgba(124, 179, 86, 0.45);
}

.dashboard-aktion-btn-secondary:hover,
.dashboard-aktion-btn-secondary:focus-visible {
  box-shadow: 0 8px 22px rgba(45, 80, 22, 0.28);
}

.dashboard-aktion-btn-logout {
  background: #fff;
  color: #475569;
  border-color: #cbd5e1;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.dashboard-aktion-btn-logout:hover,
.dashboard-aktion-btn-logout:focus-visible {
  background: #f8fafc;
  color: #334155;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.1);
}

@media (min-width: 520px) {
  .dashboard-aktionen {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-aktion-btn-primary {
    grid-column: 1 / -1;
  }

  .dashboard-aktionen-unterreihe {
    grid-column: 2;
  }
}

.users-best-kompakt {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.14);
  color: #92400e;
  font-weight: 600;
}

.users-best-kompakt-leer {
  background: #f1f5f9;
  color: #64748b;
  font-weight: 500;
}

.users-best-karte {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(234, 88, 12, 0.08));
  border: 1px solid rgba(245, 158, 11, 0.28);
}

.users-best-klickbar {
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

button.users-best-klickbar {
  display: block;
  width: 100%;
}

button.users-best-klickbar.users-best-kompakt {
  display: inline-block;
  width: auto;
  border: 0;
}

.users-best-klickbar:hover,
.users-best-klickbar:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.18);
  outline: none;
}

.users-best-teaser {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #b45309;
}

.users-best-karte.users-best-leer {
  background: #f8fafc;
  border-color: #e2e8f0;
}

.users-best-label {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #92400e;
}

.users-best-wert {
  margin: 0;
  font-size: 1.05rem;
  color: #1f2937;
}

.users-best-meta {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: #64748b;
}

.personal-best-liste {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.personal-best-eintrag {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e2e8f0;
}

.personal-best-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.personal-best-text span {
  font-size: 0.82rem;
  color: #64748b;
}

.pb-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.6rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: #f59e0b;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  vertical-align: middle;
}

.pb-badge-gross {
  min-width: 2.2rem;
  height: 2.2rem;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.fang-melden-form .fang-laenge-input {
  min-width: 5.5rem;
}

.fang-melden-form .fang-gewicht-input {
  min-width: 5.5rem;
}

.fang-fisch-zeilen {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.fang-fisch-zeile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.fang-fisch-label {
  flex: 0 0 100%;
  font-size: 0.82rem;
  font-weight: 600;
  color: #166534;
}

.fang-fisch-zeilen-container {
  flex: 1 1 100%;
}

.fang-tackle-hinweis {
  flex: 1 1 100%;
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: #475569;
}

.fang-optional-label {
  font-weight: normal;
  color: #64748b;
}

.fang-tackle-grid {
  flex: 1 1 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
}

.fang-tackle-grid input {
  width: 100%;
}

.users-best-bereich,
.personal-best-bereich {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
}

/* ---- Gewässer-Freund ---- */

.gewaesser-freund {
  margin-top: 0.75rem;
}

.gewaesser-freund-titel {
  margin-bottom: 0.35rem !important;
}

.gewaesser-freund-hinweis {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  color: #64748b;
}

.gewaesser-freund-grid {
  display: grid;
  gap: 0.65rem;
}

.gewaesser-freund-karte {
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.gewaesser-freund-karte h4 {
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
  color: #0f766e;
}

.gewaesser-freund-liste {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gewaesser-freund-liste li {
  margin: 0.25rem 0;
  font-size: 0.84rem;
  line-height: 1.4;
}

.gewaesser-freund-liste a {
  color: var(--color-green-dark);
  word-break: break-word;
}

@media (min-width: 640px) {
  .gewaesser-freund-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ---- Gamification: Ränge & Sterne ---- */

.profil-rang-anzeige {
  margin: 0;
}

.profil-rang-block {
  margin: 0.85rem 0 1rem;
}

.profil-rang-label-zeile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.profil-rang-karte {
  padding: 1rem 1.05rem;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(15, 118, 110, 0.12), rgba(245, 158, 11, 0.1));
  border: 1px solid rgba(15, 118, 110, 0.22);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.profil-rang-karte-leer {
  background: #f8fafc;
  border-color: #e2e8f0;
}

.profil-rang-karte-leer p {
  margin: 0;
  font-size: 0.9rem;
  color: #64748b;
}

.profil-rang-label {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f766e;
}

.profil-rang-label-zeile .profil-rang-label {
  margin: 0;
}

.btn-rang-legende {
  position: relative;
  z-index: 5;
  flex-shrink: 0;
  border: 0;
  background: transparent;
  color: #2563eb;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  padding: 0.35rem 0.45rem;
  margin: -0.35rem -0.15rem;
  min-height: 2.75rem;
  min-width: 4.5rem;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(37, 99, 235, 0.15);
  pointer-events: auto !important;
}

.btn-rang-legende:hover,
.btn-rang-legende:focus-visible {
  color: #1d4ed8;
}

.rang-legende-modal {
  z-index: 120000 !important;
}

.rang-legende-modal:not(.versteckt) {
  display: flex !important;
  pointer-events: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
}

body.rang-legende-modal-offen {
  overflow: hidden;
}

.rang-legende-modal-inhalt {
  position: relative;
  max-width: 28rem;
}

.rang-legende-liste {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.rang-legende-liste li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.2rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid #d1fae5;
  border-radius: 8px;
  background: #f0fdf4;
}

.rang-legende-liste li strong {
  font-size: 0.92rem;
  color: #14532d;
}

.rang-legende-liste li span {
  font-size: 0.86rem;
  color: #334155;
}

.rang-legende-liste .rang-sterne {
  margin-top: 0.15rem;
}

.rang-legende-basis {
  background: #f8fafc;
  border-color: #e2e8f0;
}

.rang-legende-hinweis {
  margin: 0.85rem 0 0;
  font-size: 0.86rem;
  color: #475569;
}

.profil-rang-kopf {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
}

.profil-rang-name {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.rang-sterne {
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.rang-sterne-leer {
  color: #94a3b8;
  font-size: 1rem;
}

.rang-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.7rem;
  height: 1.7rem;
  padding: 0 0.35rem;
  border-radius: 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.rang-badge-leer {
  color: #94a3b8;
  background: transparent;
  font-size: 1.15rem;
  font-weight: 400;
}

.rang-badge-bronze {
  color: #7c3a0f;
  background: linear-gradient(145deg, #f0c27a, #c68642);
  box-shadow: inset 0 0 0 1px rgba(124, 58, 15, 0.25);
}

.rang-badge-silber {
  color: #334155;
  background: linear-gradient(145deg, #f8fafc, #94a3b8);
  box-shadow: inset 0 0 0 1px rgba(51, 65, 85, 0.2);
}

.rang-badge-gold {
  color: #713f12;
  background: linear-gradient(145deg, #fde68a, #d97706);
  box-shadow: inset 0 0 0 1px rgba(113, 63, 18, 0.25);
}

.rang-badge-platin {
  color: #0f172a;
  background: linear-gradient(145deg, #e2e8f0, #64748b 55%, #cbd5e1);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.2);
}

.rang-badge-diamant {
  color: #0c4a6e;
  background: linear-gradient(145deg, #e0f2fe, #7dd3fc 40%, #bae6fd);
  box-shadow: inset 0 0 0 1px rgba(12, 74, 110, 0.25);
  font-size: 0.95rem;
}

.rang-badge-logo,
.rang-badge-logo-gold {
  min-width: 2rem;
  height: 2rem;
  padding: 0;
  border-radius: 0.4rem;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.rang-badge-logo .rang-badge-img,
.rang-badge-logo-gold .rang-badge-img {
  display: block;
  width: 2rem;
  height: 2rem;
  object-fit: cover;
  border-radius: 0.35rem;
}

.rang-badge-logo {
  box-shadow: 0 0 0 1px rgba(15, 118, 110, 0.2);
}

.rang-badge-logo-gold {
  box-shadow: 0 0 0 1px rgba(180, 83, 9, 0.35), 0 1px 4px rgba(180, 83, 9, 0.25);
}

.rang-legende-liste .rang-badge-logo,
.rang-legende-liste .rang-badge-logo-gold {
  min-width: 2.25rem;
  height: 2.25rem;
}

.rang-legende-liste .rang-badge-logo .rang-badge-img,
.rang-legende-liste .rang-badge-logo-gold .rang-badge-img {
  width: 2.25rem;
  height: 2.25rem;
}

.rang-legende-liste .rang-badge {
  margin-left: auto;
}

.profil-rang-stats {
  margin: 0.55rem 0 0.75rem;
  font-size: 0.84rem;
  color: #475569;
}

.rang-fortschritt-balken {
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 118, 110, 0.15);
  overflow: hidden;
}

.rang-fortschritt-balken span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f766e, #f59e0b);
  transition: width 0.35s ease;
}

.rang-fortschritt-text {
  margin: 0.55rem 0 0.15rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1e293b;
}

.rang-fortschritt-detail {
  margin: 0;
  font-size: 0.8rem;
  color: #64748b;
}

/* ---- Premium-Challenge ---- */

.premium-challenge-bereich {
  background: linear-gradient(160deg, rgba(109, 40, 217, 0.06), rgba(245, 158, 11, 0.08));
  border: 1px solid rgba(109, 40, 217, 0.18);
  border-radius: 14px;
  padding: 1rem 1.05rem;
}

.premium-challenge-bereich-kopf {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.premium-challenge-bereich-kopf h3 {
  margin: 0 0 0.25rem;
}

.premium-challenge-bereich-icon {
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
}

.premium-challenge-inhalt {
  display: grid;
  gap: 0.85rem;
}

.premium-challenge-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}

.premium-challenge-geschenk {
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  display: grid;
  place-items: center;
}

.premium-challenge-geschenk-icon {
  font-size: 2rem;
  z-index: 1;
}

.premium-challenge-geschenk-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    #7c3aed calc(var(--challenge-fill, 0) * 1%),
    #e2e8f0 0
  );
  mask: radial-gradient(farthest-side, transparent calc(100% - 0.45rem), #000 calc(100% - 0.44rem));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 0.45rem), #000 calc(100% - 0.44rem));
}

.premium-challenge-geschenk-text {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: #5b21b6;
}

.premium-challenge-monat {
  margin: 0;
  font-size: 0.82rem;
  color: #64748b;
}

.premium-challenge-info,
.premium-challenge-erfolg {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.premium-challenge-erfolg {
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.12);
  color: #065f46;
}

.premium-challenge-ziel {
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 118, 110, 0.12);
}

.premium-challenge-ziel-kopf {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
}

.premium-challenge-ziel-kopf strong {
  flex: 1;
}

.premium-challenge-ziel-zahlen {
  font-weight: 700;
  color: #0f766e;
}

.premium-challenge-ziel-icon {
  font-size: 1.1rem;
}

.premium-challenge-balken {
  height: 0.5rem;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.premium-challenge-balken span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #7c3aed, #f59e0b);
  transition: width 0.35s ease;
}

.premium-challenge-ziel-text {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: #64748b;
}

.profil-premium-erspielt-info {
  margin: 0.35rem 0 0.75rem;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  background: rgba(124, 58, 237, 0.1);
  color: #5b21b6;
  font-size: 0.88rem;
  font-weight: 600;
}

.profil-status-badge.status-premium-challenge {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
}

/* ---- Social Fishing ---- */

.social-fishing-suche {
  margin-bottom: 1rem;
}

.mitglied-such-rang {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.45rem;
  margin: 0.15rem 0;
  font-size: 0.78rem;
}

.mitglied-such-rang-name {
  color: #0f766e;
  font-weight: 700;
}

.social-fishing-nah {
  margin: 0.75rem 0 0.35rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(15, 118, 110, 0.14);
}

.social-fishing-nah-titel {
  margin: 0 0 0.2rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f766e;
}

.social-fishing-nah-info,
.social-fishing-nah-leer {
  margin: 0 0 0.45rem;
  font-size: 0.76rem;
  color: #64748b;
}

.social-fishing-nah-liste {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.social-angler-link {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.55rem;
  border: 1px solid rgba(15, 118, 110, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  text-align: left;
}

.social-angler-foto {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e2e8f0;
  display: grid;
  place-items: center;
}

.social-angler-foto-bild {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.social-angler-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
  min-width: 0;
}

.social-angler-link:hover {
  background: #fff;
  border-color: rgba(15, 118, 110, 0.35);
}

.social-angler-name {
  font-size: 0.84rem;
  font-weight: 600;
  color: #1e293b;
}

.social-angler-rang {
  font-size: 0.74rem;
  font-weight: 700;
  color: #0f766e;
  white-space: nowrap;
}

.social-profil-rang {
  margin: 0.85rem 0;
  padding: 0.75rem;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.social-profil-rang-label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #92400e;
}

.social-profil-rang-kopf {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
}

.social-profil-pb {
  margin: 0.85rem 0;
}

.social-profil-pb h4 {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
}

.social-profil-pb-liste {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.social-profil-pb-liste li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
}

.social-profil-pb-leer {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
}

.social-profil-verifizierte-faenge {
  margin: 0.85rem 0;
}

.social-profil-verifizierte-faenge h4 {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
}

.social-profil-fang-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.social-profil-fang-karte {
  padding: 0.45rem;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.social-profil-fang-karte .fang-foto-vorschau {
  max-width: none;
}

.social-profil-fang-ort {
  margin: 0.15rem 0 0;
  font-size: 0.76rem;
  color: #64748b;
}

.mitglied-profil-modal-inhalt .social-profil-rang .rang-sterne {
  font-size: 1rem;
}

/* ---- Fang-Verifizierung ---- */

.fang-foto-label {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.fang-foto-input {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.82rem;
}

.fang-foto-hinweis {
  margin: 0.25rem 0 0.45rem;
  font-size: 0.76rem;
  color: #64748b;
}

.fang-foto-vorschau-wrap {
  margin-bottom: 0.55rem;
}

.fang-foto-vorschau {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: #e2e8f0;
}

.fang-foto-bild {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fang-verifiziert-badge {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.15);
  color: #065f46;
  font-size: 0.72rem;
  font-weight: 700;
}

.moderation-hinweis {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0.35rem 0;
}

/* ---- Karten-Seitenleiste (Spot/Gewässer-Infos) ---- */
.map-karte-wrapper {
  position: relative;
}

.map-sidebar {
  position: absolute;
  inset: 0;
  z-index: 1500;
  pointer-events: none;
}

.map-sidebar:not(.versteckt) {
  pointer-events: auto;
}

.map-sidebar-hintergrund {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.25);
}

.map-sidebar-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: #fff;
  box-shadow: -8px 0 24px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
  transform: translateY(0);
}

.map-sidebar-griff {
  display: none;
}

.map-sidebar-kopf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.map-sidebar-kopf h3 {
  margin: 0;
  font-size: 1.05rem;
}

.map-sidebar-schliessen {
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #64748b;
}

.map-sidebar-inhalt {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.spot-marker-leaflet {
  background: transparent;
  border: 0;
}

.leaflet-marker-icon.spot-marker-leaflet,
.leaflet-marker-icon.super-hotspot-marker {
  cursor: pointer;
  pointer-events: auto !important;
}

.spot-marker-leaflet .spot-marker-pin,
.spot-marker-leaflet .spot-marker-pin svg,
.spot-marker-leaflet .spot-marker-pin path,
.super-hotspot-marker svg,
.super-hotspot-marker path {
  pointer-events: none;
}

.spot-marker-pin svg {
  width: 28px;
  height: 42px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

.super-hotspot-marker {
  background: transparent;
  border: 0;
}

.super-hotspot-marker svg {
  width: 32px;
  height: 46px;
  display: block;
}

.nutzer-standort-leaflet {
  background: transparent;
  border: 0;
  z-index: 1200 !important;
}

.nutzer-standort-punkt {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2563eb;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.45), 0 2px 8px rgba(0, 0, 0, 0.25);
}

.admin-hotspot-suche {
  width: 100%;
  margin: 0.5rem 0 0.75rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
}

.admin-equipment-panel,
.admin-equipment-liste {
  margin-top: 1rem;
}

.admin-equipment-zeile {
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 0.65rem;
}

.equipment-ads-bereich {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed #cbd5e1;
}

.equipment-ad-karte {
  display: block;
  margin-top: 0.45rem;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  background: #eff6ff;
  color: #1e3a8a;
  text-decoration: none;
}

.equipment-ad-karte span {
  display: block;
  font-size: 0.82rem;
  margin-top: 0.15rem;
}

.fang-moderation-karte {
  margin-bottom: 0;
}

.admin-freigabe-zeile .fang-moderation-details-text {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.35;
  color: #64748b;
}

.admin-spot-media-vorschau {
  display: block;
  width: 100%;
  max-height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0.25rem 0;
  background: #e5e7eb;
}

/* ---- Spot Community Uploads ---- */
.spot-community-upload {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(15, 118, 110, 0.15);
}

.spot-upload-gruppe {
  margin-top: 0.65rem;
}

.spot-upload-label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  line-height: 1.4;
}

.spot-upload-gruppe input[type="file"] {
  display: block;
  width: 100%;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
}

.spot-upload-gruppe .karten-btn {
  width: 100%;
}

.spot-upload-hinweis,
.spot-upload-status {
  font-size: 0.82rem;
  line-height: 1.4;
}

.spot-upload-status-ok {
  color: #047857;
}

.spot-upload-status-fehler {
  color: #b91c1c;
}

.spot-correction-wrap {
  margin-top: 0.85rem;
  padding-top: 0.5rem;
}

.spot-correction-wrap .karten-btn {
  width: 100%;
}

.spot-correction-status {
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.admin-spot-correction-text {
  white-space: pre-wrap;
  line-height: 1.35;
  font-size: 0.74rem;
  color: #64748b;
  margin: 0;
}

@media (max-width: 640px) {
  body.map-karte-info-offen {
    overflow: hidden;
  }

  .map-sidebar {
    z-index: 10200;
  }

  .map-sidebar-hintergrund {
    background: rgba(15, 23, 42, 0.42);
  }

  .map-sidebar-panel {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: min(88vh, 100%);
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -12px 40px rgba(15, 23, 42, 0.24);
    animation: map-sidebar-sheet-ein 0.28s ease-out;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .map-sidebar-griff {
    display: block;
    flex-shrink: 0;
    width: 2.75rem;
    height: 0.28rem;
    margin: 0.55rem auto 0.15rem;
    border-radius: 999px;
    background: #cbd5e1;
  }

  .map-sidebar-kopf {
    padding-top: 0.35rem;
  }

  .map-sidebar-inhalt {
    max-height: calc(88vh - 4.5rem);
  }
}

@keyframes map-sidebar-sheet-ein {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

/* ---- User melden (Report) ---- */
.btn-user-melden {
  display: block;
  width: 100%;
  margin-top: 0.65rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(234, 88, 12, 0.45);
  border-radius: 8px;
  background: rgba(255, 247, 237, 0.95);
  color: #c2410c;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-user-melden:hover {
  background: #ffedd5;
  border-color: #ea580c;
  color: #9a3412;
}

.user-melden-modal-inhalt {
  width: min(480px, 100%);
}

.user-melden-modal-inhalt textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.user-melden-upload-hinweis {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: #64748b;
}

.user-melden-fehler {
  margin: 0.65rem 0 0;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 0.84rem;
}

.karten-btn-warnung {
  background: #ea580c;
}

.karten-btn-warnung:hover {
  background: #c2410c;
}

.karten-btn-warnung:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

body.user-melden-offen {
  overflow: hidden;
}

.app-toast {
  position: fixed;
  left: 50%;
  bottom: 1.35rem;
  transform: translateX(-50%);
  z-index: 11000;
  max-width: min(92vw, 26rem);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
  pointer-events: none;
}

.app-toast-erfolg {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.app-toast-fehler {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.formular-status {
  margin: 0.75rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.formular-status-fehler {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.formular-status-erfolg {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.spot-server-upload-float {
  position: fixed;
  left: 50%;
  bottom: calc(5.25rem + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 10050;
  max-width: calc(100% - 24px);
  padding: 0.85rem 1.35rem;
  border: 2px solid #b45309;
  border-radius: 999px;
  background: #f59e0b;
  color: #1f2937;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.spot-server-upload-float:not(.versteckt) {
  display: block;
}

.spot-server-upload-float:disabled {
  opacity: 0.7;
  cursor: wait;
}

.spot-server-upload-hinweis-popup {
  margin: 0.5rem 0;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  background: #fffbeb;
  border: 1px solid #f59e0b;
  color: #92400e;
  font-size: 0.9rem;
  line-height: 1.4;
}

.spot-server-upload-popup {
  margin: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.spot-server-upload-popup .karten-btn {
  width: 100%;
}

.spot-server-upload-hinweis {
  margin: 0.5rem 0 0;
  padding: 0.75rem 1rem;
  border: 1px solid #f59e0b;
  border-radius: 8px;
  background: #fffbeb;
  color: #92400e;
}

.spot-server-upload-hinweis p {
  margin: 0 0 0.5rem;
}

.admin-spots-roh-laden-bereich {
  margin: 0.45rem 0 0.55rem;
  padding: 0.55rem 0;
}

.admin-spots-roh-label {
  display: block;
  margin: 0 0 0.25rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.admin-spots-roh-input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-bottom: 0.45rem;
  font-size: 0.85rem;
}

.admin-spots-roh-btn-zeile {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.admin-spots-roh-btn-zeile .karten-btn {
  flex: 1 1 auto;
  min-height: 2.1rem;
  padding: 0.4rem 0.65rem;
  font-size: 0.78rem;
}

.admin-spots-roh-status {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  line-height: 1.35;
}

.admin-spots-roh-status-fehler {
  color: #991b1b;
}

.admin-spots-roh-status-erfolg {
  color: #065f46;
}

.admin-raw-spot-marker {
  background: transparent;
  border: none;
}

.admin-raw-spot-pin {
  width: 28px;
  height: 28px;
  border: 3px solid #d97706;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.admin-raw-spot-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d97706;
}

.status-badge.status-info {
  background: #dbeafe;
  color: #1e40af;
}

/* KI-Fischerkennung (Premium) */
.fisch-erkennung-status {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: #0f766e;
}

.fisch-erkennung-status.ist-fehler {
  color: #b91c1c;
}

.fisch-erkennung-upload-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0.35rem 0 0.25rem;
  color: var(--color-green-dark);
}

.premium-dash-fischerkennung input[type="file"] {
  width: 100%;
  margin-bottom: 0.55rem;
  font: inherit;
}

.premium-dash-fischerkennung .karten-btn {
  width: 100%;
}

.fisch-erkennung-vorschau {
  margin: 0.65rem 0;
}

.fisch-erkennung-vorschau img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #e5dcc8;
}

.fisch-erkennung-ergebnis-wrap {
  margin-top: 0.65rem;
}

.fisch-erkennung-ergebnis {
  margin: 0;
  padding: 0.7rem 0.75rem;
  border-radius: 10px;
  border: 1px solid #99f6e4;
  background: #f0fdfa;
}

.fisch-erkennung-haupt {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  color: #134e4a;
}

.fisch-erkennung-conf {
  font-weight: 600;
  color: #0f766e;
  font-size: 0.85rem;
}

.fisch-erkennung-hinweis {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: #64748b;
}

.fisch-erkennung-alternativen {
  margin: 0.45rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.8rem;
  color: #475569;
}

.fisch-erkennung-leer {
  border-color: #e2e8f0;
  background: #f8fafc;
  color: #64748b;
  font-size: 0.86rem;
}
