/* Scrollbar pour Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 6px; /* Largeur fine */
}

/* Fond de la scrollbar */
::-webkit-scrollbar-track {
    background: #f8f8f8; /* Gris très clair */
    border-radius: 10px; /* Coins arrondis */
}

/* La partie mobile (le "thumb") */
::-webkit-scrollbar-thumb {
    background: #b0b0b0; /* Gris doux */
    border-radius: 10px; /* Arrondi pour un effet moderne */
}

/* Effet au survol */
::-webkit-scrollbar-thumb:hover {
    background: #909090; /* Assombrissement léger */
}

