.live-server-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.live-server-status span {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.live-server-status span.online {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.45);
}

.live-server-status span.offline {
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.35);
}