﻿.input-select-style {
    display: block;
    width: 50%; /* Ajustement de la largeur à 50% du conteneur */
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin: auto; /* Pour centrer la liste déroulante dans son conteneur */
}

    .input-select-style:focus {
        border-color: #80bdff;
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }

    /* Style pour les options de la liste déroulante */
    .input-select-style option {
        padding: 0.5rem;
        font-weight: normal;
        background-color: white;
        color: #495057;
    }
