/* General page style */
body {
  margin: 0;
  background-color: #000000; /* black background */
  overflow: hidden;          /* no scrollbars for overflow */
}

/* Ensure canvas covers the screen */
#starCanvas {
  display: block;
}

/* Slider container at bottom center */
#sliderContainer {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #FFFFFF;
  font-family: Arial, sans-serif;
}

/* Display of current slider value (number of stars) above the slider */
#sliderValue {
  margin-bottom: 5px;
  font-size: 14px;
}

/* Active users counter display (top-right corner) */
#activeUsers {
  position: fixed;
  top: 10px;
  right: 10px;
  color: #FFFFFF;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

/* Slider styling (width set for easier control) */
#starCountRange {
  width: 300px;
}
