/* width */
::-webkit-scrollbar {
    width: 8px;
}
  
  /* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3); 
    background-color: var(--color-primary);
}
   
  /* Handle */
::-webkit-scrollbar-thumb {
    background-color: var(--color-accent);
    border-radius: 10px;
}
  
  /* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: white; 
}