*, ::after, ::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    }
    html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    }
    body {
    border: 0;
    line-height: 1;
    min-height: 100vh;
    }
    .body-wrapper {
    padding: 0 5rem 5rem;

    }
    ul, ol {
    list-style: none;
    }
    a {
    font-style: normal;
    text-decoration: none;
    }
    /* Désactiver l'apparence native sur iOS et d'autres navigateurs */
input, select, textarea, button {
    -webkit-appearance: none; /* Désactiver l'apparence par défaut sur iOS/Safari */
    -moz-appearance: none;    /* Désactiver l'apparence par défaut sur Firefox */
    appearance: none;
    background: #fff;         /* Arrière-plan blanc */
    border-radius: 0; /* Supprime les coins arrondis sur tous les navigateurs */
    
}


/* Spécifique à iOS et Safari */
@supports (-webkit-touch-callout: none) {
    input, textarea, select, button {
        border-radius: 0; /* Supprime les coins arrondis sur iOS/Safari */
    }
}


/* Personnalisation du style pour les sélecteurs */
select {
    background-image: url(../images/Modals/Caret.png);
    background-repeat: no-repeat;
    background-position: 99% 50%;
    cursor: pointer;     /* Curseur pointer pour indiquer l'interaction */
}
@media only screen and (max-width: 700px) {
    select {
        background-position: 97% 50%;
    }
}
    
    