/* Focus Ring (v1) — extracted from cte-overrides.css */

/* ============================================================
   13) Focus ring: remove browser blue, keep subtle CTE ring
   ============================================================ */
:where(a, button, input, select, textarea):focus{
  outline: none !important;
  box-shadow: none !important;
}
:where(a, button, input, select, textarea):focus-visible{
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(240,127,42,.28) !important;
  border-color: rgba(240,127,42,.45) !important;
}

