#calendar-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem;
    margin-top: 10px;
}

#calendar-container {
    position: relative;
    padding-top: 15px;
}

.weekdays-header {
    display: flex;
    justify-content: space-evenly;
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 9999;
    gap: 12px;
    padding: 0 20px 10px;
    border-bottom: 1px solid #ccc;
}

.weekdays-header div {
    width: 15px;
    text-align: center;
}

.month-title {
    top: 0;
    background-color: white;
    z-index: 10;
    font-size: 1.25rem;
    font-weight: 600;
}

.mini-calendar {
    padding: 0.5rem;
}

.fc .fc-daygrid-day-frame {
    border: none !important;
}

.fc .fc-scrollgrid {
    border: none !important;
}

.fc .fc-daygrid-day {
    border: none !important;
}

.fc .fc-col-header-cell {
    border: none !important;
    font-size: 0.75rem;
    color: #aaa;
}

.fc-event {
    background: transparent !important;
    border: none !important;
    color: inherit !important;
}

.fc .fc-daygrid-day-number {
    font-weight: 400;
    font-size: 0.9rem;
    padding: 4px;
}

.fc .fc-col-header {
    display: none;
}

.fc .fc-daygrid-day-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-weight: 400;
    font-size: 0.9rem;
    padding: 0;
}

.fc .fc-scrollgrid-section > * {
    border: 0;
}

.fc-day-disabled {
    display: none !important;
}

.fc-daygrid-body-unbalanced .fc-daygrid-day-frame {
    height: auto !important;
}

.fc-daygrid-day-top {
    justify-content: center;
}

.fc-day-today {
    background-color: transparent !important;
}

.busy {
    position: relative;
    color: #999;
    opacity: 0.6;
    z-index: 1;
}

.busy::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 50%;
    height: 1px;
    background-color: #999;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}

/*
 *
 * Tablet
 *
 */

@media (min-width: 576px) {

    .weekdays-header {
        gap: 25px;
    }

}