/* Kleinere UI-Details separat gehalten für gute Wartbarkeit */
.brand img{display:block}
.nav a.btn{padding:10px 16px}
.nav a.btn-primary{box-shadow:none}
/* Active Nav */
.nav a.active{background:#f1f2f4}

/* Form Status */
.muted{color:var(--muted)}

/* =========================
   Tabellen / Preisliste
   ========================= */

   table.preise {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    background: #fff;
  }
  
  table.preise th {
    background-color: #e30613; /* Häsler-Rot */
    color: #fff;
    font-weight: 600;
    text-align: left;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    font-size: 0.95rem;
  }
  
  table.preise td {
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    font-size: 0.95rem;
    background: #fff;
    transition: background 0.2s ease;
  }
  
  table.preise tbody tr:nth-child(even) td {
    background: #fafafa;
  }
  
  table.preise tbody tr:hover td {
    background: #f8f8f8;
  }
  
  table.preise td:first-child {
    font-weight: 600;
    color: #111;
  }
  
  /* Zusatz-Tabelle (z. B. Aufstiegspreise) */
  .card table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
  }
  
  .card table td {
    border: 1px solid #e5e7eb;
    padding: 12px 16px;
  }
  
  .card table tr:nth-child(even) {
    background: #fafafa;
  }
  
  /* ============ RESPONSIVE ============ */
  @media (max-width: 768px) {
    table.preise,
    .card table {
      font-size: 0.85rem;
    }
    table.preise th,
    table.preise td {
      padding: 10px;
    }
    .card table td {
      padding: 10px;
    }
    table.preise {
      display: block;
      overflow-x: auto;
      white-space: nowrap;
    }
  }

  /* =========================
   Section Header / Icon-Stile
   ========================= */

.page-header h1 i {
    color: var(--accent, #e30613);
    font-size: 1.3em;
  }
  
  .page-header .underline {
    width: 80px;
    height: 3px;
    background: var(--accent, #e30613);
    border-radius: 2px;
  }
  
  .card h3 i {
    color: var(--accent, #e30613);
    font-size: 1em;
  }