
.pickerContainer[data-v-104f7b47] {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.inputWrapper[data-v-104f7b47] {
  flex-grow: 1;
  position: relative;
  height: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
}
.inputWrapper[data-v-104f7b47]:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.colorInput[data-v-104f7b47] {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
  background: transparent;
  color: transparent;
  text-shadow: none;
  cursor: pointer;
}
.colorInput[data-v-104f7b47]:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}
.colorPickerButton[data-v-104f7b47] {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
}
.colorPickerButton[data-v-104f7b47]:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
.hiddenColorInput[data-v-104f7b47] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
