/* Shared color picker component */
.color-picker {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.color-picker__hue-ring-container {
  position: relative;
  width: 110px;
  height: 110px;
}

.color-picker__hue-ring {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: conic-gradient(red, yellow, lime, aqua, blue, magenta, red);
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.color-picker__hue-ring-inner {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.1);
}

.color-picker__hue-marker {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border: 2px solid #333333;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.color-picker__shade-square {
  width: 110px;
  height: 110px;
  position: relative;
  border-radius: 8px;
  cursor: crosshair;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.color-picker__shade-marker {
  position: absolute;
  width: 14px;
  height: 14px;
  background: transparent;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px #333333, 0 1px 4px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
