/* Enhanced live indicator pulse animation */
@keyframes live-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.15);
  }
}

.animate-live-pulse {
  animation: live-pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
