/* =============================================================================
   components/progress-bar.css - Progress Bar Component Styles
   ============================================================================= */

.progress-container {
    margin-top: 20px;
    display: none;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #e2e8f0;
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #48bb78, #38a169);
    width: 0%;
    transition: width 0.3s ease;
}

.progress-fill.indeterminate {
    animation: indeterminate 2s ease-in-out infinite;
}

.progress-fill.completed {
    background: linear-gradient(90deg, #48bb78, #38a169);
}

.progress-fill.error {
    background: linear-gradient(90deg, #f56565, #e53e3e);
}

.progress-text {
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
    color: #585858;
}

.progress-details {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.8em;
    color: #718096;
}

.progress-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-label {
    font-size: 0.7em;
    color: #a0aec0;
}

.stat-value {
    font-weight: 600;
    color: #4a5568;
}

