/* width */
::-webkit-scrollbar {
    width: 5px;
    border-radius: 12px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    width: 5px;
    background: #d8cfc1;
    border-radius: 12px; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    width: 5px;
    background: #c4bcaf;
    border-radius: 12px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    width: 5px;
    background: #c4bcaf;
    border-radius: 12px;
  }