/* Progress Indicator Styles */

.progress-indicator {
    display: flex;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

.progress-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.progress-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.progress-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Streaming message animation */
.message.streaming .message-text {
    border-right: 2px solid var(--accent-primary);
    animation: cursorBlink 1s infinite;
}

@keyframes cursorBlink {
    0%, 50% { border-color: var(--accent-primary); }
    51%, 100% { border-color: transparent; }
}
