#progress-bar-container {
    padding: 20px;
}

.progress-container {
    display: flex;
    align-items: center;
    position: relative;
}

.progress-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffeb3b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    position: relative;
    font-size: 18px;
    color: #666;
    border: 2px solid transparent; /* Default border */
}

.progress-circle.completed {
    background: #3f8841;
    color: #fff;
    border-color: #ffeb3b;
}

.progress-circle.completed::after {
    position: absolute;
    font-size: 20px;
    color: #ffeb3b; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.progress-line {
    flex-grow: 1;
    height: 2px;
    background: #e0e0e0;
    position: relative;
    align-self: center;
}

.progress-line.completed {
    background: #3f8841;
}

.completed-mark {
    color: #3f8841 !important;
    display: none;
}

.progress-label {
    margin-top: 5px;
    text-align: center;
    font-size: 14px;
}

.progress-summary {
    margin-top: 20px;
    text-align: center;
}

.custom-text-green{
    color:#3f8841 !important;
}

.custom-bg-green{
    background-color:#3f8841 !important;
    border-color: #3f8841 !important;
}