/* 
   Most styles are now handled by Tailwind CSS in index.php.
   This file is kept for any custom overrides that are hard to do with utility classes.
*/

/* Ensure smooth transitions for hidden elements */
.hidden {
    display: none !important;
}

/* Custom animations if needed */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.view.active {
    animation: fadeIn 0.3s ease-out forwards;
}