/* Call Bubble styles */
.mace-call-bubble {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #28a745; /* will be overridden via inline style */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(40,167,69,0.35); /* overridden */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mace-call-bubble:hover {
  transform: scale(1.05);
}
.mace-call-bubble__icon {
  display: block;
}

/* Pulsation effect */
.mace-call-bubble.mace-pulsate::before,
.mace-call-bubble.mace-pulsate::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #28a745; /* overridden */
  animation: mace-pulse 2s infinite;
}
.mace-call-bubble.mace-pulsate::after {
  animation-delay: 1s;
}

@keyframes mace-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
