/* Rep roster live-status dots */
.rep-status-dot{ display:inline-block; width:8px; height:8px; border-radius:50%; margin-right:6px; vertical-align:middle; }
.rep-status-dot.rep-status-offline{ background:#3a3a3a; }
.rep-status-dot.rep-status-online{ background:#6B7280; box-shadow:0 0 6px #6B7280; }
.rep-status-dot.rep-status-mid-deal{ background:#3B82F6; box-shadow:0 0 8px #3B82F6; animation:rep-pulse 1.4s ease-in-out infinite; }
.rep-status-dot.rep-status-just-closed{ background:#16A34A; box-shadow:0 0 8px #16A34A; }
@keyframes rep-pulse{ 0%,100%{ opacity:1; } 50%{ opacity:.35; } }
@media (prefers-reduced-motion: reduce){ .rep-status-dot.rep-status-mid-deal{ animation:none; } }
