/* Bouton de suppression */
.choices__button {
    background-color: #ff9800; /* Orange avec un contraste plus fort */
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    font-size: 14px;
    height: 22px;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-weight: bold; */
}

/* Liste déroulante */
.choices__list--dropdown {
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 6px; /* Arrondis améliorés */
    margin-top: 4px;
    padding: 8px 0; /* Espacement augmenté */
    z-index: 1000; /* Toujours au-dessus des autres éléments */
    /* font-weight: bold; */
}

/* Options individuelles dans la liste */
.choices__list--dropdown .choices__item--choice {
    color: #333;
    padding: 12px 18px; /* Espacement plus grand */
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
    /* font-weight: bold; */
    border-radius: 4px; /* Arrondis pour une meilleure intégration */
}

/* Option au survol */
.choices__list--dropdown .choices__item--choice:hover {
    background-color: #007bff;
    color: #fff;
    /* font-weight: bold; */
    border-radius: 4px;
}

/* Style de recherche dans le dropdown */
.choices__input--cloned {
    border: none;
    border-bottom: 1px solid #007bff;
    padding: 5px;
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
    /* font-weight: bold; */
    transition: border-bottom 0.2s, box-shadow 0.2s;
}
.choices__input--cloned:focus {
    outline: none;
    border-bottom: 2px solid #0056b3;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Placeholder */
.choices__placeholder {
    color: #575757;
    font-style: italic;
    /* font-weight: bold; */
    font-size: 16px; /* Taille légèrement plus grande */
}

/* Conteneur vide (sans choix disponibles) */
.choices__list--dropdown .choices__item--disabled {
    color: #4b4a4a;
    background-color: #f5f5f5;
    cursor: not-allowed;
    /* font-weight: bold; */
}
