.btg-room-booking-form select.btg-rb-loading {
    cursor: wait;
    opacity: .7;
}

.btg-room-booking-form .btg-rb-native-select {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.btg-room-booking-form .btg-rb-single-room-field {
    display: none !important;
}

.btg-rb-slot-picker {
    width: 100%;
}

.btg-rb-slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
    gap: 10px;
}

.btg-rb-slot {
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #297ec2;
    border-radius: 6px;
    background: #f8fafa;
    color: #0e4d8c;
    font: inherit;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.btg-rb-slot.is-available {
    cursor: pointer;
}

.btg-rb-slot.is-available:hover,
.btg-rb-slot.is-available:focus-visible {
    border-color: #0e4d8c;
    background: #bdd4e7;
    color: #0e4d8c;
    outline: 2px solid transparent;
    transform: translateY(-1px);
}

.btg-rb-slot.is-selected,
.btg-rb-slot.is-selected:hover,
.btg-rb-slot.is-selected:focus-visible {
    border-color: #0e4d8c;
    background: #0e4d8c;
    color: #fff;
}

.btg-rb-slot.is-unavailable {
    border-color: #d5d8df;
    background: #f2f3f7;
    color: #858a94;
    cursor: not-allowed;
    opacity: .72;
    text-decoration: line-through;
}

.btg-rb-slot-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0 0 10px;
    color: #5b6470;
    font-size: 13px;
}

.btg-rb-slot-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btg-rb-slot-legend i {
    width: 11px;
    height: 11px;
    border: 1px solid #297ec2;
    border-radius: 3px;
    background: #f8fafa;
}

.btg-rb-slot-legend i.is-unavailable {
    border-color: #d5d8df;
    background: #f2f3f7;
}

.btg-rb-slot-message {
    margin: 6px 0 0;
    color: #5b6470;
}

.btg-rb-slot-message.is-error {
    color: #b42318;
}

@media (max-width: 520px) {
    .btg-rb-slot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.btg-room-booking-form select:disabled {
    background-color: #f2f3f7;
}

.btg-room-booking-form .ff-el-form-control:focus {
    border-color: #297ec2;
    box-shadow: 0 0 0 1px #297ec2;
}
