 /* Customize the scrollbar track */
 ::-webkit-scrollbar {
  width: 7px;
}

/* Customize the scrollbar thumb */
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #000000, #ff0000de, #000000);
  border-radius: 6px;
}

/* Add a glow effect to the thumb */
/* ::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #000000, rgb(0, 229, 255), #000000);

} */

/* Customize the scrollbar track when scrollbar is being dragged */
/* ::-webkit-scrollbar-thumb:active {
  background: linear-gradient(135deg, #000000, rgb(0, 229, 255), #000000);
} */

/* Customize the scrollbar corner */
::-webkit-scrollbar-corner {
  background-color: #000000;
}

::-webkit-scrollbar-track{
 background:black;
}