body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  transition: background-color 0.3s ease;
}
.container {
  background-color: #232323;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.container.hidden {
  transform: translateY(-100%);
}
.color-options {
  display: flex;
  align-items: center;
}
.color-option {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #000;
  margin-right: 10px;
}
.color-picker {
  display: flex;
  align-items: center;
}
#colorWheel {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  border: 1px solid #000;
  border-radius: 50%;
  cursor: pointer;
  background-color: transparent;
}
#colorWheel::-webkit-color-swatch {
  border: none;
  border-radius: 50%;
  padding: 0;
}
#colorWheel::-webkit-color-swatch-wrapper {
  border: none;
  border-radius: 50%;
  padding: 0;
}
#colorWheel::-moz-color-swatch {
  border: none;
  border-radius: 50%;
  padding: 0;
}
.custom-label {
  color: #fff;
  margin-right: 5px;
  font-weight: bold;
}
#toggleContainer {
  position: fixed;
  top: 10px;
  right: 10px;
  background-color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}