/* For WebKit Browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 10px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: #ffffff; /* Track color */
    cursor: pointer;
}

::-webkit-scrollbar-thumb {
    background: #114692f8; /* Thumb color */
    border-radius: 10px;
    cursor: pointer;
}
.search-data-block {
    background-color: red;
}
.search-data-block::-webkit-scrollbar {
    width: 2px; /* Width of the main scrollbar */
  }

  .search-data-block::-webkit-scrollbar-track {
    background: #f1f1f1; /* Track color (the area behind the scrollbar) */
  }

  .search-data-block::-webkit-scrollbar-thumb {
    background: #888; /* Thumb color (the draggable part of the scrollbar) */
  }

  .search-data-block::-webkit-scrollbar-thumb:hover {
    background: #555; /* Thumb color on hover */
  }