/**
 * Progress System Styles - Progress bars and step indicators
 * Contains all styles related to analysis progress visualization
 */

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

.progress-container.active {
    display: block;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}

.step-indicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ecf0f1;
    color: #7f8c8d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    font-weight: bold;
}

.step-indicator.active {
    background: #3498db;
    color: white;
}

.step-indicator.complete {
    background: #27ae60;
    color: white;
}

.step-line {
    height: 2px;
    background: #ecf0f1;
    flex: 1;
    margin: 15px 10px 0;
}

.step-line.complete {
    background: #27ae60;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: #ecf0f1;
    border-radius: 10px;
    overflow: hidden;
    margin: 15px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    width: 0%;
    transition: width 0.3s ease;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
}
