.um-hcs-container {
    font-family: 'Nunito', sans-serif;
    width: 100%;
    max-width: 800px; /* Ajuste la largeur max selon le design de ton accueil */
    /*margin: 0 auto;*/
}

.um-search-hero { 
    width: 100%;
}

.um-search-bar { 
    display: flex; 
    align-items: left; 
    gap: 12px; 
    width: 95%; 
}

.um-select-wrapper { 
    flex: 1; 
}

/* On masque le select natif en attendant le chargement de Select2 */
.um-select-wrapper select#hcs_city_slug {
    opacity: 0; 
}

/* --- BOUTON ANALYSER --- */
.um-btn-analyser {
    background-color: #EA5863 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 0 16px !important;
    height: 38px !important;
    width: 120px !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    box-shadow: none !important;
    transition: background-color 0.2s ease !important;
    flex-shrink: 0;
}

.um-btn-analyser:hover { 
    background-color: #d64651 !important; 
}

/* --- OVERRIDES SELECT2 --- */
.um-select-wrapper .select2-container {
    width: 100% !important;
    max-width: 100% !important;
}

.um-search-bar .select2-container--default .select2-selection--single { 
    height: 38px;
    border: 1px solid #cccccc; 
    border-radius: 4px; 
    display: flex; 
    align-items: center;
    background-color: #ffffff;
}

.um-search-bar .select2-container--default .select2-selection--single .select2-selection__arrow { 
    height: 36px; 
}

.um-search-bar .select2-container .select2-selection--single .select2-selection__rendered { 
    color: #555555; 
    font-size: 13px; 
    padding-left: 8px; 
    font-family: 'Nunito', sans-serif;
}

/* Couleur de survol des options du menu déroulant (Rouge Urban Metrics) */
.select2-container--default .select2-results__option--highlighted[aria-selected] { 
    background-color: #e11d48 !important; 
    color: white !important;
}

/* #select2-hcs_city_slug-results */
.select2-results ul li {
    font-size:13px;
}
.select2-container--default .select2-results__option {
    padding: 4px 8px !important; 
}
/* Ajustement fin de l'espacement du menu déroulant */
.select2-container .select2-dropdown {
    margin-top: -2px !important; /* Modifiez cette valeur selon vos préférences */
}