.mrh-booking-form {
    display: grid;
    grid-template-columns: repeat(6, minmax(120px, 1fr)) auto;
    gap: 12px;
    align-items: end;
    padding: 20px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.mrh-booking-form label {
    display: block;
    margin-bottom: 6px;
    color: #081d3a;
    font-size: 13px;
    font-weight: 800;
}

.mrh-booking-form input,
.mrh-booking-form select {
    width: 100%;
    min-height: 42px;
    border: 1px solid #dfe4ec;
    border-radius: 6px;
    padding: 0 10px;
}

.mrh-booking-form button {
    min-height: 42px;
    border: 0;
    border-radius: 6px;
    padding: 0 18px;
    color: #081d3a;
    background: #c9a24a;
    font-weight: 850;
    cursor: pointer;
}

.mrh-booking-form__result {
    grid-column: 1 / -1;
    color: #172033;
}

@media (max-width: 1000px) {
    .mrh-booking-form {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .mrh-booking-form {
        grid-template-columns: 1fr;
    }
}

