html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

canvas {
  display: block;
}

/* Custom styles for p5.js elements */
#element-slider-container input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #4B5563;
  outline: none;
  -webkit-appearance: none;
}

#element-slider-container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #3B82F6;
  cursor: pointer;
}

#element-slider-container input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #3B82F6;
  cursor: pointer;
  border: none;
}

#file-input-container input[type="file"] {
  width: 100%;
  padding: 8px 12px;
  background: #4B5563;
  border: 1px solid #6B7280;
  border-radius: 6px;
  color: white;
  font-size: 14px;
}

#file-input-container input[type="file"]:focus {
  outline: none;
  border-color: #3B82F6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}