.custom-scrollbar {
  position: fixed;
  right: 20px;
  top: 20px;
  bottom: 20px;
  width: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}
.scroll-thumb {
  position: absolute;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
}
.scroll-numbers {
  position: absolute;
  left: -50px;
  width: 40px;
  text-align: right;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 14px;
}
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  font-size: 24px;
}
.loading-bar-container {
  width: 80%;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
}
.loading-bar {
  width: 0%;
  height: 100%;
  background-color: white;
  border-radius: 10px;
  transition: width 0.2s ease-in-out;
}
