/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  /* Dark track */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.5);
  /* Semi-transparent thumb */
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
  /* Subtle glow effect */
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.8);
  /* Brighter on hover */
}

::-webkit-scrollbar-corner {
  background: transparent;
}

/* Volume Slider Container */
#VOLUME-CONTAINER {
  position: absolute;
  left: 20vw;
  top: 1vw;
  height: 2.7vw;
  width: 0.3vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Vertical Volume Slider */
#VOLUME-SLIDER {
  width: 2.7vw;
  height: 0.3vw;
  appearance: none;
  transform: rotate(-90deg);
  /* Rotate to vertical */
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.6vw;
  outline: none;
  cursor: pointer;
}

/* Slider Track */
#VOLUME-SLIDER::-webkit-slider-runnable-track {
  width: 2.7vw;
  height: 0.3vw;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0.6vw;
}

/* Slider Thumb */
#VOLUME-SLIDER::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1vw;
  height: 1vw;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  transform:translateY(-0.35vw);
  /* Glowing handle */
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#VOLUME-SLIDER::-webkit-slider-thumb:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 12px rgba(255, 255, 255, 1);
  /* Brighter glow on hover */
}