/*
 * Blazor FocusOnNavigate programmatically focuses the first page heading and
 * adds tabindex="-1". Keep that accessible focus target for screen readers,
 * but do not render it as though the heading were an interactive control.
 *
 * This selector is intentionally narrow. Keyboard focus indicators on links,
 * buttons, inputs, DevExpress controls, and naturally focusable elements are
 * unaffected.
 */
h1[tabindex="-1"]:focus,
h2[tabindex="-1"]:focus {
    outline: none !important;
    box-shadow: none !important;
}
