.step-progress-bar {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 50px 0;
    position: relative;
}

.step-progress-bar::before {
    content: '';
    position: absolute;
    top: 18px; /* matches vertical center of icon */
    left: calc(50% / 8);
    right: calc(50% / 8);
    height: 2px;
    border-top: 2px dashed #bbb;
    z-index: 0;
}

.step-progress-bar li {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 1;
    padding: 0 5px;
}

.step-progress-bar li .circle {
    width: 36px;
    height: 36px;
    background-color: #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: bold;
    z-index: 1;
    position: relative;
}

.step-progress-bar li.active .circle {
    background-color: #192d66; /* or your primary */
    color: #fbef55;
}

.step-progress-bar li .label {
    margin-top: 8px;
    font-size: 14px;
    color: #333;
    font-weight: normal;
    text-align: center;
    max-width: 90px;
    word-wrap: break-word;
    line-height: 1.2;
}

.step-progress-bar li.active .label {
    font-weight: bold;
}

/* Step content visibility */
.step-tab-content-wrapper {
    padding-top: 10px;
}

.step-tab-content {
    display: none;
}

.step-tab-content.active {
    display: block;
}

.step-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #192d66;
    color: #fbef55;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 16px;
}
