/* Контейнер: теперь занимает всю ширину и центрирует контент */
.sh-status-indicator {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 5px !important;
    width: 100% !important;
    background: none !important;
    border: none !important;
}

/* Твой блок с line-height: 4 */
.sh-label {
    font-size: 12px;
    font-weight: 600;
    line-height: 4;
}

/* Точка статуса */
.sh-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}

.sh-dot::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 50%;
    animation: sh-pulse 2s infinite;
}

/* Цвета */
.sh-status-online .sh-dot, .sh-status-online .sh-dot::after { background-color: #28a745; }
.sh-status-online .sh-label { color: #28a745; }

.sh-status-offline .sh-dot, .sh-status-offline .sh-dot::after { background-color: #e74c3c; }
.sh-status-offline .sh-label { color: #e74c3c; }

/* Текст времени и иконка */
.sh-time {
    font-size: 12px;
    color: #6b707c;
    font-weight: 400;
}

.sh-info-icon {
    font-size: 12px;
    color: #999;
    margin-left: 2px;
}

@keyframes sh-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    70% { transform: scale(3); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}