* {
    scrollbar-width: thin;
    scrollbar-color: rgba(120,120,120,0.6) transparent;
  }
  *::-webkit-scrollbar {
    width: 8px;
  }
  
  *::-webkit-scrollbar-track {
    background: transparent;
  }
  
  *::-webkit-scrollbar-thumb {
    background-color: rgba(120,120,120,0.6);
    border-radius: 6px;
    transition: background 0.2s;
  }
  
  *::-webkit-scrollbar-thumb:hover {
    background-color: rgba(120,120,120,0.9);
  }