.clock-picker {
  position: absolute;
  width: 240px;
  height: 240px;
  background: transparent;
  opacity: 0;
  transform: translateY(-20px) scale(0.2);
  transition: opacity 0.15s ease, transform 0.15s ease;
  margin-top: 10px;
}

/* Chrome / Safari keep the polish */
.clock-picker {
  filter: drop-shadow(4px 4px 8px #000);
}

/* Firefox fails to render children when filter + transform are combined.
   See: custom clock picker compositor bug. */
@-moz-document url-prefix() {
  .clock-picker {
    filter: none;
  }
}

/* Mobile modal centering */
.clock-picker.mobile-center {
  position: fixed !important;
  left: 50% !important;
  top: 50% !important;
  right: auto !important;
  bottom: auto !important;

  transform: translate(-50%, -50%) !important;
}

/* Disable open animation transform on mobile modal */
.clock-picker.mobile-center.open {
  transform: translate(-50%, -50%) !important;
}

.clock-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  display: none;
}

.clock-picker.open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* pointer toward input */
.clock-picker::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 12px solid #ffffff;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.15));
  pointer-events: none;
}

.clock-picker::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    border-top-left-radius: 4px;
    background-color: rgba(255, 255, 255, 0.9);/*#00ca00;*/
    filter: drop-shadow(2px 2px 4px #000);
    backdrop-filter: saturate(180%) blur(20px);
    z-index: 0;
  }

/* CLOCK FACE */
.clock-face {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 20px auto;
  border-radius: 50%;
  background: #ffffff;
  overflow: visible;
  z-index: 1;
}

/* white filler ring */
.clock-face::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: #ffffff;
  pointer-events: none;
  z-index: 0;
}

/* green outer ring */
.clock-face::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 12px solid rgba(255, 255, 255, 0.9);
  filter: drop-shadow(2px 2px 4px #000);
  backdrop-filter: saturate(180%) blur(20px);
  pointer-events: none;
  z-index: 0;
}

/* CLOCK NUMBERS */
.clock-number {
  position: absolute;
  width: 30px;
  height: 30px;
  margin-left: -15px;
  margin-top: -15px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 17px;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  z-index: 3;
  transition: background 0.15s ease, color 0.15s ease;
}

.clock-number:hover,
.clock-number.highlight {
  background: rgba(0,202,0,0.5);
}

.clock-number.selected {
  background: rgba(220,0,0,0.8);
  color: #ffffff;
}

/* CLOCK HAND */
.clock-hand {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 2;

  --hand-angle: 0deg;
  --hand-scale: 1;
}

.clock-hand::before {
  content: "";
  position: absolute;
  left: -2px;
  bottom: 0;
  width: 4px;
  height: 68px; /* your original hand length */
  background: var(--hand-color);
  z-index: 2;

  transform-origin: center bottom;
  transform: rotate(var(--hand-angle)) scaleY(var(--hand-scale));
}

/* Default: both fully visible */
.clock-number.inner,
.clock-number.outer {
  opacity: 1;
  transition: opacity 120ms ease;
}

/* Inner ring active -> fade outer ring */
.active-inner-ring .clock-number.outer {
  opacity: 0.5;
}

/* Outer ring active -> fade inner ring */
.active-outer-ring .clock-number.inner {
  opacity: 0.5;
}

/* CENTER DOT */
.clock-center {
  position: absolute;
  width: 30px;
  height: 30px;
  background: #00ca00;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 4;
}

/* DRAGGABLE HANDLE */
.clock-handle {
  position: absolute;
  width: 28px;
  height: 28px;
  background: #caca00;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.75);
  cursor: grab;
  z-index: 5;
}

.clock-handle {
  touch-action: none;
}

.clock-handle::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #caca00;
}

.clock-handle:active {
  cursor: grabbing;
}
