/* Style for the scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: #17468f;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #17468f;
}

/* Example content with a higher z-index */
.content-with-higher-z-index {
  z-index: 99; /* Ensure content is above scrollbar */
}
