/* Progress Panel for Hallucination & Evaluation */
.status-panel {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: var(--radius);
    border: 2px solid var(--border);
}

.status-panel.hidden {
    display: none;
}

.progress-container {
    margin-bottom: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background: var(--medium-gray);
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transition: width 0.5s ease;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.progress-text {
    text-align: center;
    margin-top: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
}

.status-message {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: 1rem;
}

.tech-joke {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(251, 95, 102, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    font-style: italic;
    color: var(--text);
    line-height: 1.6;
    animation: fadeIn 0.5s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}