/**
 * Glykotexnies Orders Calendar Styles
 */

/* Remove this to avoid interfering with page scrolling
html, body {
    margin: 0;
    padding: 0;
}
*/

#order-calendar {
    width: 98vw;
    max-height: 80vh;
    margin: auto;
}

.fc-daygrid-day-number, .fc-col-header-cell-cushion {
    color: black !important;
    font-weight: bold;
    cursor: pointer;
}

.fc-daygrid-day-number:hover {
    text-decoration: underline;
}

.fc-h-event {
    background-color: #2C3E50 !important;
}

.fc-daygrid-event {
    position: relative;
    white-space: unset;
    border-radius: 3px;
    font-size: 11px !important;
    text-align: center;
}

.fc-dayGridMonth-view .fc-event-time, 
.fc-timeGridWeek-view .fc-event-time, 
.fc-timeGridDay-view .fc-event-time {
    display: none !important; /* Hide event times in month, week, and day views */
}

.fc-dayGridMonth-view .fc-event {
    display: none !important; /* Hide events in month view */
}

.fc-dayGridMonth-view .fc-daygrid-day {
    position: relative;
}

.event-count {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #007bff;
    color: white;
    padding: 2px 5px;
    border-radius: 5px;
    font-size: 12px;
}

@media (max-width: 768px) {
    #order-calendar {
        height: 85vh;
        width: 98vw;
    }
}

@media (max-width: 480px) {
    #order-calendar {
        height: 90vh;
        width: 98vw;
    }
}