:root {
  color-scheme: dark;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

#canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#controls_container {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  /* z-index: 10; */
}

.slider {
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 10px;
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

legend {
  color: white;
  font-weight: bold;
  padding: 0 5px;
}

.minMaxLabel {
  color: white;
  font-size: 0.8em;
  font-variant-numeric: tabular-nums;
}

#play {
  position: absolute;
}
