:root {
  --primary-color: #45889c;
  --secondary-color: #c5c98e;
  --text-color: white;
  --text-font: Arial;
}

.button-container {
  position: absolute;
  width: 78px;
  height: auto;
  top: 30%;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.button {
  padding: 10px;
  background-color: var(--primary-color);
  color: var(--text-color);
  border: none;
  border-radius: 15%;
  cursor: pointer;
}

.button:hover {
  color: rgb(132, 129, 124);
  background-color: var(--secondary-color);
}

#vol-container {
  bottom: 10px;
  left: 20px;
}

#pan-container {
  bottom: 10px;
  right: 20px;
}

.slider-container {
  position: fixed;
  width: 33%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  outline: auto;
  background-color: rgba(255, 255, 255, 0.7);
  color: white;
}

.slider {
  width: 90%;
  height: 5px;
  background-color: var(--primary-color);
  outline: none;
  opacity: 0.5;
  transition: opacity 0.2s;
  border-radius: 10px; /* Adjust border-radius for slider */
  margin-bottom: 15px;
  margin-left: 5%;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: initial;
  width: 15px;
  height: 15px;
  border-radius: 20%;
  background: var(--primary-color);
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #ff0000;
  cursor: pointer;
}

#canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  outline: auto;
}

.label {
  display: block;
  margin-bottom: 20px;
}

.canvas {
  width: 100%;
  height: 100%;
  outline: auto;
  text-align: center;
}

body {
  overflow: hidden;
}


