/* assets/css/search-form-style.css (Bản cập nhật chống xung đột) */
.dihotel-search-form-wrapper {
    background-color: #4A5C50;
    padding: 20px 30px;
    border-radius: 4px;
    max-width: 1100px;
    margin: 20px auto;
}

.dihotel-search-form-wrapper form {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.dihotel-search-form-wrapper .dihotel-form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dihotel-search-form-wrapper .dihotel-form-field.dihotel-submit {
    flex: 0.8;
}

.dihotel-search-form-wrapper label {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

.dihotel-search-form-wrapper input,
.dihotel-search-form-wrapper select {
    width: 100%;
    padding: 12px;
    border: 1px solid #738379;
    border-radius: 4px;
    background-color: transparent;
    color: #ffffff;
    font-size: 16px;
}

.dihotel-search-form-wrapper select option {
    background-color: #4A5C50;
}

/* Kiểu cho input date trên trình duyệt Chrome/Edge */
.dihotel-search-form-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}


.dihotel-search-form-wrapper button {
    background-color: #B9A479;
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}
.dihotel-search-form-wrapper button:hover {
    background-color: #a99469;
}

@media(max-width: 768px) {
    .dihotel-search-form-wrapper form {
        flex-direction: column;
        align-items: stretch;
    }
    .dihotel-search-form-wrapper .dihotel-form-field.dihotel-submit {
        margin-top: 10px;
    }
}

/* ==============================================
=== CSS CHO TRANG KẾT QUẢ TÌM KIẾM ===
==============================================
*/

.dihotel-results-title {
    color: #D96300; /* Màu cam đậm */
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}