.typing-indicator {
    display: none;
    align-items: center;
    padding: 6px 16px;
    gap: 6px;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--glass-border);
}

.typing-indicator.active {
    display: flex;
}

.typing-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.typing-dots {
    display: flex;
    gap: 3px;
}

.typing-dots span {
    width: 5px;
    height: 5px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typingBounce 1.4s ease infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-4px); background: var(--accent); }
}

.typing-text {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}
