/* Webkit scrollbar */
/* this targets the default scrollbar (compulsory) */
::-webkit-scrollbar {
      width: 15px;
} 

/* the new scrollbar will have a flat appearance with the set background color */
::-webkit-scrollbar-track {
      background-color: #999 
} 
 
/* this will style the thumb, ignoring the track */
::-webkit-scrollbar-thumb {
      background-color: #000; 
} 
 
/* if both the vertical and the horizontal bars appear, then perhaps the right bottom corner also needs to be styled */
::-webkit-scrollbar-corner {
      background-color: black;
}


/*
// optionally, you can style the top and the bottom buttons (left and right for horizontal bars)
::-webkit-scrollbar-button {
      background-color: #7c2929;
}
*/