#hall-booking-calendar .fc-time {
    margin-right: 0.5em;
}

/* Reduce font size for FullCalendar events and headers */
#hall-booking-calendar,
#hall-booking-calendar .fc,
#hall-booking-calendar .fc-event,
#hall-booking-calendar .fc-toolbar,
#hall-booking-calendar .fc-daygrid-day-number,
#hall-booking-calendar .fc-daygrid-event,
#hall-booking-calendar .fc-timegrid-event {
    font-size: 0.82em !important;
}

#hall-booking-calendar .fc-toolbar-title {
    font-size: 1.1em !important;
}

#hall-booking-calendar .fc-event-title {
    font-size: 0.85em !important;
}

/* Modal Styles */
.hall-booking-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.2s;
}

.hall-booking-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hall-booking-modal-content {
    background-color: #fff;
    padding: 24px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s;
}

.hall-booking-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    line-height: 1;
    background: none;
    border: none;
    padding: 0;
}

.hall-booking-modal-close:hover {
    color: #000;
}

.hall-booking-modal h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: #1d2327;
    font-size: 20px;
    border-bottom: 2px solid #2271b1;
    padding-bottom: 8px;
}

.hall-booking-modal-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hall-booking-modal-detail {
    display: flex;
    gap: 8px;
}

.hall-booking-modal-detail strong {
    min-width: 80px;
    color: #1d2327;
}

.hall-booking-modal-detail span {
    color: #646970;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile: Show only month view */
@media (max-width: 768px) {

    #hall-booking-calendar .fc-timeGridDay-button,
    #hall-booking-calendar .fc-timeGridWeek-button {
        display: none !important;
    }
}