button:not(:disabled),
[role='button']:not(:disabled) {
    cursor: pointer;
}

/*
 * Honor the OS "reduce motion" setting for every framework animation/transition
 * (WCAG 2.3.3, and 2.2.2 for the indefinite loading pulse). This reduces rather
 * than removes motion: a near-instant `0.01ms` (not `0`) keeps `transitionend` /
 * `animationend` firing so Alpine `x-transition` / `x-collapse` still resolve,
 * and end-states (chevron rotation, toggle thumb) land instantly. `!important`
 * in the base layer beats component-layer transitions without per-rule guards.
 */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
