/* Schedule Page Styles */

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-slide-up {
    animation: slide-up 0.6s ease-out forwards;
}

/* Delay animations */
.animate-slide-up:nth-child(1) {
    animation-delay: 0.1s;
}

.animate-slide-up:nth-child(2) {
    animation-delay: 0.2s;
}

/* Language Toggle Button Styles */
.lang-btn {
    transition: all 0.2s ease;
}
