div::-webkit-scrollbar {
    width: 8px;
  }
  
  div::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
  }
  
  div::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 4px;
  }
  
  div::-webkit-scrollbar-thumb:hover {
    background: #2980b9;
  }