﻿.hostel-select-wrapper {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.hostels-label {
    font-weight: 500;
    font-size: 0.95rem;
    color: #333;
    min-width: 150px;
}

.hostels-dropdown {
    flex: 1;
    padding: 10px 40px 10px 12px;
    font-size: 0.95rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    color: #333;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2210%22%20height%3D%227%22%20viewBox%3D%220%200%2010%207%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M0%200l5%207%205-7z%22%20fill%3D%22%23666%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .hostels-dropdown:focus {
        border-color: #1f2937;
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
        outline: none;
        background-color: #fdfdfd;
    }


@media (max-width: 768px) {
    .hostel-select-wrapper {
        flex-direction:column;
    }
}