.live-dot{
    width:10px;
    height:10px;
    background:#22c55e;
    border-radius:50%;
    display:inline-block;
    position:relative;
    flex-shrink:0;
}

.live-dot::after{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#22c55e;
    transform:translate(-50%,-50%);
    animation:livePulse 1.5s infinite;
}

@keyframes livePulse{
    0%{
        transform:translate(-50%,-50%) scale(1);
        opacity:.8;
    }
    70%{
        transform:translate(-50%,-50%) scale(2.5);
        opacity:0;
    }
    100%{
        transform:translate(-50%,-50%) scale(1);
        opacity:0;
    }
}
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 50%;
  background-color: #22c55e;
  animation: blink-green 1.2s infinite;
}

@keyframes blink-green {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}