/* css/jadwal.css — dipisah otomatis dari jadwal.html */

.active-day-teori {
            border-color: #f43f5e !important;
            box-shadow: 0 0 20px rgba(244, 63, 94, 0.15);
            background: linear-gradient(to bottom right, rgba(30, 41, 59, 0.8), rgba(244, 63, 94, 0.03));
        }
        .active-day-praktek {
            border-color: #22d3ee !important;
            box-shadow: 0 0 20px rgba(34, 211, 238, 0.15);
            background: linear-gradient(to bottom right, rgba(30, 41, 59, 0.8), rgba(34, 211, 238, 0.03));
        }
        .animate-fade {
            animation: fadeIn 0.4s ease-out forwards;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }
