/**--- Custom scrollbar ---**/
/* pour firefox */
.custom-scrollbar {
    scrollbar-color: var(--textarea-color) var(--another-gray_2);
    scrollbar-width: thin;
    overflow-y: auto;
}
/* pour chrome, safari et edge */
.custom-scrollbar::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: var(--another-gray_2);
    height: 8px;

    background-color: var(--another-gray_2); /* or add it to the track */
}
    
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: var(--textarea-color);
}