/* width */
::-webkit-scrollbar {
    width: 12px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 4px;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: rgb(189, 189, 189);
    border-radius: 10px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: rgb(155, 155, 155);
    cursor: pointer;
  }

  .moves-container::-webkit-scrollbar {
    width: 10px;
  }

  .moves-container::-webkit-scrollbar-track {
    background-color: rgb(255, 255, 255);
  }

  .moves-container::-webkit-scrollbar-thumb {
    background-color: rgb(165, 165, 165);
  }

  .moves-container::-webkit-scrollbar-thumb:hover {
    background-color: rgb(155, 155, 155);
  }