/* ========================================
   Raspisanie — Application Styles
   ======================================== */

/* Hide Alpine elements before JS initialises */
[x-cloak] { display: none !important; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* Card hover effect */
.card-hover {
    transition: box-shadow 0.2s, transform 0.2s;
}
.card-hover:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

/* PDF Modal */
.pdf-modal-backdrop {
    backdrop-filter: blur(4px);
}

/* Pulse animation for "new" badge */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.pulse-dot {
    animation: pulse-dot 2s ease-in-out infinite;
}

/* Print styles */
@media print {
    .no-print { display: none !important; }
    body { background: white; }
}
