:root {
  --blue: #1565c0;
  --blue-dark: #0d47a1;
  --bg: #f4f7fa;
  --card: #ffffff;
  --text: #20303f;
  --muted: #64788a;
  --warn-bg: #fff3e0;
  --warn-border: #e65100;
  --ok: #2e7d32;
  --warning: #ef6c00;
  --bad: #c62828;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.site-header {
  background: linear-gradient(120deg, var(--blue-dark), var(--blue));
  color: #fff;
  padding: .6rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: nowrap;
}
.logo { color: #fff; text-decoration: none; font-size: 1.3rem; font-weight: 700;
  white-space: nowrap; flex-shrink: 0; }
.btn-sm { padding: .25rem .7rem; font-size: .82rem; }

/* ── Haupt-Navigation ─────────────────────────────────────────────────── */
.site-nav {
  display: flex; align-items: center; gap: .1rem;
  margin-left: auto; flex-shrink: 0; flex-wrap: nowrap;
}
.nav-link {
  color: rgba(255,255,255,.92); text-decoration: none;
  padding: .3rem .55rem; border-radius: 6px; font-size: .87rem;
  white-space: nowrap; background: none; border: none;
  cursor: pointer; transition: background .15s; display: inline-flex;
  align-items: center; gap: .25rem; line-height: 1.3;
}
.nav-link:hover { background: rgba(255,255,255,.17); color: #fff; }
.nav-link.nav-link-active { background: rgba(255,255,255,.22); color: #fff; font-weight: 600; }

/* Dropdown */
.nav-drop { position: relative; }
.nav-drop-menu {
  position: absolute; right: 0; top: calc(100% + 6px);
  background: #fff; border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,.16);
  min-width: 185px; padding: .3rem;
  display: none; z-index: 500;
  animation: nd-in .12s ease;
}
@keyframes nd-in { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
.nav-drop.open .nav-drop-menu { display: block; }

.nav-drop-label {
  display: block; padding: .3rem .65rem .2rem;
  font-size: .78rem; color: var(--muted); border-bottom: 1px solid #edf1f5;
  margin-bottom: .15rem; white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis; max-width: 200px;
}
.nav-drop-item {
  display: flex; align-items: center; gap: .5rem;
  padding: .38rem .65rem; border-radius: 5px;
  color: var(--text); text-decoration: none;
  font-size: .87rem; cursor: pointer; background: none;
  border: none; width: 100%; text-align: left; transition: background .1s;
}
.nav-drop-item:hover { background: #f0f5fa; }
.nav-drop-sep { height: 1px; background: #edf1f5; margin: .25rem .4rem; }

/* Pending-Count-Badge im Nav */
.nav-cnt {
  background: #ff6d00; color: #fff; border-radius: 9px;
  font-size: .7rem; padding: .06rem .38rem; font-weight: 700;
  line-height: 1.4; margin-left: .15rem;
}

/* Reputation-Dot im User-Menu */
.rep-dot { display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; flex-shrink: 0; }
.rep-dot.rep-rookie      { background: #e65100; }
.rep-dot.rep-scout       { background: #2e7d32; }
.rep-dot.rep-river_guide { background: #1565c0; }
.rep-dot.rep-admin       { background: #7b1fa2; }

@media (max-width: 600px) {
  .site-header { flex-wrap: wrap; padding: .5rem .75rem; gap: .35rem; }
  .site-nav { flex-wrap: wrap; }
  .nav-link { font-size: .82rem; padding: .25rem .4rem; }
}

main { max-width: 900px; margin: 0 auto; padding: 1rem; }

.card {
  background: var(--card);
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  padding: 1.25rem;
  margin-bottom: 1rem;
}
h1 { margin-top: 0; font-size: 1.5rem; }
h2 { margin-top: 0; font-size: 1.2rem; }
h3 { font-size: 1rem; margin-bottom: 0.4rem; }

.search-form .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.search-form label { display: flex; flex-direction: column; font-size: 0.9rem; gap: 0.25rem; }
.search-form input[type="date"],
.search-form input[type="number"] {
  padding: 0.5rem;
  border: 1px solid #c5d2dd;
  border-radius: 6px;
  font-size: 1rem;
}
fieldset {
  border: 1px solid #dde6ee;
  border-radius: 8px;
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
}
legend { font-size: 0.85rem; color: var(--muted); padding: 0 0.4rem; }
label.radio, label.check {
  display: flex; flex-direction: row !important;
  align-items: baseline; gap: 0.5rem; margin: 0.35rem 0;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.6rem;
  font-size: 1.05rem;
  cursor: pointer;
}
.btn-primary:hover { background: var(--blue-dark); }
.btn-secondary {
  background: #eef3f8;
  color: var(--blue-dark);
  border: 1px solid #c5d2dd;
  border-radius: 6px;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  cursor: pointer;
}
.btn-secondary:hover { background: #e2ebf4; }
.btn-danger {
  background: var(--bad); color: #fff; border: none;
  border-radius: 4px; padding: .3rem .8rem; cursor: pointer;
  font-family: inherit;
}
.btn-danger:hover { background: #b71c1c; }

.muted { color: var(--muted); }
.small { font-size: 0.8rem; }
.warn { color: var(--warn-border); }

.autocomplete { position: relative; display: block; }
.suggest {
  position: absolute;
  z-index: 1000;
  left: 0;
  right: 0;
  top: 100%;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid #c5d2dd;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  max-height: 240px;
  overflow-y: auto;
}
.suggest li {
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  font-size: 0.9rem;
  border-bottom: 1px solid #eef3f7;
}
.suggest li:last-child { border-bottom: none; }
.suggest li:hover { background: #eef3f8; }

.river-table tr.needs-care { background: #fff8e1; }
.issue { display: inline-block; background: #fff3e0; color: #e65100;
  border-radius: 4px; padding: 0 5px; font-size: 0.78rem; }

.choice-list { list-style: none; padding: 0; margin: 0.5rem 0; }
.choice-list li { margin: 0.3rem 0; }
.choice-list a {
  display: block;
  padding: 0.6rem 0.8rem;
  border: 1px solid #c5d2dd;
  border-radius: 6px;
  text-decoration: none;
  color: var(--text);
}
.choice-list a:hover { background: #eef3f8; border-color: var(--blue); }

.river-list { list-style: none; padding: 0; margin: 0; }
.river-list li { margin-bottom: 0.75rem; }
.river-list p { margin: 0.2rem 0 0; color: var(--muted); font-size: 0.9rem; }

.river-group-header {
  border-left: 4px solid var(--blue);
  padding: 0.4rem 0.8rem;
  margin: 1.2rem 0 0.2rem;
}
.river-group-header h3 { margin: 0; font-size: 1.1rem; }

.tour-meta { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.badge {
  background: #e3f0fb;
  color: var(--blue-dark);
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
  font-size: 0.85rem;
}
.badge-club {
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 999px;
  padding: 0.05rem 0.5rem;
  font-size: 0.78rem;
  white-space: nowrap;
}

.badge-link { text-decoration: none; cursor: pointer; }
.badge-link:hover { background: #cfe3f7; }
.pro-tag {
  background: #6a1b9a;
  color: #fff;
  border-radius: 4px;
  padding: 0 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.safety-note {
  background: #fdecea;
  border-left: 4px solid #c62828;
  border-radius: 6px;
  padding: 0.6rem 0.9rem;
  margin: 0.6rem 0;
  font-size: 0.9rem;
}

/* Aufklappbare Tagesetappen */
.stage-list { margin: 0.5rem 0; }
.stage {
  border: 1px solid #e1e9f0;
  border-radius: 8px;
  margin-bottom: 0.4rem;
  overflow: hidden;
}
.stage > summary {
  cursor: pointer;
  list-style: none;
  padding: 0.5rem 0.7rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.92rem;
}
.stage > summary::-webkit-details-marker { display: none; }
.stage > summary::before { content: "▸"; color: var(--muted); }
.stage[open] > summary::before { content: "▾"; }
.stage[open] > summary { background: #f5f9fc; }
.stage-day { font-weight: 700; color: var(--blue-dark); }
.stage-date { color: var(--muted); }
.stage-route { flex: 1 1 12rem; }
.stage-nums { color: var(--text); white-space: nowrap; font-variant-numeric: tabular-nums; }
.stage-body { padding: 0.3rem 0.8rem 0.8rem; }
.hazard-list { margin: 0.3rem 0; padding-left: 1.1rem; font-size: 0.9rem; }
.weir-icon span { font-size: 16px; line-height: 1;
  text-shadow: 0 0 2px #fff, 0 0 2px #fff; }
.weir-x { display: block; width: 18px; height: 18px; border-radius: 3px;
  background: #b71c1c; color: #fff; font-size: 13px; font-weight: 700;
  line-height: 18px; text-align: center; text-shadow: none; }
.weir-warn { display: block; width: 18px; height: 18px; border-radius: 3px;
  background: #ef6c00; color: #fff; font-size: 14px; font-weight: 900;
  line-height: 18px; text-align: center; text-shadow: none; }
.weir-info { display: block; width: 18px; height: 18px; border-radius: 3px;
  background: #1565c0; color: #fff; font-size: 13px; font-weight: 700;
  line-height: 18px; text-align: center; text-shadow: none; font-style: italic; }
.passage { border-radius: 4px; padding: 0 5px; font-size: 0.78rem; font-weight: 600; }
.passage-runnable { background: #e8f5e9; color: #2e7d32; }
.passage-chute { background: #e3f0fb; color: #1565c0; }
.passage-portage { background: #fdecea; color: #c62828; }
.passage-unknown { background: #fff3e0; color: #e65100; }
.stage-map-wrap { position: relative; margin-top: 0.5rem; background: #fff; }
.stage-map { height: 260px; border-radius: 8px; }
.stage-map-wrap:fullscreen .stage-map { height: 100%; }
.btn-fs { margin-top: 0.4rem; }

.suggestion-list { list-style: none; padding: 0; margin: .5rem 0 0; }
.suggestion-list li { margin: .3rem 0; }
.suggestion-link {
  display: inline-block;
  padding: .3rem .75rem;
  border: 1px solid var(--blue);
  border-radius: 6px;
  color: var(--blue);
  text-decoration: none;
  font-size: .9rem;
}
.suggestion-link:hover { background: #eef3fb; }

.warn-box {
  background: var(--warn-bg);
  border-left: 4px solid var(--warn-border);
  border-radius: 6px;
  padding: 0.6rem 0.9rem;
  margin: 0.75rem 0;
  font-size: 0.9rem;
}
.warn-box ul { margin: 0.3rem 0 0; padding-left: 1.2rem; }

/* Wetterstreifen */
.weather-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  margin: 0.6rem 0;
  font-size: 0.8rem;
}
.weather-label { color: var(--text-muted); font-size: 0.8rem; margin-right: 0.25rem; }
.weather-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  padding: 0.3rem 0.45rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  min-width: 3.5rem;
  cursor: default;
  line-height: 1.2;
}
.weather-good { background: #f1f8f2; }
.weather-ok   { background: #fffbea; }
.weather-bad  { background: #fff0f0; }
.wday  { font-size: 0.72rem; color: var(--text-muted); }
.wicon { font-size: 1.2rem; line-height: 1; }
.wtemp { font-weight: 600; white-space: nowrap; }
.wmin  { color: var(--text-muted); font-weight: 400; }
.wprec { font-size: 0.7rem; color: #1565c0; }

.info-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 0.75rem;
}
.pegel { margin: 0.2rem 0; font-size: 0.92rem; }
.pegel-ok { color: var(--ok); }
.pegel-warning { color: var(--warning); }
.pegel-too_low { color: var(--bad); font-weight: 600; }
.pegel-unknown { color: var(--muted); }

.journeys { margin: 0.2rem 0; font-size: 0.92rem; }
.journey { border: 1px solid #e1e9f0; border-radius: 6px; margin-bottom: 0.35rem; }
.journey > summary {
  cursor: pointer;
  list-style: none;
  padding: 0.4rem 0.6rem;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.journey > summary::-webkit-details-marker { display: none; }
.journey[open] > summary { background: #f5f9fc; }
.j-time { font-weight: 600; font-variant-numeric: tabular-nums; }
.j-dur { color: var(--blue-dark); }
.j-tr { color: var(--muted); font-size: 0.85rem; }
.j-icons { margin-left: auto; letter-spacing: 0.1em; }
.legs { margin: 0; padding: 0.3rem 0.6rem 0.5rem; list-style: none;
  border-left: 2px solid #e0e8ef; }
.leg { display: flex; align-items: baseline; gap: 0.5rem;
  padding: 0.1rem 0 0.1rem 0.6rem; }
.leg-icon { flex: 0 0 1.3rem; text-align: center; }
.leg-body { flex: 1 1 auto; display: flex; flex-direction: column; }
.leg-label { font-weight: 500; }
.leg-route { font-size: 0.82rem; }
.leg-time { flex: 0 0 auto; color: var(--muted); font-size: 0.85rem;
  white-space: nowrap; }
.leg-walk .leg-label { font-weight: 400; color: var(--muted); }

.alternatives { margin: 0.2rem 0; padding-left: 1.2rem; font-size: 0.92rem; }
.alt-besser { color: var(--ok); font-weight: 600; }
.alt-schlechter, .alt-keine { color: var(--muted); }
.alt-verboten { color: var(--bad); }

.alt-loading { display: flex; align-items: center; gap: 0.5rem; }
.spinner {
  display: inline-block;
  width: 0.9rem;
  height: 0.9rem;
  border: 2px solid #c5d2dd;
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Fluss-km-Beschriftung auf der Karte */
.km-label {
  background: rgba(255, 255, 255, 0.8);
  border: none;
  box-shadow: none;
  padding: 0 2px;
  font-size: 10px;
  color: #37474f;
}
.km-label::before { display: none; }
/* Standort-Knopf auf der Karte */
.locate-btn {
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1px solid #aaccee;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.locate-btn:hover { background: #eef3f8; }

/* POI-Editor */
.edit-toolbar { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center;
  margin: 0.5rem 0; }
.reputation-badge { padding: .2rem .55rem; border-radius: 12px; font-size: .8rem;
  font-weight: 600; margin-left: auto; }
.reputation-rookie    { background: #fff3e0; color: #e65100; }
.reputation-scout     { background: #e8f5e9; color: #2e7d32; }
.reputation-river_guide { background: #e3f0fb; color: #1565c0; }
.edit-toolbar select { padding: 0.4rem; border: 1px solid #c5d2dd; border-radius: 6px; }
.btn-secondary.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.mode-bar { display:flex; border:1px solid #b0c4d8; border-radius:6px; overflow:hidden; flex-shrink:0 }
.mode-btn { border:none; padding:.35rem .65rem; font-size:.85rem; cursor:pointer;
  background:#eef3f8; color:var(--blue-dark); white-space:nowrap }
.mode-btn:hover:not(.active) { background:#e2ebf4; }
.mode-btn.active { background:var(--blue); color:#fff; font-weight:600; }
.osm-take { background: var(--blue); color: #fff; border: none; border-radius: 4px;
  padding: 0.2rem 0.5rem; cursor: pointer; }
.edit-map { height: 460px; border-radius: 8px; margin: 0.5rem 0; }
.edit-map.drawing-active { outline: 3px solid #c62828; outline-offset: 2px; }
.draw-banner { background: #c62828; color: #fff; border-radius: 6px;
  padding: 0.5rem 0.8rem; margin: 0.4rem 0; font-weight: 600; }
.edit-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.75rem;
  padding: 0.6rem 0;
}
.edit-panel label { display: flex; flex-direction: column; font-size: 0.9rem;
  gap: 0.2rem; min-width: 220px; }
.edit-panel input { padding: 0.45rem; border: 1px solid #c5d2dd; border-radius: 6px; }
.poi-icon span {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}
.lg { display: inline-block; width: 11px; height: 11px; border-radius: 50%;
  vertical-align: middle; margin: 0 1px 0 6px; }
.lg-access { background: #1565c0; }
.lg-campsite { background: #2e7d32; }
.lg-club { background: #6a1b9a; }
.lg-hazard { background: #ef6c00; }
.lg-info { background: #1565c0; border: 2px solid #90caf9; }

/* OSM-Ladebalken im Editor */
.osm-progress { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; }
.osm-progress-wrap { width: 130px; height: 7px; background: #dde6ee;
  border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.osm-progress-inner { height: 100%; background: var(--blue); border-radius: 4px;
  transition: width 0.25s ease; width: 0%; }

.map-details { margin-top: 0.75rem; }
.map-details summary { cursor: pointer; color: var(--blue); }
.map { height: 380px; border-radius: 8px; margin-top: 0.5rem; }

.site-footer {
  max-width: 900px;
  margin: 0 auto;
  padding: 0.5rem 1rem 1.5rem;
  color: var(--muted);
  font-size: 0.8rem;
}

@media (max-width: 600px) {
  main { padding: 0.5rem; }
  .card { padding: 0.9rem; }
  table.stages { font-size: 0.8rem; }
  table.stages th:nth-child(2), table.stages td:nth-child(2) { display: none; }
}

/* ── Community-Prüfliste (/prufen) ─────────────────────────────────────── */
.verify-header {
  display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap;
  padding-bottom: .75rem; border-bottom: 1px solid #dde6ee; margin-bottom: .75rem;
}
.verify-counter { text-align: center; flex-shrink: 0; }
.counter-num { font-size: 2.8rem; font-weight: 700; color: var(--blue);
  display: block; line-height: 1.1; }
.counter-label { font-size: .82rem; color: var(--muted); }
.verify-intro { flex: 1; }
.verify-filters { display: flex; gap: .5rem; align-items: center; flex-wrap: wrap;
  margin-bottom: .75rem; }
.verify-filters select { padding: .35rem .6rem; border: 1px solid #c5d2dd;
  border-radius: 6px; font-size: .9rem; }

.verify-card {
  border: 1px solid #dde6ee; border-radius: 8px;
  padding: .65rem .9rem; margin-bottom: .45rem;
  animation: vc-in .22s ease both;
  transition: opacity .3s, transform .3s, max-height .35s ease,
              padding .35s ease, margin .35s ease, border-color .35s ease;
  overflow: hidden;
}
@keyframes vc-in {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0); }
}
.verify-card:hover { border-color: #b0c4d8; }
.verify-card.removing {
  opacity: 0; transform: translateX(22px); max-height: 0 !important;
  padding-top: 0; padding-bottom: 0; margin-bottom: 0; border-color: transparent;
}

.vc-head { display: flex; align-items: center; gap: .5rem; }
.vc-name { font-weight: 600; font-size: .97rem; }
.vc-type-label { font-size: .76rem; color: var(--muted); margin-left: auto;
  white-space: nowrap; }
.vc-meta { display: flex; gap: .65rem; font-size: .83rem; color: var(--muted);
  margin: .2rem 0 .45rem; flex-wrap: wrap; align-items: center; }
.vc-actions { display: flex; gap: .4rem; flex-wrap: wrap; align-items: center; }

.type-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
  display: inline-block; }
.type-dot.type-access   { background: #1565c0; }
.type-dot.type-campsite { background: #2e7d32; }
.type-dot.type-hazard   { background: #ef6c00; }
.type-dot.type-biwak    { background: #00838f; }
.type-dot.type-club     { background: #6a1b9a; }
.type-dot.type-info     { background: #1890ff; }

.vote-badge { font-size: .76rem; padding: .12rem .4rem;
  border-radius: 10px; font-weight: 600; }
.vote-badge.vote-pos  { background: #e8f5e9; color: #1b5e20; }
.vote-badge.vote-neg  { background: #ffebee; color: #b71c1c; }
.vote-badge.vote-done { background: #1b5e20; color: #fff; }

.btn-danger { background: #c62828; color: #fff; border: none; border-radius: 8px;
  padding: .35rem .8rem; cursor: pointer; font-size: .85rem; font-weight: 500; }
.btn-danger:hover { background: #b71c1c; }
.btn-danger:disabled, .btn-primary:disabled { opacity: .55; cursor: not-allowed; }

.verify-empty { text-align: center; padding: 2.5rem 0; color: var(--ok);
  font-size: 1.05rem; }

/* Teaser-Pill im Editor */
.pending-pill {
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  background: #fff8e1; border: 1px solid #ffe082; border-radius: 6px;
  padding: .45rem .8rem; margin-bottom: .6rem; font-size: .88rem;
}
.pending-pill a { margin-left: auto; }

/* Info-Box (grün) */
.info-box {
  background: #e8f5e9; border-left: 4px solid #43a047;
  border-radius: 6px; padding: .6rem .9rem;
  margin: .6rem 0; font-size: .9rem;
}

/* Generische Datentabelle */
.data-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.data-table th {
  text-align: left; padding: .3rem .6rem;
  border-bottom: 2px solid #dde6ee; color: #546e7a; font-weight: 600;
}
.data-table td { padding: .3rem .6rem; border-bottom: 1px solid #edf2f7; }
.data-table tr:last-child td { border-bottom: none; }

/* Sync-Anfragen Status-Badges */
.sr-badge { font-size: .75rem; padding: .15rem .5rem;
  border-radius: 10px; font-weight: 600; white-space: nowrap; }
.sr-badge-pending  { background: #fff3e0; color: #e65100; }
.sr-badge-done     { background: #e8f5e9; color: #1b5e20; }
.sr-badge-rejected { background: #fce4ec; color: #880e4f; }

/* Sync-Anfragen Zeilenfärbung */
.sr-row.sr-done     td { opacity: .55; }
.sr-row.sr-rejected td { opacity: .4; }
