/* ─── Basisstile ─────────────────────────────────────────────── */
html { overflow-x: hidden; }
body { min-height: 100vh; font-size: 0.95rem; overflow-x: hidden; max-width: 100vw; }
img { max-width: 100%; height: auto; }

/* ─── Navbar ─────────────────────────────────────────────────── */
.navbar-brand { letter-spacing: .03em; }

/* ─── Karten ─────────────────────────────────────────────────── */
.fv-card {
  transition: transform .15s, box-shadow .15s;
  border: 1px solid rgba(0,0,0,.07) !important;
}
.fv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 .5rem 1.2rem rgba(0,0,0,.12) !important;
}

/* Farbiger linker Rand je nach Status */
.status-stripe { border-left: 4px solid transparent !important; }
.status-eingegangen     { border-left-color: #6c757d !important; }
.status-in_sitzung      { border-left-color: #0d6efd !important; }
.status-bewilligt       { border-left-color: #198754 !important; }
.status-abgelehnt       { border-left-color: #dc3545 !important; }
.status-zurueckgestellt { border-left-color: #e67e22 !important; }

/* ─── Status-Badges ──────────────────────────────────────────── */
.badge-eingegangen     { background:#6c757d; }
.badge-in_sitzung      { background:#0d6efd; }
.badge-bewilligt       { background:#198754; }
.badge-abgelehnt       { background:#dc3545; }
.badge-zurueckgestellt { background:#e67e22; }

/* ─── Progress / Buttons ─────────────────────────────────────── */
.progress { border-radius: 10px; }

/* ─── Drucklayout ────────────────────────────────────────────── */
@media print {
  .navbar, .btn, .alert.d-print-none, .no-print { display: none !important; }
  body { background: white; font-size: 11pt; }
  .card { box-shadow: none !important; border: 1px solid #ccc !important; }
  .container-xl { max-width: 100% !important; padding: 0 !important; }
}

@media (max-width: 576px) { h1.h3 { font-size: 1.1rem; } }
details summary { cursor: pointer; user-select: none; }
