/* Minimal overrides — Tailwind handles all styling via CDN */
/* Only keep what Tailwind utility classes cannot express inline */

/* Prevent anchor underlines globally in the app */
a { text-decoration: none; }

/* Animations */
@keyframes progress {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
