.status-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.status-dot.connected {
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

.status-dot.connecting {
    background: #fbbf24;
    animation: pulse 1s infinite;
}

.status-dot.disconnected {
    background: #f87171;
}

.status-dot.pending {
    background: #fbbf24;
    animation: pulse 1s infinite;
}

.status-text {
    color: var(--text-secondary);
}
