/* Ensure the canvas covers the full viewport with a black background */
html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: black;
  font-family: Arial, sans-serif;
  color: white;
}

#sceneCanvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Overlay styling for live data and interactive buttons */
#overlay {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

#dataPanel {
  margin-bottom: 10px;
  font-size: 16px;
}

#voteButtons button {
  background-color: #444;
  border: 1px solid #666;
  color: white;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
}

#voteButtons button:hover {
  background-color: #555;
}
