.nice-select {
    /* border: 0px !important; */
}
.header-search-input-item input[type="text"], .col-list-search-input-item input[type="text"] {
    /* border: 0px !important; */
    font-size: 12px;
    color: #6f6f6f;
}

.nice-select .list {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05) !important;
}

.col-list-search-input-item input[type="text"]::placeholder {
    font-size: 13px !important;
}

.mds-booking-flex {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 2px;
}

.mds-booking-flex > .mds-booking-property {
    flex: 0 0 26%;
}

.mds-booking-flex > .mds-booking-date {
    flex: 0 0 24%;
}

.mds-booking-flex > .mds-booking-room {
    flex: 0 0 16%;
}

.mds-booking-flex > .mds-booking-promo {
    flex: 0 0 14%;
}

.mds-booking-flex > .mds-booking-button {
    flex: 0 0 150px;
}

.mds-booking-room {
    position: relative;
}

.mds-room-popup {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    padding: 18px;
    z-index: 999;
    display: none;
    margin-top: 10px;
}

.mds-room-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.mds-room-counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mds-room-counter button {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.mds-room-confirm {
    width: 100%;
    border: none;
    background: #0f5f66;
    color: #fff;
    padding: 12px;
    border-radius: 5px;
    font-weight: 600;
}

.box-btn-searching {
    margin-top: 27px;
}

.mds-input-error {
    border: 1px solid #dc3545 !important;
    border-radius: 8px;
}

.nice-select .list {
    max-height: 260px !important;
}

.nice-select:after {
    height: 7px;
    width: 7px;
}



@media (max-width: 768px) {

    .mds-booking-flex {
        flex-direction: column !important;
        width: 100%;
        flex-wrap: nowrap;
        gap: 2px;
    }

    .mds-booking-flex > .mds-booking-property,
    .mds-booking-flex > .mds-booking-date,
    .mds-booking-flex > .mds-booking-room,
    .mds-booking-flex > .mds-booking-promo,
    .mds-booking-flex > .mds-booking-button {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }

    .mds-booking-flex .header-search-button {
        width: 100%;
    }

    .mds-room-popup {
        margin-top: 0px;
    }

    .box-btn-searching {
        margin-top: 0px;
    }
}


