/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: #ffc800 #1c1c1c;
  }
  
  /* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
  
::-webkit-scrollbar-track {
    background: #1c1c1c;
    border: 2px solid #333;
    image-rendering: pixelated;
}
  
::-webkit-scrollbar-thumb {
    background: #ffc800;
    border: 2px solid #000;
    box-shadow: inset 0 0 0 2px #333;
    image-rendering: pixelated;
}
  
::-webkit-scrollbar-thumb:hover {
    background: #ffdf70;
} 