/* Custom Overrides for Milar web app */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Modal Entry Animation */
#group-modal:not(.hidden) {
    animation: modalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.96) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Enhancing schedule card transitions */
.schedule-card {
    transition: all 0.2s ease-in-out;
}
.schedule-card:hover {
    transform: translateY(-2px);
}
