/* AI Status Indicator Styles */
.ai-status-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    margin-bottom: 20px;
    animation: fadeIn 0.5s ease-out;
}

.ai-status-icon {
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

.ai-status-icon svg {
    height: 24px;
    width: 24px;
}

.ai-status-text {
    display: flex;
    flex-direction: column;
}

.ai-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.ai-message {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.ai-status-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(5, 150, 105, 0.08));
    border-color: rgba(16, 185, 129, 0.2);
}

.ai-status-success .ai-status-icon,
.ai-status-success .ai-label {
    color: #10b981;
}

.ai-status-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(220, 38, 38, 0.08));
    border-color: rgba(239, 68, 68, 0.2);
}

.ai-status-error .ai-status-icon,
.ai-status-error .ai-label {
    color: #ef4444;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .ai-status-indicator {
        padding: 12px 14px;
    }

    .ai-status-icon svg {
        height: 20px;
        width: 20px;
    }

    .ai-label {
        font-size: 0.85rem;
    }

    .ai-message {
        font-size: 0.75rem;
    }
}