/**
 * Progress Quip Widget Styles
 *
 * Reusable progress bar with rotating quips
 * Matches agent.ai branding with blue-to-orange gradient
 */

.progress-quip-widget {
    display: none;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.progress-quip-widget.active {
    display: block;
}

.progress-quip-box {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.progress-quip-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.progress-quip-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-icon-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #f97316 100%);
    border-radius: 8px;
    animation: pulse-glow 2s ease-in-out infinite;
}

.progress-icon-container svg {
    color: white;
    width: 24px;
    height: 24px;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.progress-details {
    flex-grow: 1;
    min-width: 0;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #f97316 100%);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 4px;
}

.loading-text {
    color: #475569;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
    min-height: 2.85rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
}
