.steps-widget {
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}
@media (max-width: 900px) {
    .steps-widget {
        display: none;
    }
}
@media (min-width: 901px) {
    .steps-widget {
        display: flex;
    }
}

.steps-container {
    list-style-type: none;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}
@media (max-width: 900px) {
    .steps-container {
        flex-direction: column;
        gap: 0.3em;
    }
    .steps-container .step-icon {
        display: none;
    }
}
@media (min-width: 901px) {
    .steps-container {
        flex-direction: row;
    }
}

.step-item {
    text-align: center;
    position: relative;
    cursor: default; /* Shows pointer on hover */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
    border-radius: 5px;
}
@media (max-width: 900px) {
    .step-item {
        height: fit-content;
        padding: 0.3em;
        width: 97%;
    }
}
@media (min-width: 901px) {
    .step-item {
        height: 5.5em;
        padding: 1em;
    }
}

.step-item.active {
    background-color: #003366; /* Active step color */
    color: white;
}

.step-item.active .step-link {
    color: white;
}

.step-link {
    text-decoration: none;
    color: inherit;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.step-icon {
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

/*.step-icon img {*/
/*    width: 50px;*/
/*}*/


.step-title {
    font-size: 14px;
    display: block;
    text-align: center;
}

.step-connector {
    height: 5px;
    width: 40px;
    background-color: #003366; /* Line color */
}
@media (max-width: 900px) {
    .step-connector {
        display: none;
    }
}


