:root {
  --bg: #1c1a18;
  --surface: #26231f;
  --surface-2: #322e28;
  --text: #f3ece2;
  --text-dim: #b8ada0;
  --accent: #cba25a;
  --accent-dark: #8f6f37;
  --border: #3d372f;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  padding-bottom: 76px;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  padding: 14px 16px 8px;
  border-bottom: 1px solid var(--border);
}

.app-header h1 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  color: var(--accent);
  font-weight: 600;
}

.shoot-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.shoot-tabs::-webkit-scrollbar {
  display: none;
}

.shoot-tab {
  flex: 0 0 auto;
  padding: 9px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-dim);
  font-size: 0.8rem;
  white-space: nowrap;
}

.shoot-tab.active {
  background: var(--accent);
  color: #1c1a18;
  border-color: var(--accent);
  font-weight: 600;
}

#main {
  padding: 16px;
  max-width: 640px;
  margin: 0 auto;
}

button {
  cursor: pointer;
  font-family: inherit;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
  z-index: 10;
}

.nav-tab {
  flex: 1;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 0.75rem;
  padding: 8px 2px;
  border-radius: 10px;
}

.nav-tab.active {
  color: var(--accent);
  background: var(--surface-2);
  font-weight: 600;
}

/* Plan view */
.plan-controls {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
}

.plan-controls label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.minutes-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.minutes-row input {
  width: 70px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phase-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 12px 14px;
}

.phase-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.phase-time {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
}

.phase-name {
  font-size: 1rem;
  font-weight: 600;
}

.phase-poses {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-dim);
}

.phase-pose {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phase-pose img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  background: #f6f1e9;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.phase-poses strong { color: var(--text); }

/* Random pose view */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.chip {
  padding: 6px 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-dim);
  font-size: 0.78rem;
}

.chip.active {
  background: var(--accent);
  color: #1c1a18;
  border-color: var(--accent);
  font-weight: 600;
}

.pose-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.pose-illustration {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  background: #f6f1e9;
  border-radius: 10px;
  margin-bottom: 14px;
}

.pose-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
}

.pose-card h2 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.pose-instruction {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.4;
  margin: 0 0 10px;
}

.pose-tip {
  color: var(--text-dim);
  font-size: 0.85rem;
  font-style: italic;
  margin: 0;
}

.btn-primary, .btn-secondary {
  border-radius: 12px;
  border: none;
  padding: 12px 18px;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--accent);
  color: #1c1a18;
  font-weight: 700;
}

.btn-secondary {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-big {
  width: 100%;
  margin-top: 16px;
  padding: 16px;
  font-size: 1.05rem;
}

/* Categories view */
.category-section {
  margin-bottom: 20px;
}

.category-section h3 {
  color: var(--accent);
  font-size: 0.95rem;
  margin: 0 0 8px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
}

.pose-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
}

.pose-item summary {
  font-weight: 600;
  cursor: pointer;
}

.pose-item .pose-instruction,
.pose-item .pose-tip {
  margin-top: 8px;
}

/* Checklist view */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.check-item input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
}

/* Ablaufplan thumbnails are clickable */
.phase-pose {
  cursor: pointer;
}

/* Splash screen */
.splash {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  background: var(--bg);
  overflow: hidden;
}

.splash.hidden {
  display: none;
}

.splash-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.5;
}

.splash-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 24px 20px calc(20px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, var(--bg) 45%, transparent);
  text-align: center;
}

.splash-title {
  color: var(--accent);
  font-size: 1.8rem;
  margin: 0 0 8px;
}

.splash-tagline {
  color: var(--text);
  font-size: 0.95rem;
  margin: 0 0 18px;
  line-height: 1.4;
}

.splash-footer {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--text-dim);
  font-size: 0.72rem;
}

.splash-brand {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.splash-fotoreich {
  margin-top: 4px;
  color: var(--text-dim);
  text-decoration: none;
}

.splash-fotoreich:hover {
  color: var(--accent);
}

/* Pose detail modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(10, 9, 8, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.hidden {
  display: none;
}

.modal-card {
  background: var(--surface);
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(10, 9, 8, 0.6);
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.modal-img-wrap {
  background: #f6f1e9;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.modal-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 55vh;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 0.25s ease;
  touch-action: pan-y;
}

.modal-img.zoomed {
  transform: scale(2.4);
  cursor: zoom-out;
}

.modal-body {
  padding: 16px 18px 20px;
}

.modal-body h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--text);
}

/* ---- Live-Shooting-Modus ---- */
body.no-scroll {
  overflow: hidden;
}

.live-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}

.live-overlay.hidden {
  display: none;
}

.live-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 6px;
}

.live-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.live-header-mid {
  flex: 1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.live-phase {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-progress-text {
  color: var(--text-dim);
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.live-progressbar {
  height: 4px;
  background: var(--surface-2);
}

.live-progressbar div {
  height: 100%;
  background: var(--accent);
  transition: width 0.25s ease;
}

.live-main {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px 8px;
  text-align: center;
}

.live-img-wrap {
  background: #f6f1e9;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
}

.live-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 42vh;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 0.25s ease;
}

.live-img.zoomed {
  transform: scale(2.4);
  cursor: zoom-out;
}

.live-main h2 {
  margin: 0 0 6px;
  font-size: 1.35rem;
}

.live-main p {
  margin: 0 0 8px;
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--text);
}

.live-main .pose-tip {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.live-swap {
  background: none;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-dim);
  padding: 8px 16px;
  font-size: 0.85rem;
  margin-top: 4px;
}

.live-footer {
  padding: 6px 14px calc(14px + env(safe-area-inset-bottom));
}

.live-peek {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.8rem;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-controls {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.live-side-btn {
  width: 60px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1.4rem;
}

.live-side-btn:disabled {
  opacity: 0.35;
}

.live-done-btn {
  flex: 1;
  height: 64px;
  border-radius: 16px;
  border: none;
  background: var(--accent);
  color: #1c1a18;
  font-size: 1.15rem;
  font-weight: 700;
}

.live-done-btn:active {
  transform: scale(0.98);
}

.live-done-btn.is-done {
  background: var(--accent-dark);
  color: var(--text);
}

.live-end {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  gap: 10px;
}

.live-end.hidden {
  display: none;
}

.live-end-emoji {
  font-size: 3rem;
}

.live-start-row {
  margin-bottom: 16px;
}

.live-start-row .btn-secondary {
  width: 100%;
  margin-top: 8px;
}

.template-row {
  margin-bottom: 10px;
}

.template-hint {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin: 0 0 12px;
  line-height: 1.4;
}

/* ---- Gruppen-Assistent ---- */
.g-controls {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 16px;
}

.g-controls > label {
  display: block;
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.g-stepper {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.g-step {
  min-width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 600;
}

#g-count {
  flex: 1;
  min-width: 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
}

.g-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 2px 0;
  font-size: 0.95rem;
}

.g-toggle input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
}

.g-result,
.g-ansage,
.g-tipps {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 16px;
}

.g-result h3,
.g-ansage h3,
.g-tipps h3 {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.95rem;
}

.g-visual {
  background: var(--bg);
  border-radius: 10px;
  padding: 12px 8px;
  margin-bottom: 10px;
}

.g-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}

.g-row-label {
  color: var(--text-dim);
  font-size: 0.7rem;
  width: 14px;
  text-align: right;
  margin-right: 4px;
}

.g-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--text-dim);
}

.g-dot.small {
  width: 9px;
  height: 9px;
}

.g-dot.paar {
  background: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-dark);
}

.g-camera {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.8rem;
  margin-top: 6px;
}

.g-rows-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text);
}

.g-ansage ol {
  margin: 0;
  padding-left: 22px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.g-ansage li {
  margin-bottom: 6px;
}

.g-tipps ul {
  margin: 0;
  padding-left: 20px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-dim);
}

.g-tipps li {
  margin-bottom: 6px;
}

/* ---- Zeige-Modus ---- */
.zeige-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: #f6f1e9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zeige-overlay.hidden {
  display: none;
}

.zeige-overlay img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.zeige-hint {
  position: absolute;
  bottom: calc(10px + env(safe-area-inset-bottom));
  left: 0;
  right: 0;
  text-align: center;
  color: #8f6f37;
  font-size: 0.75rem;
  opacity: 0.7;
}

/* ---- Favoriten-Stern ---- */
.fav-btn {
  background: none;
  border: none;
  color: var(--border);
  font-size: 1.35rem;
  line-height: 1;
  padding: 6px;
  cursor: pointer;
  flex-shrink: 0;
}

.fav-btn.active {
  color: var(--accent);
}

.card-fav {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  z-index: 2;
}

.pose-card {
  position: relative;
}

.modal-fav {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  font-size: 1.5rem;
  background: rgba(10, 9, 8, 0.6);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  padding: 0;
}

/* ---- Live-Modus: Wecker, Titelzeile, Aktionen ---- */
.live-alarm {
  background: var(--accent);
  color: #1c1a18;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 6px 10px;
}

.live-alarm.hidden {
  display: none;
}

.live-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.live-title-row h2 {
  margin: 0 0 6px;
}

.live-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 4px;
}

.live-zeige {
  background: var(--surface-2);
  border: 1px solid var(--accent-dark);
  border-radius: 20px;
  color: var(--text);
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---- Posen-Tab: Suche + eigene Posen ---- */
.poses-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

#pose-search {
  width: 100%;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 0.95rem;
}

.poses-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.view-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.view-btn {
  background: var(--surface);
  border: none;
  color: var(--text-dim);
  font-size: 1.05rem;
  padding: 8px 12px;
  line-height: 1;
}

.view-btn.active {
  background: var(--accent);
  color: #1c1a18;
}

.fav-filter-chip {
  margin-right: auto;
}

.search-header {
  color: var(--accent);
  font-size: 0.95rem;
  margin: 0 0 8px;
}

/* Raster-Ansicht */
.pose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.grid-item {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.grid-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  background: #f6f1e9;
  display: block;
}

.grid-noimg {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--surface-2);
}

.grid-title {
  font-size: 0.68rem;
  line-height: 1.25;
  color: var(--text-dim);
  padding: 5px 6px 6px;
}

.grid-fav {
  position: absolute;
  top: 2px;
  right: 2px;
  z-index: 2;
  font-size: 1.3rem;
  background: rgba(10, 9, 8, 0.55);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
}

.grid-fav.active {
  color: var(--accent);
}

/* Shotlist: Reihenfolge per Pfeiltasten */
.reorder-btns {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

.reorder-btn {
  width: 30px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  font-size: 0.7rem;
  line-height: 1;
  padding: 0;
}

.reorder-btn:disabled {
  opacity: 0.25;
}

.pose-item summary {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pose-item-title {
  flex: 1;
}

.custom-badge,
.type-badge {
  font-size: 0.65rem;
  padding: 2px 7px;
  border-radius: 10px;
  white-space: nowrap;
}

.custom-badge {
  background: var(--accent-dark);
  color: var(--text);
}

.type-badge {
  background: var(--surface-2);
  color: var(--text-dim);
  border: 1px solid var(--border);
}

.custom-form {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.custom-form.hidden {
  display: none;
}

.custom-form h3 {
  margin: 0;
  color: var(--accent);
  font-size: 0.95rem;
}

.custom-form input[type="text"],
.custom-form textarea,
.custom-form select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
}

.cp-selects {
  display: flex;
  gap: 8px;
}

.cp-photo-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cp-actions {
  display: flex;
  gap: 8px;
}

.cp-actions button {
  flex: 1;
}

.cp-delete {
  margin-top: 10px;
  width: 100%;
}

/* ---- Extras-Tab ---- */
.x-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 16px;
}

.x-card h3 {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.95rem;
}

.x-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.x-row input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 0.9rem;
  color-scheme: dark;
}

.x-note {
  color: var(--text-dim);
  font-size: 0.83rem;
  margin: 0 0 10px;
  line-height: 1.4;
}

.x-fotoreich-link {
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.gh-result {
  margin-top: 4px;
}

.gh-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding: 7px 4px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.gh-line:last-child {
  border-bottom: none;
}

.gh-line span {
  color: var(--text-dim);
}

.gh-highlight {
  background: var(--surface-2);
  border-radius: 8px;
  padding-left: 8px;
  padding-right: 8px;
}

.gh-highlight span,
.gh-highlight strong {
  color: var(--accent);
}

.x-tips {
  margin: 8px 0 0;
  padding-left: 20px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text);
}

.x-tips li {
  margin-bottom: 5px;
}

.export-preview {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-dim);
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 200px;
  overflow-y: auto;
  margin: 8px 0 0;
}

/* 6 Tabs in der Navigation */
.nav-tab {
  font-size: 0.72rem;
  padding: 8px 0;
}
