/* app/ui/static/app.css — Phase 9 UI revamp
 * Tailwind via CDN now handles all utility classes (see base.html).
 * Add custom CSS here only for things Tailwind can't express well.
 */

/* HTMX loading indicator */
.htmx-indicator { opacity: 0; transition: opacity 200ms ease; }
.htmx-request .htmx-indicator { opacity: 1; }
.htmx-request.htmx-indicator { opacity: 1; }

/* Smooth scroll behavior */
html { scroll-behavior: smooth; }
