/* App-level rules only. TRV-12 : the former serial import chain is gone — the host (App.razor) now
   links each sheet with its own parallel <link>, in the SAME cascade order (variables → themes →
   reset → typography → rtl → components), and links THIS file last so the rules below keep their
   original cascade position. No serial CSS loading here anymore (perf). */

/* App-level focus visibility (token-driven). */
:focus-visible {
  outline: var(--focus-ring-width) solid var(--color-focus-ring);
  outline-offset: var(--focus-ring-offset);
  border-radius: var(--radius-sm);
}

::selection {
  background-color: var(--color-primary-subtle);
}
