/* Pour Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #1e293b #07090E;
}
/* Pour Chrome, Edge et Safari */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #07090E;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 9999px;
    border: 2px solid #07090E;
}
::-webkit-scrollbar-thumb:hover {
    background: #334155;
}