/* TextMyClass - minimal custom CSS (TailwindCSS CDN handles most styling) */

/* Flash messages auto-dismiss */
.flash-dismiss {
    animation: fadeOut 0.3s ease-in-out forwards;
    animation-delay: 5s;
}

@keyframes fadeOut {
    from { opacity: 1; max-height: 100px; }
    to { opacity: 0; max-height: 0; overflow: hidden; margin: 0; padding: 0; }
}
