/* Apply this class to the element whose scrollbar you want to style */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #ffffff00; /* RE-ADDED */
}
::-webkit-scrollbar-track {
  background: #5d5e5fff;
  border-radius: 2.5px;
  /* NEW: Track Shadow */
}
::-webkit-scrollbar-thumb {
  background-color: #142a61;
  border-radius: 5px;
  box-shadow: 1px 1px 3px #0000004d;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #152e6d;
}
::-webkit-scrollbar-thumb:active {
  background-color: #152e6d;
}
::-webkit-scrollbar-corner {
  background: #f1f1f1;
}
::-webkit-scrollbar-button {
  display: none; /* NEW: Hide Buttons */
}
