:root {
  --bg: #f4f5f7;
  --card: #ffffff;
  --ink: #1f2933;
  --muted: #6b7280;
  --line: #e2e5ea;
  --accent: #1f4e79;
  --accent-dark: #163a5a;
  --frei: #cdebd2;
  --frei-ink: #1d6b34;
  --voll: #fbe7b3;
  --voll-ink: #8a6100;
  --ueber: #f3bcbc;
  --ueber-ink: #9b2222;
  --inaktiv: #eceef1;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

a { color: var(--accent); }

/* ---- Topbar ---- */
.topbar {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--accent);
  color: #fff;
  padding: 0 24px;
  height: 52px;
}
.topbar .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}
.topbar .brand-icon {
  height: 38px;
  width: auto;
  display: block;
}

/* Logo auf Login-Seite */
.login-logo {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 0 auto 8px auto;
}
.topbar nav { display: flex; gap: 4px; }
.topbar nav a {
  color: #d6e2ee;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 5px;
  font-weight: 500;
}
.topbar nav a:hover { background: var(--accent-dark); color: #fff; }
.topbar nav a.aktiv { background: #fff; color: var(--accent); }
.topbar-rechts { margin-left: auto; }
.meldung-link {
  color: #fff; text-decoration: none; padding: 5px 12px; border-radius: 5px;
  border: 1px solid #d6e2ee; font-weight: 600;
}
.meldung-link:hover { background: var(--accent-dark); }
.meldung-link.aktiv { background: #fff; color: var(--accent); border-color: #fff; }

.user-menu { position: relative; }
.user-menu > summary { list-style: none; cursor: pointer; }
.user-menu > summary::-webkit-details-marker { display: none; }
.user-menu-popup {
  position: absolute; right: 0; top: 38px; z-index: 50;
  background: #fff; color: var(--ink);
  border: 1px solid var(--line); border-radius: 6px;
  padding: 10px 14px; min-width: 220px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  display: flex; flex-direction: column; gap: 8px;
}
.user-menu-popup a {
  color: var(--accent); text-decoration: none;
  padding: 4px 0;
}
.user-menu-popup a:hover { text-decoration: underline; }
.user-menu-info { font-size: 13px; color: var(--muted); }

main {
  padding: 20px clamp(16px, 2vw, 32px);
  max-width: 2400px;
  margin: 0 auto;
}

/* ---- Überschriften / allgemein ---- */
h1 { font-size: 21px; margin: 0 0 4px; }
h2 { font-size: 16px; margin: 24px 0 10px; }
.untertitel { color: var(--muted); margin: 0 0 18px; }
.kopfzeile {
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap; gap: 12px;
}

/* ---- Karten ---- */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 16px;
}
.kacheln { display: flex; gap: 14px; flex-wrap: wrap; }
.kachel {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 8px; padding: 16px 20px; min-width: 150px; flex: 1;
}
.kachel .zahl { font-size: 28px; font-weight: 700; color: var(--accent); }
.kachel .label { color: var(--muted); }

/* ---- Buttons ---- */
.btn, button {
  font: inherit; cursor: pointer;
  border: 1px solid var(--accent);
  background: var(--accent); color: #fff;
  padding: 7px 14px; border-radius: 5px; text-decoration: none;
  display: inline-block;
}
.btn:hover, button:hover { background: var(--accent-dark); }
.btn.sekundaer {
  background: #fff; color: var(--accent);
}
.btn.sekundaer:hover { background: #eef2f6; }
.btn.gefahr, button.gefahr {
  background: #fff; color: var(--ueber-ink); border-color: #d8a0a0;
}
.btn.gefahr:hover, button.gefahr:hover { background: #f8e9e9; }
.btn.klein, button.klein { padding: 3px 9px; font-size: 13px; }
.btn-zeile { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

/* ---- Tabellen ---- */
table { border-collapse: collapse; width: 100%; background: var(--card); }
.card table { background: transparent; }
th, td {
  text-align: left; padding: 8px 10px;
  border-bottom: 1px solid var(--line);
}
th { background: #eef1f4; font-weight: 600; }
tbody tr:hover { background: #f8f9fb; }
.tabelle-rahmen {
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
}

/* ---- Formulare ---- */
form .feld { margin-bottom: 14px; }
form label { display: block; font-weight: 600; margin-bottom: 4px; }
input[type=text], input[type=number], input[type=date], select, textarea {
  font: inherit; padding: 7px 9px;
  border: 1px solid var(--line); border-radius: 5px;
  width: 100%; max-width: 420px; background: #fff;
}
textarea { max-width: 100%; min-height: 60px; }
.feld-gruppe { display: flex; gap: 12px; flex-wrap: wrap; }
.feld-gruppe .feld { flex: 1; min-width: 90px; }
.hinweis { color: var(--muted); font-size: 13px; margin-top: 3px; }
fieldset {
  border: 1px solid var(--line); border-radius: 6px;
  padding: 12px 16px; margin: 0 0 14px;
}
fieldset legend { font-weight: 600; padding: 0 6px; }

/* ---- Filterleiste ---- */
.filter {
  display: flex; gap: 14px; align-items: flex-end; flex-wrap: wrap;
}
.filter .feld { margin: 0; }
.filter select { width: auto; }

/* ---- Badges ---- */
.badge {
  display: inline-block; padding: 1px 8px; border-radius: 10px;
  font-size: 12px; font-weight: 600; background: var(--inaktiv);
  color: var(--muted);
}
.badge.aktiv { background: var(--frei); color: var(--frei-ink); }
.badge.geplant { background: var(--voll); color: var(--voll-ink); }
.badge.warnung { background: var(--ueber); color: var(--ueber-ink); }
.badge.extern { background: #d9e4f2; color: #2a4a72; }

/* Rollen-Badges in der Mitarbeiter-Liste: kompakter, monospaced kuerzel */
.rolle-badge {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 9px;
  margin-left: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  background: var(--accent);
  color: #fff;
  vertical-align: middle;
  cursor: help;
}
.rolle-badge small {
  font-weight: 500;
  opacity: 0.85;
  margin-left: 2px;
}
.rolle-badge.vertretung {
  background: transparent;
  color: var(--accent);
  border: 1px dashed var(--accent);
  padding: 0 5px;
}

.check-zeile {
  display: flex; align-items: center; gap: 8px;
  font-weight: normal; margin-bottom: 0;
}
.check-zeile input[type=checkbox] { width: 16px; height: 16px; }

/* Aktuelle Kalenderwoche hervorheben (Heatmap und Planungsraster) */
table.heatmap th.aktuelle-kw, table.heatmap td.aktuelle-kw,
table.raster th.aktuelle-kw, table.raster td.aktuelle-kw {
  outline: 2px solid var(--accent); outline-offset: -2px;
}

/* Quartal-Header-Zeile (Q1–Q4) über den KW-Spalten */
table.heatmap tr.quartal-zeile th,
table.raster tr.quartal-zeile th {
  font-size: 11px; font-weight: 700; text-align: center;
  padding: 3px 0; border-bottom: 2px solid var(--accent);
}
table.heatmap tr.quartal-zeile th.quartal-corner,
table.raster tr.quartal-zeile th.quartal-corner,
table.heatmap tr.quartal-zeile th.quartal-end,
table.raster tr.quartal-zeile th.quartal-end {
  background: var(--card); border-bottom: 2px solid var(--line);
}
table.heatmap tr.quartal-zeile th.quartal-corner,
table.raster tr.quartal-zeile th.quartal-corner {
  position: sticky; left: 0; z-index: 4;
}
.quartal-q1 { background: #d8e7f5; color: #1d3a5c; }
.quartal-q2 { background: #d6eecf; color: #1d6b34; }
.quartal-q3 { background: #f7e8b4; color: #8a6100; }
.quartal-q4 { background: #f1cbd1; color: #8a2330; }
/* Header-Zeile darunter braucht extra top-position, weil zwei Reihen sticky werden. */
table.heatmap tr.quartal-zeile th { position: sticky; top: 0; z-index: 4; }
table.heatmap thead tr:nth-child(2) th { top: 24px; }
table.raster tr.quartal-zeile th { position: sticky; top: 0; z-index: 4; }
table.raster thead tr:nth-child(2) th { top: 24px; }
.kw-eintritt { color: var(--frei-ink); font-weight: 700; margin-left: 2px; cursor: help; }
.kw-austritt { color: var(--ueber-ink); font-weight: 700; margin-left: 2px; cursor: help; }
.vormals {
  color: #2a4a72; font-size: 12px; background: #e3ecf5;
  padding: 1px 8px; border-radius: 8px; margin-left: 6px;
}

/* ---- Hilfe / Online-Dokumentation ---- */
.hilfe-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}
.hilfe-sidebar {
  background: var(--card); border: 1px solid var(--line); border-radius: 8px;
  padding: 16px 18px; position: sticky; top: 16px;
}
.hilfe-sidebar h2 { font-size: 14px; margin: 0 0 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.hilfe-sidebar h3 { font-size: 13px; margin: 18px 0 6px; color: var(--muted); }
.hilfe-sidebar nav ol { margin: 0; padding-left: 18px; }
.hilfe-sidebar nav li { margin: 4px 0; }
.hilfe-sidebar nav a { color: var(--ink); text-decoration: none; display: block; padding: 3px 6px; border-radius: 4px; }
.hilfe-sidebar nav a:hover { background: #eef1f4; }
.hilfe-sidebar nav a.aktiv { background: var(--accent); color: #fff; }
.hilfe-toc ul { padding-left: 16px; margin: 0; font-size: 13px; }
.hilfe-toc a { color: var(--accent); text-decoration: none; }
.hilfe-toc a:hover { text-decoration: underline; }

.hilfe-inhalt {
  background: var(--card); border: 1px solid var(--line); border-radius: 8px;
  padding: 24px 32px; max-width: 920px;
  line-height: 1.6;
}
.hilfe-inhalt h1 { font-size: 26px; margin: 0 0 12px; }
.hilfe-inhalt h2 { font-size: 20px; margin: 28px 0 10px; border-bottom: 1px solid var(--line); padding-bottom: 4px; }
.hilfe-inhalt h3 { font-size: 16px; margin: 22px 0 8px; }
.hilfe-inhalt p { margin: 8px 0 14px; }
.hilfe-inhalt ul, .hilfe-inhalt ol { padding-left: 22px; }
.hilfe-inhalt li { margin: 4px 0; }
.hilfe-inhalt code {
  background: #eef1f4; padding: 1px 6px; border-radius: 3px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 13px;
}
.hilfe-inhalt pre {
  background: #f5f6f8; border: 1px solid var(--line);
  border-radius: 6px; padding: 12px 14px; overflow-x: auto;
}
.hilfe-inhalt pre code { background: transparent; padding: 0; }
.hilfe-inhalt blockquote {
  margin: 12px 0; padding: 10px 16px; background: #f0f4f9;
  border-left: 3px solid var(--accent); border-radius: 4px;
}
.hilfe-inhalt table { margin: 12px 0; border-collapse: collapse; }
.hilfe-inhalt table th, .hilfe-inhalt table td {
  border: 1px solid var(--line); padding: 6px 12px; text-align: left;
}
.hilfe-inhalt table th { background: #eef1f4; }
.hilfe-inhalt a { color: var(--accent); }
.hilfe-inhalt .toc { display: none; }   /* Inhaltsverzeichnis zeigt die Sidebar */
.hilfe-inhalt h2[id]::before,
.hilfe-inhalt h3[id]::before {
  content: ""; display: block; height: 60px; margin-top: -60px; visibility: hidden;
}

@media (max-width: 900px) {
  .hilfe-layout { grid-template-columns: 1fr; }
  .hilfe-sidebar { position: static; }
}
table.heatmap tr.admin-row td { background: #f3f0e6; font-style: italic; }
table.heatmap tr.admin-row td.name-spalte { background: #ede8d6; }

/* ---- Projektbaum ---- */
.baum-vertrag { margin-bottom: 14px; }
.baum-vertrag > summary {
  cursor: pointer; padding: 12px 16px; font-weight: 700; font-size: 15px;
  background: var(--card); border: 1px solid var(--line); border-radius: 8px;
  display: flex; align-items: center; gap: 10px;
}
.baum-vertrag[open] > summary { border-radius: 8px 8px 0 0; }
.baum-inhalt {
  border: 1px solid var(--line); border-top: none;
  border-radius: 0 0 8px 8px; padding: 8px 16px 14px;
  background: var(--card);
}
.baum-projekt { margin: 10px 0 4px; }
.baum-projekt > summary {
  cursor: pointer; font-weight: 600; padding: 6px 8px;
  background: #eef1f4; border-radius: 5px;
  display: flex; align-items: center; gap: 8px;
}
.baum-ap-liste { margin: 6px 0 6px 18px; }
.baum-ap {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 8px; border-bottom: 1px solid var(--line);
}
.baum-ap:last-child { border-bottom: none; }
.baum-ap .ap-name { flex: 1; }
.laufzeit { color: var(--muted); font-size: 13px; white-space: nowrap; }
.spacer { flex: 1; }

/* ---- Auslastungs-Heatmap ---- */
.heatmap-rahmen { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; }
table.heatmap { width: auto; min-width: 100%; font-size: 12px; }
table.heatmap th, table.heatmap td {
  padding: 3px 4px; text-align: center; border: 1px solid var(--line);
  white-space: nowrap;
}
table.heatmap th.name-spalte, table.heatmap td.name-spalte {
  text-align: left; position: sticky; left: 0; z-index: 2;
  background: #eef1f4; min-width: 160px;
}
table.heatmap td.name-spalte { background: var(--card); font-weight: 600; }
table.heatmap thead th { position: sticky; top: 0; z-index: 1; }
table.heatmap thead th.name-spalte { z-index: 3; }
.zelle-leer { background: #fff; color: #c2c8d0; }
.zelle-frei { background: var(--frei); color: var(--frei-ink); }
.zelle-voll { background: var(--voll); color: var(--voll-ink); }
.zelle-ueber { background: var(--ueber); color: var(--ueber-ink); font-weight: 700; }
.zelle-inaktiv { background: var(--inaktiv); color: #b3b9c0; }
.summe-spalte { background: #eef1f4; font-weight: 700; }

/* ---- Planungsraster ---- */
.raster-rahmen { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; }
table.raster { width: auto; min-width: 100%; font-size: 12px; }
table.raster th, table.raster td {
  padding: 3px 4px; text-align: center; border: 1px solid var(--line);
}
table.raster th.name-spalte, table.raster td.name-spalte {
  text-align: left; position: sticky; left: 0; background: #eef1f4;
  min-width: 170px; z-index: 1;
}
table.raster td.name-spalte { background: var(--card); }
table.raster input {
  width: 46px; padding: 3px 2px; text-align: center; border-radius: 3px;
  border: 1px solid var(--line);
}
table.raster th.ausserhalb { background: #f3bcbc; color: var(--ueber-ink); }
table.raster td.ausserhalb { background: #faf0f0; position: relative; }
table.raster td.ausserhalb input { background: #f3d4d4; }
table.raster td.abwesend { background: #fdf6d2; position: relative; }
table.raster td.abwesend input { background: #f7eaa0; color: #6b5a14; }
/* Lock-Icon im raster (AP-Detail). */
table.raster td.ausserhalb::before,
table.raster td.abwesend::before {
  content: "🔒"; font-size: 9px; position: absolute; top: 0; right: 2px;
  opacity: 0.65; pointer-events: none;
}

/* Editierbare Zellen innerhalb der Mitarbeiter-Heatmap */
table.heatmap td.kw-input-zelle { padding: 1px; }
table.heatmap td.kw-input-zelle input {
  width: 42px; padding: 2px 3px; text-align: center; border: 1px solid var(--line);
  border-radius: 2px; font-size: 12px; background: transparent;
}
/* Spinner-Buttons (Pfeile) bei number-Inputs ausblenden – stören bei
   schneller Tastatur-Eingabe, Zahl reicht. */
table.heatmap td input[type=number]::-webkit-outer-spin-button,
table.heatmap td input[type=number]::-webkit-inner-spin-button,
table.raster td input[type=number]::-webkit-outer-spin-button,
table.raster td input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
table.heatmap td input[type=number],
table.raster td input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}
table.heatmap td.kw-input-zelle.zelle-frei input { background: rgba(255,255,255,0.55); }
table.heatmap td.ausserhalb { background: #faf0f0; padding: 1px; position: relative; }
table.heatmap td.ausserhalb input {
  width: 42px; padding: 2px 3px; text-align: center;
  background: #f3d4d4; color: #7a3030; border: 1px solid #e0a3a3;
  border-radius: 2px; cursor: not-allowed;
}
/* Gesperrt wegen Abwesenheit: gelbe Markierung mit Lock-Icon. */
table.heatmap td.zelle-inaktiv.kw-input-zelle {
  background: #fdf6d2; padding: 1px; position: relative;
}
table.heatmap td.zelle-inaktiv.kw-input-zelle input {
  width: 42px; padding: 2px 3px; text-align: center;
  background: #f7eaa0; color: #6b5a14; border: 1px solid #d4be4a;
  border-radius: 2px; cursor: not-allowed;
}
/* Pseudo-Element: kleines Lock-Icon oben rechts in gesperrten Zellen. */
table.heatmap td.ausserhalb::before,
table.heatmap td.zelle-inaktiv.kw-input-zelle::before {
  content: "🔒"; font-size: 9px; position: absolute; top: 0; right: 2px;
  opacity: 0.65; pointer-events: none;
}

/* Legende-Block über der Heatmap. */
.sperr-legende {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  font-size: 12px; color: var(--ink-soft, #555);
  background: #fafaf6; border: 1px solid #e5e0c8;
  border-radius: 4px; padding: 8px 12px; margin: 8px 0 4px;
}
.sperr-legende .lock-beispiel {
  display: inline-flex; align-items: center; gap: 6px;
}
.sperr-legende .lock-swatch {
  display: inline-block; width: 22px; height: 18px;
  border-radius: 3px; border: 1px solid #ccc;
  position: relative;
}
.sperr-legende .lock-swatch::after {
  content: "🔒"; font-size: 8px; position: absolute;
  top: 0; right: 1px; opacity: 0.7;
}
.sperr-legende .lock-swatch.abwesenheit { background: #f7eaa0; border-color: #d4be4a; }
.sperr-legende .lock-swatch.ausserhalb { background: #f3d4d4; border-color: #e0a3a3; }

/* Mitarbeiter-Liste: alle Bereich-Tabellen sollen gleiche Spaltenbreiten haben. */
table.ma-liste { table-layout: fixed; width: 100%; }
table.ma-liste td { overflow: hidden; text-overflow: ellipsis; }

/* ---- SVG-Trendcharts ---- */
.trendchart { width: 100%; height: auto; display: block; margin-top: 6px; }
.trend-legende {
  display: flex; flex-wrap: wrap; gap: 14px;
  font-size: 13px; color: var(--ink); margin-bottom: 4px;
}
.trend-legende span { display: flex; align-items: center; gap: 6px; }
.trend-strich {
  display: inline-block; width: 18px; height: 3px; border-radius: 2px;
}
table.raster input:disabled { cursor: not-allowed; color: #b9888a; }
.entfernen-btn { padding: 0 6px; margin-right: 6px; font-size: 12px; }

.legende { display: flex; gap: 16px; flex-wrap: wrap; margin: 10px 0; font-size: 13px; }
.legende span { display: flex; align-items: center; gap: 6px; }
.legende .swatch {
  width: 16px; height: 16px; border-radius: 3px; border: 1px solid var(--line);
  display: inline-block;
}

/* ---- Zuordnungsmatrix ---- */
.matrix-rahmen {
  overflow: auto; border: 2px solid var(--line); border-radius: 8px;
  max-height: 78vh;
}
form.bearbeitung .matrix-rahmen { border-color: var(--accent); }
table.matrix { width: auto; border-collapse: separate; border-spacing: 0; font-size: 12px; }
table.matrix th, table.matrix td {
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
table.matrix th.ecke {
  position: sticky; top: 0; left: 0; z-index: 5;
  background: #e4e8ec; min-width: 240px; max-width: 240px;
  text-align: left; padding: 8px 10px; vertical-align: bottom;
  font-size: 12px;
}
table.matrix th.ma-kopf {
  position: sticky; top: 0; z-index: 3;
  background: #eef1f4; height: 156px; width: 30px; min-width: 30px;
  padding: 6px 0; vertical-align: bottom; text-align: center;
}
table.matrix th.ma-kopf span {
  writing-mode: vertical-rl; transform: rotate(180deg);
  white-space: nowrap; display: inline-block; font-weight: 600;
}
table.matrix td.ap-spalte {
  position: sticky; left: 0; z-index: 2;
  background: var(--card); min-width: 240px; max-width: 240px;
  text-align: left; padding: 5px 10px;
}
table.matrix td.ap-spalte a { display: block; }
table.matrix td.ap-spalte .laufzeit { display: block; }
table.matrix tr.gruppe td {
  position: sticky; left: 0;
  background: var(--accent); color: #fff; font-weight: 700;
  padding: 5px 10px;
}
table.matrix tbody td {
  text-align: center; padding: 3px; background: var(--card);
}
table.matrix tbody tr:hover td { background: #f4f6f8; }
table.matrix tbody tr:hover td.ap-spalte { background: #eef1f4; }
table.matrix td.hat-stunden { background: #d8ebd8; }
table.matrix tbody tr:hover td.hat-stunden { background: #cde3cd; }
table.matrix td { position: relative; }
table.matrix input[type=checkbox] { width: 16px; height: 16px; cursor: pointer; }
table.matrix input[type=checkbox]:disabled { cursor: default; }
form.bearbeitung table.matrix td:hover { outline: 2px solid var(--accent); }

.meldung {
  padding: 10px 14px; border-radius: 6px; margin-bottom: 14px;
  background: #fef3cd; border: 1px solid #f5d97a; color: #7a5b00;
}

/* ---- Bug-Reports / Feature-Requests ---- */
.meldung-eintrag {
  background: var(--card); border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 6px; padding: 12px 16px; margin-bottom: 10px;
}
.meldung-eintrag.status-erledigt { border-left-color: var(--frei-ink); opacity: 0.85; }
.meldung-eintrag.status-abgelehnt { border-left-color: #888; opacity: 0.7; }
.meldung-eintrag.status-in_arbeit { border-left-color: var(--voll-ink); }
.meldung-kopf {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.meldung-id { color: var(--muted); font-family: ui-monospace, monospace; }
.meldung-titel { font-size: 15px; }
.meldung-text {
  margin-top: 8px; white-space: pre-wrap;
  background: #f8f9fb; border-radius: 4px; padding: 8px 12px;
}
.meldung-antwort { margin-top: 10px; padding-left: 14px; border-left: 3px solid var(--frei-ink); }
.meldung-antwort-kopf { font-weight: 600; color: var(--frei-ink); }

.badge.art-bug { background: var(--ueber); color: var(--ueber-ink); }
.badge.art-feature { background: #d9e4f2; color: #2a4a72; }
.badge.status-offen { background: var(--voll); color: var(--voll-ink); }
.badge.status-in_arbeit { background: #d9e4f2; color: #2a4a72; }
.badge.status-erledigt { background: var(--frei); color: var(--frei-ink); }
.badge.status-abgelehnt { background: var(--inaktiv); color: var(--muted); }
.leer-hinweis { color: var(--muted); padding: 16px 0; }
.pfad { color: var(--muted); font-size: 13px; margin-bottom: 4px; }
