body::-webkit-scrollbar {
  width: 1.3rem;               /* width of the entire scrollbar */
  }
  
  body::-webkit-scrollbar-track {
    background: #000000;        /* color of the tracking area */
  }
  
  body::-webkit-scrollbar-thumb {
    background-color: #daa520;    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    border: 3px solid #000000;  /* creates padding around scroll thumb */
  }
  .sortable-handler {
    touch-action: none;
  }