/* width */
.search-box {
    ::-webkit-scrollbar {
        border-radius: 250px;
        width: 10px;
        margin-left: 30px;
        position: absolute;
        left: 500px;
      }
      
      ::-webkit-scrollbar-track {
        border-top-right-radius: 25px;
        border-bottom-right-radius: 25px;
        background: var(--primary-color);
      }
      
      ::-webkit-scrollbar-thumb {
        border-radius: 25px;
        background: var(--secondary-color)
      }
      
      /* Handle on hover */
      ::-webkit-scrollbar-thumb:hover {
        background: #555;
      }
}
