/* Works on Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: blue;
  }
  /* Works on Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
     width: 4px; 
    padding-right: 2px;
    height : 3px;
  }

  *::-webkit-scrollbar-track {
    background-color:rgb(211, 211, 211);
    
     width: 16px; 
   /*  border: 3px solid orange; */
  }

  *::-webkit-scrollbar-thumb {
    background-color: rgb(160, 160, 160);
  
    width: 4px;
   /*  border: 3px solid orange; */
  }




/*   ::-webkit-scrollbar-button:single-button {
    background-color: #bbbbbb;
    display: block;
    border-style: solid;
    height: 13px;
    width: 16px;
  }

  ::-webkit-scrollbar-button:single-button:vertical:decrement {
    height: 12px;
    width: 16px;
    background-position: center 4px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(96, 96, 96)'><polygon points='50,00 0,50 100,50'/></svg>");
}

::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(112, 112, 112)'><polygon points='50,00 0,50 100,50'/></svg>");
}

::-webkit-scrollbar-button:single-button:vertical:decrement:active {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(128, 128, 128)'><polygon points='50,00 0,50 100,50'/></svg>");
} */