/* Click Ripple Animation CSS */

.click-ripple {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(102, 255, 240, 0.4);
  box-shadow: 0 0 10px rgba(102, 255, 240, 0.6), 
              0 0 20px rgba(102, 255, 240, 0.4), 
              0 0 30px rgba(102, 255, 240, 0.2);
  z-index: 9998;
  animation: rippleEffect 0.8s ease-out forwards;
}

@keyframes rippleEffect {
  0% {
    width: 0px;
    height: 0px;
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Enable ripple effect on all devices including touch devices */

