/* =============================================
   styles_patch_radios.css (ohne feste Zählerbreite)
   - Projektstil für Radio/Checkbox
   - Farblogik (blau/grün/rot)
   - 3-Reihen-Übersicht: tabellarische Ziffern (ohne min-width)
   - Kompakter Abstand + strikt einzeilig je Stunde
   ============================================= */

/* Radios/Checkboxen – Projektstil */
.choice-list input[type=radio],
.choice-list input[type=checkbox]{
  -webkit-appearance:auto !important;
  appearance:auto !important;
  accent-color: var(--radio-bg, #2563eb) !important;
  width:1rem; height:1rem;
}
.choice-list label{ background:#fff !important; border:1px solid #e5e7eb !important; color:#1e293b !important; }

/* Farbvorgaben Schülerseite */
.card .slot-row .lb-badge .count.no-limit { color:#2563eb !important; font-weight:600; } /* blau */
.card .slot-row .lb-badge .count.has-space{ color:#16a34a !important; font-weight:600; } /* grün */
.card .slot-row .lb-badge .count.full     { color:#dc2626 !important; font-weight:600; } /* rot  */

#lbList .lb-label .lb-name{ transition: color .15s ease-in-out; }
#lbList .lb-label.lb-nolimit .lb-name{ color:#2563eb !important; } /* blau */
#lbList .lb-label.lb-space   .lb-name{ color:#16a34a !important; } /* grün */
#lbList .lb-label.lb-full    .lb-name{ color:#dc2626 !important; } /* rot  */
#lbList .lb-label.lb-full input[disabled]{ cursor:not-allowed; }

/* Dreizeilige Stundenliste – einzeilig je Stunde + kompakter Abstand */
.slot-row{
  display:flex !important; align-items:center; flex-wrap:nowrap !important; white-space:nowrap !important;
  gap:clamp(0.5rem, 1.2vw, 1.0rem); overflow-x:auto; scrollbar-width:thin;
}
.slot-row .lb-badge{ display:inline-flex; align-items:baseline; gap:.4rem; white-space:nowrap; }

/* Zähler ohne feste Breite, aber mit tabellarischen Ziffern */
.slot-row .lb-badge .count{ display:inline-block; text-align:right; font-variant-numeric: tabular-nums; }
