   .page-header-steps-container {
        width: 100%;
        background: #ffffff;
        border-bottom: 1px solid #d2d2d2;
        margin-bottom: 15px;
    }
    .page-header-steps-scroll-wrapper {
        overflow-x: auto;
        display: flex;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding: 12px 0px;
    }
    .page-header-steps-scroll-wrapper::-webkit-scrollbar { display: none; }
    .page-header-steps-list {
        display: flex;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 20px;
        justify-content: flex-start;
    }
    .page-header-steps-item {
        display: flex;
        align-items: center;
        white-space: nowrap;
        scroll-snap-align: start;
        gap: 8px;
    }
    .page-header-steps-circle {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        border: 1px solid #d2d2d2;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        color: #474747;
        flex-shrink: 0;
        background-color: #ffffff;
    }
    .page-header-steps-text { font-size: 13px; color: #474747; font-weight: 400; }

    /* STATUS KLEUREN */
    .page-header-steps-item.active .page-header-steps-circle {
        background-color: #003b95; border-color: #003b95; color: #ffffff;
    }
    .page-header-steps-item.active .page-header-steps-text {
        color: #003b95; font-weight: 700;
    }
    .page-header-steps-item.completed .page-header-steps-circle {
        background-color: #008009; border-color: #008009; color: #ffffff;
    }
    .page-header-steps-item.completed .page-header-steps-text { color: #008009; }