/* 自定义颜色选择器样�?*/
.color-picker-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.color-picker-input {
  width: 56px;
  height: 56px;
  padding: 0;
  border: 2px solid rgb(var(--mdui-color-outline));
  border-radius: 12px;
  cursor: pointer;
  background: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.color-picker-input:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.color-picker-text {
  flex: 1;
}
