/* Jadwal PBM - Minimal CSS (Tailwind CSS handles most styling) */

/* Night class rows */
.night-row {
    background-color: #fef3c7 !important;
}
.dark .night-row {
    background-color: #451a03 !important;
}

/* Weekly schedule collapse animation */
.collapse-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.collapse-content.show {
    max-height: 9999px;
}

/* Scrollbar hide utility */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* PWA Install Banner */
#installPrompt.show { display: block; animation: slideUp 0.3s ease; }
@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}
