/* Custom overrides for Tailwind */
.view-section {
    display: none !important;
}
.view-section.active {
    display: flex !important; /* For landing and receptionist/booth */
}
#view-admin.active {
    display: block !important; /* Admin needs block layout */
}

/* Fix topbar display to flex when not hidden */
#topbar:not(.hidden) {
    display: flex !important;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}
