.banner {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.autocomplete-dropdown {
    position: absolute;
    z-index: 9999;
    background-color: #fff;
    border: 1px solid #ccc;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.autocomplete-dropdown div {
    padding: 8px;
    cursor: pointer;
}

.autocomplete-dropdown div:hover {
    background-color: #f0f0f0;
}

.input-container {
    position: relative;
}

input,
select,
button {
    border: 1px solid gray !important;
    border-radius: 5px;
    padding: 8px;
}

/* Estilos para el selector de pasajeros */
.search-page .dropdown-menu {
    /* Eliminar el width fijo */
    width: auto;
    min-width: 100%; /* Asegura que como mínimo tenga el ancho del botón */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem; /* Añade un pequeño espacio entre el botón y el dropdown */
}

.search-page .dropdown-menu .p-4 {
    width: 100%;
    box-sizing: border-box;
}

.search-page .dropdown-menu .passenger-type {
    width: 100%;
}

.search-page .dropdown-menu .quantity-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-page .dropdown-menu .quantity-selector input {
    width: 40px;
    text-align: center;
    border: 1px solid #dee2e6 !important;
    border-radius: 4px;
    padding: 4px !important;
    background-color: #fff;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-selector input {
    width: 40px;
    text-align: center;
    border: 1px solid #dee2e6 !important;
    border-radius: 4px;
    padding: 4px !important;
    background-color: #fff;
}

.quantity-selector button {
    width: 32px;
    height: 32px;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-selector button:disabled {
    background-color: #e9ecef;
    cursor: not-allowed;
}
