body {
  scrollbar-width: thin; /* Pour Firefox */
}

body {
  overflow-y: scroll;
  scrollbar-width: none; /* Pour Chrome, Safari, et Opera */
}

/* Personnalisation de la barre de défilement */
::-webkit-scrollbar {
    width: 10px;
    border-radius: 5px;
}

::-webkit-scrollbar-track {
    background: transparent; /* Rendre la piste de la barre de défilement transparente */
}

::-webkit-scrollbar-thumb {
    background: #51534e;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #91998d;
}
