/* FSM Auswahlfix v1: unlayered styles override generic button rules. */
button[data-slot="checkbox"] {
  display:inline-flex; align-items:center; justify-content:center;
  width:24px; height:24px; min-width:24px; min-height:24px;
  flex-shrink:0; padding:0; gap:0; border:2px solid #71869b;
  border-radius:5px; background:#fff; color:#10253b; cursor:pointer;
}
button[data-slot="checkbox"][data-state="checked"],
button[data-slot="checkbox"][data-state="indeterminate"] {
  background:#126bc5; border-color:#126bc5; color:#fff;
}
button[data-slot="checkbox"] [data-slot="checkbox-indicator"] {
  display:grid; place-content:center; color:inherit;
}
button[data-slot="checkbox"] svg { width:18px; height:18px; stroke:currentColor; stroke-width:3; }
button[data-slot="switch"] {
  position:relative; display:inline-flex; align-items:center; justify-content:flex-start;
  width:48px; height:28px; min-width:48px; min-height:28px;
  flex-shrink:0; padding:2px; gap:0; border:2px solid #71869b;
  border-radius:999px; background:#cbd5e1; cursor:pointer;
}
button[data-slot="switch"][data-state="checked"] { background:#126bc5; border-color:#126bc5; }
button[data-slot="switch"] [data-slot="switch-thumb"] {
  display:block; width:20px; height:20px; flex-shrink:0; margin:0;
  border-radius:999px; background:#fff; box-shadow:0 1px 3px #10253b55;
  transform:translateX(0); transition:transform .15s ease;
}
button[data-slot="switch"][data-state="checked"] [data-slot="switch-thumb"] { transform:translateX(20px); }
button[data-slot="checkbox"]:focus-visible,button[data-slot="switch"]:focus-visible {
  outline:3px solid #f0b446; outline-offset:3px;
}
button[data-slot="checkbox"]:disabled,button[data-slot="switch"]:disabled { cursor:not-allowed; opacity:.55; }
@media (prefers-reduced-motion:reduce) { button[data-slot="switch"] [data-slot="switch-thumb"] { transition:none; } }

/* FSM Schalterposition v2 */
button[data-slot="switch"] [data-slot="switch-thumb"] { translate:none; }
