/* assets/style.css - minimal extras on top of Tailwind */

:root { color-scheme: light; }
.dark { color-scheme: dark; }

/* Prevent background scroll when any modal is open */
body.modal-open { overflow: hidden; }

/* Modals are controlled by Tailwind's `hidden` class (JS toggles). */

/* Toasts */
#toasts { pointer-events: none; }
#toasts > * { pointer-events: auto; }

/* Better focus outline fallback */
:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }
