/* =========================
   TRAVEL SEARCH FORM
   ========================= */

.travel-search-form {
    max-width: 640px;
    margin: 2.5rem 0 3rem;
    display: grid;
    grid-template-columns: 0.9fr 1fr 1.1fr auto;
    gap: 1.25rem;
    align-items: end;
}

.travel-search-form select {
    width: 100%;
    padding: 0.75rem 2.2rem 0.75rem 0.9rem; /* espace à droite pour la flèche */
    font-size: 0.95rem;
    font-family: inherit;
    color: #111;

    background-color: #f4efe4;
    background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'>\
<path d='M1 1l5 5 5-5' stroke='black' stroke-width='1.5' fill='none' stroke-linecap='round'/>\
</svg>");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    background-size: 12px 8px;

    border: 1px solid #000;
    border-radius: 2px;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}


.travel-search-form button {
    padding: 0.75rem 1.2rem;
    font-size: 0.95rem;
    font-family: inherit;
    color: #111;
    background: #e7dfcf;
    border: 1px solid #000;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.travel-search-form button:hover {
    background: #d9d0be;
}

.travel-search-form button:active {
    background: #cfc6b3;
}

@media (max-width: 700px) {
    .travel-search-form {
        grid-template-columns: 1fr;
    }
}
