.booking_container {
    padding: 0 80px;
    max-width: 720px;
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
}


.calendar_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar_nav h3 {
    font-size: 24px;
    font-weight: 500;
    font-family: var(--font-notosan);
    color: var(--color-text-entry);
}

.calendar_grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
}

.day_name {
    text-align: center;
    color: var(--color-text-entry);
    font-family: var(--font-notosan);
    font-weight: 400;
    padding-bottom: 10px;
    font-size: 16px;
}



.calendar_day {
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--color-text-entry);
    position: relative;
    border: 1px solid var(--color-text-entry);
    margin-right: -1px;
    margin-bottom: -1px;
}

.calendar_day.red {
    color: #ad0000;
}


.calendar_day.reserved {
    color: #888373;
    background-color: #005A4F;
}

/* .calendar_day.reserved.red {
    color: #ad0000;
    background-color: #005A4F;
} */

.calendar_day.not_possible::before {
    content: "";
    position: absolute;
    top: 40px;
    left: -3px;
    height: 1px;
    width: 87px;
    background-color: #888373;
    transform: rotate(135deg);
}

.calendar_day.negotiation {
    background-color: rgba(136, 131, 115, 0.5);
}

.booking_description {
    margin-top: 40px;
    display: flex;
    flex-wrap: nowrap;
    gap: 32px;
}

.booking_description_list span {
    color: var(--color-text-entry);
    font-weight: 400;
    font-family: var(--font-notosan);
    font-size: 16px;
    padding-left: 40px;
}

.booking_description_list span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 30px;
    border: 1px solid #888373;
    background-color: rgba(255, 255, 255, 0.4);
}

.booking_description_list span.reserved::before {
    border: none;
    background-color: #005A4F;
}

.booking_description_list span.negotiation::before {
    background-color: rgba(136, 131, 115, 0.5);
}

.booking_description_list span.not_possible::after {
    content: "";
    position: absolute;
    top: 11px;
    left: 3px;
    height: 1px;
    width: 26px;
    background-color: #888373;
    transform: rotate(-45deg);
}

.booking_entry_button {
    display: block;
    width: 304px;
    margin: 0 auto;
    margin-top: 72px;
    border: 1px solid #005A4F;
    background-color: rgba(255, 255, 255, 0.25);
}

.booking_entry_button a {
    display: inline-block;
    width: 100%;
    height: 64px;
    line-height: 64px;
    font-size: 16px;
    color: #005A4F;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .booking_container {
        padding: 0 22px;
        max-width: 604px;
    }

    .calendar_nav {
        margin-bottom: 32px;
    }

    .calendar_nav h3 {
        font-size: 20px;
    }

    .day_name {
        font-size: 12px;
    }

    .calendar_day {
        font-size: 14px;
    }

    .calendar_day.not_possible::before {
        content: "";
        position: absolute;
        top: min(6.133vw, 39.48px);
        left: max(-0.533vw, -4.606px);
        width: 110%;
        max-width: 87.68px;
        height: 1px;
        background-color: #888373;
    }

    .booking_description {
        display: block;
    }

    .booking_description_list {
        display: block;
        margin-top: 16px;
    }

    .booking_description_list span {
        padding-left: 38px;
    }

    .booking_entry_button {
        max-width: 350px;
        width: 100%;
        margin-top: 40px;
    }

    .booking_entry_button a {
        display: inline-block;
        width: 100%;
    }
}