#calendar {
    max-width: 1000px;
    margin: 40px auto;
}

.fc-event {
    cursor: pointer;
}

.bookingPeriod.airbnb {
    background-color: #ff5a5f;
}

.bookingPeriod.booking {
    background-color: #003580;
}

.bookingPeriod.autre {
    background-color: orange;
}

.bookingPeriod.blocked {
    background-color: #000 !important;
    color: #fff !important;
    border: none !important;
}

@media (max-width: 600px) {
    body #calendar {
        height: 90vh !important;
        max-height: 90vh !important;
        min-height: 0 !important;
        margin: 0 !important;
        overflow-y: visible;
    }

    body #calendar .fc {
        font-size: 2em !important;
    }

    body #calendar .fc .fc-daygrid-day-number,
    body #calendar .fc .fc-event-title {
        font-size: 2em !important;
    }

    body #calendar .fc .fc-toolbar-title {
        font-size: 1em !important;
    }

    body #calendar .fc .fc-event {
        padding: 6px 4px !important;
    }
}

.fc-daygrid-event-harness-abs {
    top: 0px !important;
}