/* Custom Styles for School Dashboard */

body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Smooth fade-in for the main container */
main {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(10px);
}

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

/* Day 1 and Day 2 specific gradients/styles if needed beyond Tailwind */
.day-1-theme {
    background: linear-gradient(135deg, #e0f2fe 0%, #ffffff 100%);
}

.dark .day-1-theme {
    background: linear-gradient(135deg, #1e3a8a 0%, #111827 100%);
}

.day-2-theme {
    background: linear-gradient(135deg, #d1fae5 0%, #ffffff 100%);
}

.dark .day-2-theme {
    background: linear-gradient(135deg, #064e3b 0%, #111827 100%);
}

/* Widget Hover Effects */
.widget-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.widget-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Countdown Card Animations */
@keyframes pulse-border {

    0%,
    100% {
        border-color: rgba(255, 255, 255, 1);
    }

    50% {
        border-color: rgba(255, 255, 255, 0.5);
    }
}

.animate-pulse-border {
    animation: pulse-border 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}