/* Barre de progression */
.progress-container {
    background: var(--bg-primary);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    border: 2px solid var(--warning-color);
    box-shadow: var(--shadow-md);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.progress-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.progress-percentage {
    font-size: 18px;
    font-weight: 800;
    color: var(--warning-color);
}

.progress-bar {
    height: 12px;
    background: var(--gray-light);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    margin-bottom: var(--spacing-sm);
    border: 2px solid var(--border-color);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--warning-color), var(--warning-color-light));
    border-radius: 4px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

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

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

.progress-message {
    font-size: 16px;
    font-weight: 600;
    color: var(--warning-color);
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}