.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-effect 600ms linear;
  background-color: rgba(255, 255, 255, 0.5);
}

@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
.btn {
  position: relative;
  overflow: hidden;
  border-radius: 24px !important; /* Adjust as needed */

}

