.nexora-chatbot-status:before {
    display: none;
}

.nexora-status-dot {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-radius: 50%;
    background: #86b940;
    transition: background-color 160ms ease-out, transform 160ms ease-out;
}

.nexora-chatbot-status[data-connection-state="connecting"] .nexora-status-dot,
.nexora-chatbot-status[data-connection-state="reconnecting"] .nexora-status-dot {
    background: #eab308;
    animation: nexora-status-pulse 1.2s ease-in-out infinite;
}

.nexora-chatbot-status[data-connection-state="disconnected"] .nexora-status-dot,
.nexora-chatbot-status[data-connection-state="error"] .nexora-status-dot {
    background: #ef4444;
}

@keyframes nexora-status-pulse {
    0%, 100% { opacity: .55; transform: scale(.86); }
    50% { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .nexora-status-dot {
        animation: none !important;
        transition: none !important;
    }
}
