/* Custom styles that don't belong in Tailwind */
body {
    min-height: max(884px, 100dvh);
}

/* Animation for fade-in elements */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Utility classes */
.hidden {
    display: none !important;
}
