/**
 * FODS — base layer for internal admin shell only.
 * Scoped to body.admin-shell so public creator/client pages are unaffected.
 */
body.admin-shell {
 font-family: var(--fods-font-ui);
 font-size: var(--fods-text-base);
 line-height: var(--fods-leading-normal);
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 font-variant-numeric: tabular-nums;
}

body.admin-shell :where(a):focus-visible,
body.admin-shell :where(button):focus-visible,
body.admin-shell :where(input):focus-visible,
body.admin-shell :where(select):focus-visible,
body.admin-shell :where(textarea):focus-visible {
 outline: none;
 box-shadow: var(--fods-focus-ring);
}

@media (prefers-reduced-motion: reduce) {
 body.admin-shell * {
 animation-duration: 0.001ms !important;
 animation-iteration-count: 1 !important;
 transition-duration: 0.001ms !important;
 }
}
