/* Pulse the green indicator itself, without any light spill, in Squad only. */
body.dzr-squad-mode .dzr-voice-bottom-dot,
body.dzr-squad-mode .dzr-srv-member-online,
body.dzr-squad-mode .dzr-srv-dot,
body.dzr-squad-mode .dzr-online-dot {
  box-shadow: none !important;
  filter: none !important;
  animation: dzr-squad-green-dot 1.8s ease-in-out infinite !important;
  transform-origin: center;
}

@keyframes dzr-squad-green-dot {
  0%, 100% { transform: scale(0.9); }
  50% { transform: scale(1.1); }
}

@media (prefers-reduced-motion: reduce) {
  body.dzr-squad-mode .dzr-voice-bottom-dot,
  body.dzr-squad-mode .dzr-srv-member-online,
  body.dzr-squad-mode .dzr-srv-dot,
  body.dzr-squad-mode .dzr-online-dot {
    animation: none !important;
  }
}
