/* ═══ §13 · TAB: SETTINGS ═════════════════════════════════════════════════════════════
   Settings is built almost entirely from §5 and §6. What is left is its own. */

/* the read-only scanner roster box */
.settings-scanner-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
/* the Race toggle is a STATE READOUT, not a control — the brain steers its own scanning, so
   this one is painted on and cannot be pressed. */
.toggle-track.race {
  background: linear-gradient(120deg, var(--accent-violet) 0%, var(--accent-cyan) 100%);
  pointer-events: none;
  opacity: 0.85;
}
.toggle-track.race .toggle-thumb { transform: translateX(100%); }

