.calendar-container {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}
.calendar {
    display: inline-block;
    width: 50%;
}
.month-header {
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}
.weekdays, .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}
.weekday {
    text-align: center;
    font-weight: bold;
    padding: 5px 0;
}
.day {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px;
    text-align: center;
    cursor: pointer;
    height: 85px;
    display: flex;
    flex-direction: column;
}
.day-number {
    text-align: left;
}
.price {
    font-size: 12px;
    margin-top: 6px;
}
.selected {
    position: relative;
    border-color: #000;
}
.selected::after {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    margin: auto;
    background: url(../images/frontend/check.svg);
}
.other-month {
    opacity: 0.5;
}

.hotel-category {
    display: none;
}

.hotel-category.active {
    display: block;
}

.btn-calendar-next {
    float: right;
}