
.cursor-ripple {
  position: fixed;
  border-radius: 50%;
  border: 2px solid #00b3db;
  pointer-events: none;
  animation: ripple 0.6s ease-out forwards;
  z-index: 9999;
}

@keyframes ripple {
  0% {
    width: 20px;
    height: 20px;
    opacity: 1;
  }
  100% {
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}
