.progress-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 20%;
    position: relative;
    z-index: 1;
}

.progress-step .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: white;
    position: relative;
    z-index: 2;
}

.progress-step.active .icon {
    background-color: #28a745;
}
.progress-step.current .icon {
    border: 2px solid #28a745;
    background-color: #fff;
    color: #28a745;

}
.progress-step.current.rejected .icon {
    border: 2px solid #dc3545;
    background-color: #dc3545;
    color: black;

}


.progress-step .label {
    margin-top: 10px;
    font-size: 12px;
    color: #333;
}

.progress-line {
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 4px;
    background-color: #ddd;
    z-index: 0;

}

.progress-line-active {
    position: absolute;
    top: 20px;
    left: 10%;
    height: 4px;
    background-color: #28a745;
    z-index: 1;
    transition: width 0.3s ease;
} 
.text-success {
    color: black
}

.text-danger {
    color: black;
}