/* Moon Widget CSS - Similar to sunwidget.css */

#moon-widget {
  position: absolute;
  width: 100%;
  text-align: center;
  margin-top: 3vh;
}

.moon-path-layer {
  position: absolute;
  top: 0px;
  z-index: -1;
  pointer-events: none;
}

#moonCircle {
  filter: drop-shadow(0 0 12px rgba(200, 200, 230, 0.6));
  transition: fill 0.3s ease, stroke 0.3s ease;
}

#moonGlow {
  transition: fill 0.3s ease;
}

/* Moon path styling */
#moonPath {
  opacity: 0.3;
}

/* Optional: Add subtle animation to moon glow */
@keyframes moonPulse {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

#moonGlow {
  animation: moonPulse 4s ease-in-out infinite;
}
