﻿/* Progress Steps */
.progress-steps {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    background-color: #fff;
    padding: 20px 0;
}

.step-container {
    display: flex;
    align-items: flex-start;
    max-width: 80%;
    width: 100%;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    z-index: 2;
}

.step.active .step-number {
    background-color: #134F93;
    color: white;
}

.step:not(.active):not(.completed) .step-number:not(.disabled-step) {
    background-color: #fff;
    border: 2px solid #134F93;
    color: #134F93;
}

.step.completed .step-number {
    background-color: #28A745;
    color: #fff;
}

.step.completed .step-line {
    background-color: #28A745;
}

.step-label {
    font-size: 14px;
    color: #535353;
    font-weight: 600;
    margin-top: 10px;
    white-space: normal;
    word-break: break-word;
}

.step.active .step-label {
    color: #172A43;
}

.step-line {
    height: 2px;
    background-color: #e9ecef;
    flex: 1;
    position: absolute;
    width: 100%;
    top: 16px;
    left: 50%;
    z-index: 1;
}


.disabled-step {
    background-color: lightgray !important;
    cursor: not-allowed;
    color:#6c757d !important;
}

