.color-picker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-color: var(--accent-bg);
}
.color-display {
  width: 200px;
  height: 200px;
  background-color: #ff0000;
  border-radius: 10rem;
}
.slider-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 300px;
}
.slider-label {
  font-size: 14px;
  font-family: Arvo, serif;
  margin-bottom: 5px;
  color: var(--text);
}
.slider {
  width: 100%;
  appearance: none;
  height: 10px;
  border-radius: 5px;
  outline: none;
  background: #ccc;
  cursor: pointer;
  border: none;
}
.slider::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}