/* _content/Betamedics.Web/Components/Layout/AdminLayout.razor.rz.scp.css */
/* ---- Layout Shell ---- */
.admin-layout[b-p50qtfnk6x] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #F5F7F7;
}

/* ---- Top Navbar ---- */
.admin-navbar[b-p50qtfnk6x] {
    background: #ffffff;
    border-bottom: 1px solid #E5E7EB;
    padding: 0.875rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 200;
}

.admin-navbar-left[b-p50qtfnk6x] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-navbar-brand[b-p50qtfnk6x] {
    display: flex;
    align-items: baseline;
    gap: 0.625rem;
}

.admin-brand-logo[b-p50qtfnk6x] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0D9488;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.admin-brand-logo:hover[b-p50qtfnk6x] {
    color: #0a7a70;
    text-decoration: none;
}

.admin-brand-subtitle[b-p50qtfnk6x] {
    font-size: 0.8125rem;
    color: #9CA3AF;
    font-weight: 400;
}

/* ---- Navbar Actions ---- */
.admin-navbar-actions[b-p50qtfnk6x] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-nav-link[b-p50qtfnk6x] {
    font-size: 0.875rem;
    color: #6B7280;
    text-decoration: none;
    font-weight: 400;
}

.admin-nav-link:hover[b-p50qtfnk6x] {
    color: #1F2937;
    text-decoration: none;
}

.admin-logout-btn[b-p50qtfnk6x] {
    font-size: 0.8125rem;
    padding: 0.375rem 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

/* ---- Hamburger toggle button ---- */
.sidebar-toggle[b-p50qtfnk6x] {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: none;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    color: #374151;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s;
}

.sidebar-toggle:hover[b-p50qtfnk6x] {
    background: #F3F4F6;
}

/* ---- Body ---- */
.admin-body[b-p50qtfnk6x] {
    flex: 1;
    display: flex;
    min-height: calc(100vh - 56px);
}

/* ---- Sidebar ---- */
.admin-sidebar[b-p50qtfnk6x] {
    width: 220px;
    flex-shrink: 0;
    background: #fff;
    border-right: 1px solid #E5E7EB;
    padding: 1.25rem 0;
}

.admin-sidenav[b-p50qtfnk6x] {
    display: flex;
    flex-direction: column;
}

.sidenav-section-label[b-p50qtfnk6x] {
    padding: 0 1rem 0.25rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sidenav-link[b-p50qtfnk6x] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: background 0.15s, color 0.15s;
}

.sidenav-link:hover[b-p50qtfnk6x] {
    background: #F9FAFB;
    color: #111827;
    text-decoration: none;
}

.sidenav-link.active[b-p50qtfnk6x] {
    background: #EFF6FF;
    color: #1D4ED8;
    border-left-color: #1D4ED8;
    font-weight: 600;
}

.sidenav-icon[b-p50qtfnk6x] {
    flex-shrink: 0;
    opacity: 0.7;
}

.sidenav-link.active .sidenav-icon[b-p50qtfnk6x] {
    opacity: 1;
}

/* ---- Sidebar Overlay (mobile only, geactiveerd via JS) ---- */
.sidebar-overlay[b-p50qtfnk6x] {
    display: none;
}

/* ---- Main Content ---- */
.admin-main[b-p50qtfnk6x] {
    flex: 1;
    padding: 2rem 1.5rem;
    min-width: 0;
}

/* ============================================================
   Tablet: 768px – 991px — iets minder ruimte, sidebar smaller
   ============================================================ */
@media (min-width: 768px) and (max-width: 991.98px) {
    .admin-sidebar[b-p50qtfnk6x] {
        width: 185px;
    }

    .admin-main[b-p50qtfnk6x] {
        padding: 1.5rem 1rem;
    }
}

/* ============================================================
   Mobile: < 768px — sidebar als uitschuivend overlay
   ============================================================ */
@media (max-width: 767.98px) {

    /* Toon hamburger */
    .sidebar-toggle[b-p50qtfnk6x] {
        display: flex;
    }

    /* Minder padding in navbar */
    .admin-navbar[b-p50qtfnk6x] {
        padding: 0.75rem 1rem;
    }

    /* Verberg subtitel en boekingspagina-link */
    .admin-brand-subtitle[b-p50qtfnk6x] {
        display: none;
    }

    .admin-nav-link[b-p50qtfnk6x] {
        display: none;
    }

    /* Verberg uitloggen tekst, toon enkel icoon */
    .logout-label[b-p50qtfnk6x] {
        display: none;
    }

    .admin-logout-btn[b-p50qtfnk6x] {
        padding: 0.375rem 0.5rem;
    }

    /* Sidebar: vaste overlay die van links inschuift */
    .admin-sidebar[b-p50qtfnk6x] {
        position: fixed;
        top: 0;
        left: -250px;
        height: 100vh;
        width: 250px;
        z-index: 300;
        padding-top: 1.5rem;
        overflow-y: auto;
        transition: left 0.25s ease, box-shadow 0.25s ease;
        box-shadow: none;
    }

    .admin-sidebar.admin-sidebar--open[b-p50qtfnk6x] {
        left: 0;
        box-shadow: 6px 0 24px rgba(0, 0, 0, 0.18);
    }

    /* Donker overlay achter de sidebar — enkel zichtbaar als sidebar open is */
    .sidebar-overlay.sidebar-overlay--active[b-p50qtfnk6x] {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 299;
        cursor: pointer;
    }

    /* Content vult volledige breedte */
    .admin-main[b-p50qtfnk6x] {
        padding: 1rem;
    }

    /* Pagina-headers met actieknop: wrap op kleine schermen */
    .admin-main .d-flex.justify-content-between[b-p50qtfnk6x] {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

/* ============================================================
   Extra small: < 480px — nog wat extra ruimte besparen
   ============================================================ */
@media (max-width: 479.98px) {
    .admin-main[b-p50qtfnk6x] {
        padding: 0.75rem;
    }
}
/* _content/Betamedics.Web/Components/Layout/BookingSidebarSummary.razor.rz.scp.css */
.sidebar-summary[b-xtixvv20nc] {
    border-top: 1px solid #E5E7EB;
    padding-top: 0.875rem;
    margin-top: 0.875rem;
}

.summary-title[b-xtixvv20nc] {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

/* Toggle knop — verborgen op desktop */
.summary-toggle-btn[b-xtixvv20nc] {
    display: none;
}

/* Items — op desktop altijd zichtbaar als verticale lijst */
.summary-items[b-xtixvv20nc] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.summary-item[b-xtixvv20nc] {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.summary-icon[b-xtixvv20nc] {
    flex-shrink: 0;
    width: 13px;
    height: 13px;
    color: #0D9488;
    margin-top: 2px;
}

.summary-item-body[b-xtixvv20nc] {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.summary-item-main[b-xtixvv20nc] {
    font-size: 0.75rem;
    font-weight: 500;
    color: #1F2937;
    line-height: 1.35;
    word-break: break-word;
}

.summary-item-sub[b-xtixvv20nc] {
    font-size: 0.6875rem;
    color: #6B7280;
    line-height: 1.3;
}

.summary-totaal[b-xtixvv20nc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #E5E7EB;
    padding-top: 0.5rem;
    margin-top: 0.125rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #1F2937;
}

.summary-totaal-amount[b-xtixvv20nc] {
    color: #0D9488;
    font-weight: 700;
}

/* ---- Mobiele weergave: inklapbare samenvatting ---- */
@media (max-width: 768px) {
    .sidebar-summary[b-xtixvv20nc] {
        border-top: 1px solid #E5E7EB;
        padding-top: 0.5rem;
        margin-top: 0;
        width: 100%;
    }

    .summary-title[b-xtixvv20nc] {
        display: none;
    }

    /* Toggle knop zichtbaar op mobiel */
    .summary-toggle-btn[b-xtixvv20nc] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: none;
        border: none;
        padding: 0.125rem 0;
        cursor: pointer;
        gap: 0.5rem;
        text-align: left;
    }

    .summary-toggle-label[b-xtixvv20nc] {
        font-size: 0.75rem;
        font-weight: 600;
        color: #374151;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
    }

    .summary-toggle-total[b-xtixvv20nc] {
        color: #0D9488;
    }

    .summary-toggle-chevron[b-xtixvv20nc] {
        flex-shrink: 0;
        color: #6B7280;
        transition: transform 0.2s ease;
    }

    .sidebar-summary.is-open .summary-toggle-chevron[b-xtixvv20nc] {
        transform: rotate(180deg);
    }

    /* Items verborgen op mobiel tenzij open */
    .summary-items[b-xtixvv20nc] {
        display: none;
        padding-top: 0.625rem;
    }

    .sidebar-summary.is-open .summary-items[b-xtixvv20nc] {
        display: flex;
    }

    .summary-totaal[b-xtixvv20nc] {
        border-top: 1px solid #E5E7EB;
        padding-top: 0.5rem;
        margin-top: 0;
        background: none;
        border-radius: 0;
        padding-left: 0;
        padding-right: 0;
    }
}
/* _content/Betamedics.Web/Components/Layout/LoginLayout.razor.rz.scp.css */
.login-layout[b-x5xt0jt7bi] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #F5F7F7;
}

/* ---- Top bar ---- */
.login-topbar[b-x5xt0jt7bi] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

.login-back-link[b-x5xt0jt7bi] {
    font-size: 0.875rem;
    color: #6B7280;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 2px;
}

.login-back-link:hover[b-x5xt0jt7bi] {
    color: #1F2937;
    text-decoration: none;
}

.login-brand[b-x5xt0jt7bi] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0D9488;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.login-brand:hover[b-x5xt0jt7bi] {
    color: #0a7a70;
    text-decoration: none;
}

/* ---- Main / Card area ---- */
.login-main[b-x5xt0jt7bi] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

/* ---- Footer ---- */
.login-footer[b-x5xt0jt7bi] {
    padding: 1.25rem;
    text-align: center;
}

.login-footer p[b-x5xt0jt7bi] {
    font-size: 0.8125rem;
    color: #9CA3AF;
    margin: 0;
}
/* _content/Betamedics.Web/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-n5qvau1k0z] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-n5qvau1k0z] {
    flex: 1;
}

.sidebar[b-n5qvau1k0z] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-n5qvau1k0z] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-n5qvau1k0z]  a, .top-row[b-n5qvau1k0z]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-n5qvau1k0z]  a:hover, .top-row[b-n5qvau1k0z]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-n5qvau1k0z]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-n5qvau1k0z] {
        justify-content: space-between;
    }

    .top-row[b-n5qvau1k0z]  a, .top-row[b-n5qvau1k0z]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-n5qvau1k0z] {
        flex-direction: row;
    }

    .sidebar[b-n5qvau1k0z] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-n5qvau1k0z] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-n5qvau1k0z]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-n5qvau1k0z], article[b-n5qvau1k0z] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-n5qvau1k0z] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-n5qvau1k0z] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Betamedics.Web/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-j58798n9tp] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-j58798n9tp] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-j58798n9tp] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-j58798n9tp] {
    font-size: 1.1rem;
}

.bi[b-j58798n9tp] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-j58798n9tp] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-j58798n9tp] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-j58798n9tp] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-j58798n9tp] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-j58798n9tp] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-j58798n9tp] {
        padding-bottom: 1rem;
    }

    .nav-item[b-j58798n9tp]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-j58798n9tp]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-j58798n9tp]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-j58798n9tp] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-j58798n9tp] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-j58798n9tp] {
        display: none;
    }

    .nav-scrollable[b-j58798n9tp] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/Betamedics.Web/Components/Layout/PublicLayout.razor.rz.scp.css */
.public-layout[b-d3kpjt8rns] {
    display: flex;
    min-height: 100vh;
}

/* ---- Sidebar ---- */
.public-sidebar[b-d3kpjt8rns] {
    width: 200px;
    min-width: 200px;
    background: #ffffff;
    border-right: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    padding: 1.25rem 0.875rem;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-top[b-d3kpjt8rns] {
    margin-bottom: 1.5rem;
}

.brand-logo[b-d3kpjt8rns] {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0D9488;
    text-decoration: none;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.brand-logo:hover[b-d3kpjt8rns] {
    color: #0a7a70;
    text-decoration: none;
}

.lang-selector[b-d3kpjt8rns] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #6B7280;
    cursor: pointer;
    padding: 4px 0;
}

/* ---- Steps ---- */
.sidebar-steps[b-d3kpjt8rns] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    flex: 1;
}

.step-item[b-d3kpjt8rns] {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.5rem 0.5rem;
    border-radius: 6px;
    text-decoration: none;
    color: #9CA3AF;
    font-size: 0.75rem;
    line-height: 1.4;
    transition: color 0.15s;
}

.step-item:hover[b-d3kpjt8rns] {
    color: #4B5563;
    text-decoration: none;
}

.step-item.active[b-d3kpjt8rns] {
    color: #1F2937;
}

.step-item.completed[b-d3kpjt8rns] {
    color: #0D9488;
}

.step-number[b-d3kpjt8rns] {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #9CA3AF;
    background: #fff;
}

.step-item.active .step-number[b-d3kpjt8rns] {
    background: #0D9488;
    border-color: #0D9488;
    color: #fff;
}

.step-item.completed .step-number[b-d3kpjt8rns] {
    background: #0D9488;
    border-color: #0D9488;
    color: #fff;
}

.step-label[b-d3kpjt8rns] {
    padding-top: 2px;
}

/* ---- Mobile step bar (hidden on desktop) ---- */
.mobile-step-bar[b-d3kpjt8rns] {
    display: none;
}

.mobile-current-step[b-d3kpjt8rns] {
    display: none;
}

/* ---- Summary ---- (styles live in BookingSidebarSummary.razor.css) ---- */

/* ---- Footer ---- */
.sidebar-footer[b-d3kpjt8rns] {
    margin-top: 0.75rem;
    border-top: 1px solid #E5E7EB;
    padding-top: 0.75rem;
}

.beheer-link[b-d3kpjt8rns] {
    font-size: 0.75rem;
    color: #9CA3AF;
    text-decoration: none;
}

.beheer-link:hover[b-d3kpjt8rns] {
    color: #6B7280;
    text-decoration: none;
}

/* ---- Main content ---- */
.public-main[b-d3kpjt8rns] {
    flex: 1;
    background: #F5F7F7;
    display: flex;
    justify-content: center;
    padding: 2rem 1.5rem;
}

.public-content[b-d3kpjt8rns] {
    width: 100%;
    max-width: 720px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .public-layout[b-d3kpjt8rns] {
        flex-direction: column;
    }

    .public-sidebar[b-d3kpjt8rns] {
        width: 100%;
        min-width: unset;
        height: auto;
        position: sticky;
        top: 0;
        z-index: 100;
        flex-direction: column;
        gap: 0;
        padding: 0.625rem 1rem 0.5rem;
        border-right: none;
        border-bottom: 1px solid #E5E7EB;
        background: #fff;
    }

    .sidebar-top[b-d3kpjt8rns] {
        width: 100%;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Stap-voortgangsbalk tonen op mobiel */
    .mobile-step-bar[b-d3kpjt8rns] {
        display: flex;
        align-items: center;
        width: 100%;
        margin-bottom: 0.25rem;
    }

    .msb-dot[b-d3kpjt8rns] {
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        border: 2px solid #E5E7EB;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.625rem;
        font-weight: 700;
        color: #9CA3AF;
        background: #fff;
    }

    .msb-dot.active[b-d3kpjt8rns] {
        background: #0D9488;
        border-color: #0D9488;
        color: #fff;
    }

    .msb-dot.done[b-d3kpjt8rns] {
        background: #0D9488;
        border-color: #0D9488;
        color: #fff;
        font-size: 0.5rem;
    }

    .msb-line[b-d3kpjt8rns] {
        flex: 1;
        height: 2px;
        background: #E5E7EB;
    }

    .msb-line.done[b-d3kpjt8rns] {
        background: #0D9488;
    }

    .mobile-current-step[b-d3kpjt8rns] {
        display: block;
        font-size: 0.75rem;
        font-weight: 600;
        color: #374151;
        margin: 0 0 0.375rem 0;
    }

    /* Desktop stappen-nav en footer verbergen op mobiel */
    .sidebar-steps[b-d3kpjt8rns],
    .sidebar-footer[b-d3kpjt8rns] {
        display: none;
    }

    .public-main[b-d3kpjt8rns] {
        padding: 1rem;
    }
}
