.step {
    position: relative;
}
.step::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    width: calc(100% - 40px);
    height: 2px;
    background-color: #e0e0e0;
}
.step:last-child::after {
    display: none;
}
.step.completed .step-icon {
    background-color: #28a745 !important;
}
.step.active .step-icon {
    background-color: #007bff !important;
}