.eq-slider {
  accent-color: #00ff88;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
}
.eq-slider::-webkit-slider-runnable-track {
  background: #1a2a1a;
  height: 4px;
  border-radius: 2px;
}
.eq-slider::-moz-range-track {
  background: #1a2a1a;
  height: 4px;
  border-radius: 2px;
}
.eq-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 8px #00ff88, 0 0 16px #00ff8866;
  margin-top: -6px;
  cursor: pointer;
}
.eq-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 8px #00ff88, 0 0 16px #00ff8866;
  border: none;
  cursor: pointer;
}

#eq-curve-canvas {
  display: block;
  width: 100%;
  height: 80px;
  border-radius: 8px;
  margin-bottom: 12px;
}