/* Create a custom scrollbar */
*::-webkit-scrollbar {
    width: 5px; /* Width of the scrollbar */
    height: 5px; /* Width of the scrollbar */
}

*::-webkit-scrollbar-thumb {
    background-color: var(--highlightColor); /* Color of the thumb */
    border-radius: 6px; /* Radius of the thumb */
    
}

main::-webkit-scrollbar-thumb {
    background-color: var(--backgroundHighlight); /* Color of the thumb */
    border-radius: 6px; /* Radius of the thumb */
    position: relative;
}

*::-webkit-scrollbar-track {
    background-color: transparent; /* Color of the track */
}

