/* /Components/Layout/AppHeader.razor.rz.scp.css */
.app-header--admin[b-pkz9kbay1a] {
    background: #000;
    color: #fff;
    display: grid;
    grid-template-columns: auto 2rem 1fr 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

/* Left cluster */
.app-header-left[b-pkz9kbay1a] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Center cluster */
.app-header-center-one[b-pkz9kbay1a] {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right panel */
.app-header-right[b-pkz9kbay1a] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    /* keeps controls readable on plain black */
    padding: 0.25rem 0.5rem;
}

/* Strip is a RIGHT-JUSTIFIED background panel (NOT fill) */
.app-header-right--strip[b-pkz9kbay1a] {
    min-height: 56px; /* adjust to match your artwork height */
    min-width: 420px; /* how wide the strip block is */
    padding-right: 0.75rem;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%; /* key: not fill; height matches panel */
}

.app-header-left[b-pkz9kbay1a] {
    grid-column: 1;
}

.app-header-center[b-pkz9kbay1a] {
    grid-column: 3;
}

.app-header-spacer[b-pkz9kbay1a] {
    grid-column: 4;
}

.app-header-right[b-pkz9kbay1a] {
    grid-column: 5;
}

/* strip/control panel lives here */

/* Logos */
.app-header-logo[b-pkz9kbay1a] {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.app-header-logo--product[b-pkz9kbay1a] {
    height: 44px;
}

.app-header-logo--tenant[b-pkz9kbay1a] {
    height: 44px;
}

/* Hamburger button stays visible on black */
.nav-toggle[b-pkz9kbay1a] {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    border-radius: 6px;
    width: 44px;
    height: 44px;
    cursor: pointer;
}

/* Keep form controls readable */
.app-font-picker select[b-pkz9kbay1a],
.app-auth-btn[b-pkz9kbay1a] {
    color: #111;
}

/* On mobile, center logo can be hidden if needed later */
@media (max-width: 768px) {
    .app-header--admin[b-pkz9kbay1a] {
        grid-template-columns: auto 1fr auto;
    }

    .app-header-right--strip[b-pkz9kbay1a] {
        min-width: 240px;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-ihyu3k6t7a] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-ihyu3k6t7a] {
    flex: 1;
}

.sidebar[b-ihyu3k6t7a] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-ihyu3k6t7a] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-ihyu3k6t7a]  a, .top-row[b-ihyu3k6t7a]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-ihyu3k6t7a]  a:hover, .top-row[b-ihyu3k6t7a]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-ihyu3k6t7a]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-ihyu3k6t7a] {
        justify-content: space-between;
    }

    .top-row[b-ihyu3k6t7a]  a, .top-row[b-ihyu3k6t7a]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-ihyu3k6t7a] {
        flex-direction: row;
    }

    .sidebar[b-ihyu3k6t7a] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-ihyu3k6t7a] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-ihyu3k6t7a]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-ihyu3k6t7a], article[b-ihyu3k6t7a] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-ihyu3k6t7a] {
    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-ihyu3k6t7a] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }


.shell[b-ihyu3k6t7a] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.shell-header[b-ihyu3k6t7a] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.shell-body[b-ihyu3k6t7a] {
    flex: 1;
    display: flex;
    min-height: 0;
    position: relative;
}

.shell-aside[b-ihyu3k6t7a] {
    width: 260px;
    min-height: 0;
}

.shell-main[b-ihyu3k6t7a] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.shell-main--full[b-ihyu3k6t7a] {
    padding: 1rem;
}

.shell-tabs[b-ihyu3k6t7a] {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.shell-content[b-ihyu3k6t7a] {
    padding: 1rem;
    overflow: auto;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-0ytlvgzwur] {
    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-0ytlvgzwur] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-0ytlvgzwur] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-0ytlvgzwur] {
    font-size: 1.1rem;
}

.bi[b-0ytlvgzwur] {
    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-0ytlvgzwur] {
    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-0ytlvgzwur] {
    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-0ytlvgzwur] {
    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-0ytlvgzwur] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-0ytlvgzwur] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-0ytlvgzwur] {
        padding-bottom: 1rem;
    }

    .nav-item[b-0ytlvgzwur]  .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-0ytlvgzwur]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-0ytlvgzwur]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-0ytlvgzwur] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-0ytlvgzwur] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-0ytlvgzwur] {
        display: none;
    }

    .nav-scrollable[b-0ytlvgzwur] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/Public/PublicFooter.razor.rz.scp.css */
/* Phase 9 public-site footer — scoped styles. */

.ph-footer[b-zanmcmzrkj],
.ph-footer *[b-zanmcmzrkj] {
    box-sizing: border-box;
    font-family: 'Sofia Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.ph-footer[b-zanmcmzrkj] {
    background: #102648;   /* navy-deep */
    color: #B3C7DB;
    padding: 4rem 1.5rem 2rem;
}

.ph-footer-inner[b-zanmcmzrkj] {
    max-width: 76rem;
    margin: 0 auto;
}

.ph-footer-grid[b-zanmcmzrkj] {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 900px) {
    .ph-footer-grid[b-zanmcmzrkj] {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 540px) {
    .ph-footer-grid[b-zanmcmzrkj] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Brand block */
.ph-footer-logo[b-zanmcmzrkj] {
    display: block;
    height: 56px;
    width: auto;
    margin-bottom: 1rem;
}
.ph-footer-strapline[b-zanmcmzrkj] {
    color: #88CCEB;
    font-weight: 600;
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    margin: 0 0 1rem;
}
.ph-footer-tagline[b-zanmcmzrkj] {
    color: #B3C7DB;
    font-size: 0.875rem;
    line-height: 1.55;
    margin: 0;
    max-width: 22rem;
}

/* Columns */
.ph-footer-heading[b-zanmcmzrkj] {
    color: #88CCEB;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    margin: 0 0 1rem;
    text-transform: uppercase;
}
.ph-footer-list[b-zanmcmzrkj] {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ph-footer-list li[b-zanmcmzrkj] { margin-bottom: 0.5rem; }
.ph-footer-list a[b-zanmcmzrkj] {
    color: #DDE7F2;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.15s ease;
}
.ph-footer-list a:hover[b-zanmcmzrkj] { color: #FFFFFF; }

.ph-footer-addr[b-zanmcmzrkj] {
    color: #DDE7F2;
    font-size: 0.875rem;
    line-height: 1.65;
    margin: 0;
}

/* Bottom strip */
.ph-footer-rule[b-zanmcmzrkj] {
    border: none;
    border-top: 1px solid #2E4A70;
    margin: 0 0 1.5rem;
}
.ph-footer-bottom[b-zanmcmzrkj] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.ph-footer-copy[b-zanmcmzrkj] {
    color: #B3C7DB;
    font-size: 0.75rem;
    margin: 0;
}
.ph-footer-region[b-zanmcmzrkj] {
    color: #B3C7DB;
    font-size: 0.75rem;
    margin: 0;
}
.ph-footer-region-link[b-zanmcmzrkj] {
    color: #88CCEB;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease;
}
.ph-footer-region-link:hover[b-zanmcmzrkj] { color: #FFFFFF; }
.ph-footer-region-link.active[b-zanmcmzrkj] {
    color: #FFFFFF;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}
/* /Components/Layout/Public/PublicHeader.razor.rz.scp.css */
/* Phase 9 public-site header — scoped styles. Brand tokens match
   CountryHome.razor.css. Sofia Sans loaded globally via App.razor. */

.ph-header[b-ybjthvmaq7],
.ph-header *[b-ybjthvmaq7] {
    box-sizing: border-box;
    font-family: 'Sofia Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Utility bar ─────────────────────────────────── */
.ph-utility[b-ybjthvmaq7] {
    background: #102648;   /* navy-deep */
    color: #88CCEB;
    font-size: 0.8125rem;
    border-bottom: 1px solid rgba(136,204,235,0.10);
}
.ph-utility-inner[b-ybjthvmaq7] {
    max-width: 76rem;
    margin: 0 auto;
    padding: 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.ph-utility-trust[b-ybjthvmaq7] { color: #88CCEB; }

.ph-utility-nav[b-ybjthvmaq7] {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.ph-utility-link[b-ybjthvmaq7],
.ph-utility-signin[b-ybjthvmaq7] {
    color: #88CCEB;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease;
}
.ph-utility-link:hover[b-ybjthvmaq7],
.ph-utility-signin:hover[b-ybjthvmaq7] { color: #FFFFFF; }
.ph-utility-signin[b-ybjthvmaq7] {
    color: #FFFFFF;
    font-weight: 600;
}

/* Country selector dropdown */
.ph-country-pick[b-ybjthvmaq7] {
    position: relative;
}
.ph-country-summary[b-ybjthvmaq7] {
    cursor: pointer;
    list-style: none;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(136,204,235,0.20);
    color: #FFFFFF;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-weight: 500;
    user-select: none;
}
.ph-country-summary[b-ybjthvmaq7]::-webkit-details-marker { display: none; }
.ph-country-summary:hover[b-ybjthvmaq7] {
    background: rgba(255,255,255,0.10);
}
.ph-country-pick[open] .ph-country-summary[b-ybjthvmaq7] {
    background: rgba(255,255,255,0.14);
}
.ph-caret[b-ybjthvmaq7] {
    color: #88CCEB;
    margin-left: 0.25rem;
    font-size: 0.75rem;
}

.ph-country-menu[b-ybjthvmaq7] {
    position: absolute;
    right: 0;
    top: calc(100% + 0.25rem);
    z-index: 50;
    background: #FFFFFF;
    border: 1px solid #E2E8EF;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(16,38,72,0.18);
    list-style: none;
    margin: 0;
    padding: 0.25rem 0;
    min-width: 12rem;
}
.ph-country-menu li a[b-ybjthvmaq7] {
    display: block;
    padding: 0.5rem 0.875rem;
    color: #1B365D;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.1s ease;
}
.ph-country-menu li a:hover[b-ybjthvmaq7] {
    background: #F7F9FB;
    color: #2384C6;
}

/* ── Main bar ────────────────────────────────────── */
.ph-mainbar[b-ybjthvmaq7] {
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8EF;
}
.ph-mainbar-inner[b-ybjthvmaq7] {
    max-width: 76rem;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Brand */
.ph-brand[b-ybjthvmaq7] {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.ph-brand-img[b-ybjthvmaq7] {
    display: block;
    height: 44px;
    width: auto;
    max-width: 100%;
}

/* Nav */
.ph-nav[b-ybjthvmaq7] {
    display: flex;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
}
.ph-nav-link[b-ybjthvmaq7] {
    color: #5A6878;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0;
    transition: color 0.15s ease;
}
.ph-nav-link:hover[b-ybjthvmaq7] { color: #2384C6; }
.ph-nav-link.active[b-ybjthvmaq7] {
    color: #1B365D;
    font-weight: 600;
}

/* Right CTA */
.ph-nav-cta[b-ybjthvmaq7] { display: flex; align-items: center; gap: 0.75rem; }

.ph-btn[b-ybjthvmaq7] {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
    border: 1px solid transparent;
    transition: background 0.15s ease;
}
.ph-btn-primary[b-ybjthvmaq7] { background: #2384C6; color: #FFFFFF; }
.ph-btn-primary:hover[b-ybjthvmaq7] { background: #1c6ca0; }

/* Mobile collapse — links hide, CTA + brand stay */
@media (max-width: 1024px) {
    .ph-nav[b-ybjthvmaq7] { display: none; }
}
@media (max-width: 640px) {
    .ph-utility-trust[b-ybjthvmaq7] { display: none; }
    .ph-mainbar-inner[b-ybjthvmaq7] { padding: 0.875rem 1rem; }
    .ph-brand-img[b-ybjthvmaq7] { height: 36px; }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-s5u1w4jpxu],
.components-reconnect-repeated-attempt-visible[b-s5u1w4jpxu],
.components-reconnect-failed-visible[b-s5u1w4jpxu],
.components-pause-visible[b-s5u1w4jpxu],
.components-resume-failed-visible[b-s5u1w4jpxu],
.components-rejoining-animation[b-s5u1w4jpxu] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-s5u1w4jpxu],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-s5u1w4jpxu],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-s5u1w4jpxu],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-s5u1w4jpxu],
#components-reconnect-modal.components-reconnect-retrying[b-s5u1w4jpxu],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-s5u1w4jpxu],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-s5u1w4jpxu],
#components-reconnect-modal.components-reconnect-failed[b-s5u1w4jpxu],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-s5u1w4jpxu] {
    display: block;
}


#components-reconnect-modal[b-s5u1w4jpxu] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-s5u1w4jpxu 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-s5u1w4jpxu 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-s5u1w4jpxu 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-s5u1w4jpxu]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-s5u1w4jpxu 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-s5u1w4jpxu {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-s5u1w4jpxu {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-s5u1w4jpxu {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-s5u1w4jpxu] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-s5u1w4jpxu] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-s5u1w4jpxu] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-s5u1w4jpxu] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-s5u1w4jpxu] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-s5u1w4jpxu] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-s5u1w4jpxu] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-s5u1w4jpxu 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-s5u1w4jpxu] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-s5u1w4jpxu {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Layout/StudentAssessmentLayout.razor.rz.scp.css */
.student-assessment-layout[b-v4il2itqq5] {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    width: 100vw;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.assessment-header-wrapper[b-v4il2itqq5] {
    flex: 0 0 auto;
}

@media (max-width: 1024px) {
    .assessment-header-wrapper[b-v4il2itqq5] {
        display: none;
    }
}
/* /Components/Navigation/OmniaNavTree.razor.rz.scp.css */
/******************************************/
/** Omnia TreeView styling               **/
/******************************************/

/* Reset/cleanup Syncfusion defaults for this tree */
.omnia-nav-container[b-k2jddg0wps]  .e-list-item.e-active .e-fullrow {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

.omnia-nav-container[b-k2jddg0wps]  .e-list-item .e-text-content:focus,
.omnia-nav-container[b-k2jddg0wps]  .e-list-item .e-text-content:active {
    outline: none !important;
    box-shadow: none !important;
}

/* Hide Syncfusion expand/collapse chevrons */
.omnia-nav-container[b-k2jddg0wps]  .e-icons.e-icon-collapsible,
.omnia-nav-container[b-k2jddg0wps]  .e-icons.e-icon-expandable {
    display: none !important;
}

/*----------------------------------------
  LEVEL 1 – YEAR tiles
-----------------------------------------*/

.omnia-nav-container[b-k2jddg0wps]  #OmniaNavTree > .e-ul > .e-list-item > .e-text-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 42px;
    padding: 0 1rem 0 2.2rem !important; /* space for triangle */
    margin-bottom: 4px;
    background-color: #e0e0e0;
    border-radius: 0;
    border-left: 4px solid transparent;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #333333;
    position: relative !important;
}

    .omnia-nav-container[b-k2jddg0wps]  #OmniaNavTree > .e-ul > .e-list-item > .e-text-content:hover {
        background-color: #d4d4d4;
    }

    /* Triangle on YEAR tiles */
    .omnia-nav-container[b-k2jddg0wps]  #OmniaNavTree > .e-ul > .e-list-item > .e-text-content::before {
        content: "";
        position: absolute;
        left: 0.6rem;
        width: 0;
        height: 0;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-left: 8px solid #777777;
    }

/*----------------------------------------
  LEVEL 2 – headers (YEAR LEVEL, CLASSES)
-----------------------------------------*/

.omnia-nav-container[b-k2jddg0wps]  #OmniaNavTree > .e-ul > .e-list-item > .e-ul > .e-list-item > .e-text-content {
    background: transparent;
    border-radius: 0;
    margin: 6px 0 3px 0;
    padding: 0 0 3px 0.6rem;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #b4241c;
}

/*----------------------------------------
  LEVEL 3 – items under headers
-----------------------------------------*/

.omnia-nav-container[b-k2jddg0wps]  #OmniaNavTree > .e-ul > .e-list-item > .e-ul > .e-list-item > .e-ul > .e-list-item > .e-text-content {
    background: transparent;
    border-radius: 0;
    border: none;
    margin: 0;
    padding: 2px 0 2px 1rem;
    font-size: 0.86rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #333333;
}

    /* Hover */
    .omnia-nav-container[b-k2jddg0wps]  #OmniaNavTree > .e-ul > .e-list-item > .e-ul > .e-list-item > .e-ul > .e-list-item > .e-text-content:hover {
        background-color: #f3f3f3;
    }

/*----------------------------------------
  ACTIVE STATES
-----------------------------------------*/

/* 1. Generic Default: Active text is RED (for Level 2/3) */
.omnia-nav-container[b-k2jddg0wps]  #OmniaNavTree .e-list-item.e-active .e-text-content,
.omnia-nav-container[b-k2jddg0wps]  #OmniaNavTree .e-list-item.e-active .e-list-text {
    color: #b4241c !important;
    background-color: transparent !important;
    font-weight: 600;
}

/* 2. Level 1 Exception: YEAR tiles are WHITE text on RED background */
/* We must target .e-list-text explicitly to override rule #1 above */

/* Case A: The tile itself is active */
.omnia-nav-container[b-k2jddg0wps]  #OmniaNavTree > .e-ul > .e-list-item.e-active > .e-text-content,
.omnia-nav-container[b-k2jddg0wps]  #OmniaNavTree > .e-ul > .e-list-item.e-active > .e-text-content .e-list-text,
/* Case B: A child inside the tile is active (parent selection) */
.omnia-nav-container[b-k2jddg0wps]  #OmniaNavTree > .e-ul > .e-list-item:has(.e-list-item.e-active) > .e-text-content,
.omnia-nav-container[b-k2jddg0wps]  #OmniaNavTree > .e-ul > .e-list-item:has(.e-list-item.e-active) > .e-text-content .e-list-text {
    background-color: #b4241c !important;
    color: #ffffff !important;
}

    /* Ensure the triangle arrow turns white on the red background */
    .omnia-nav-container[b-k2jddg0wps]  #OmniaNavTree > .e-ul > .e-list-item.e-active > .e-text-content::before,
    .omnia-nav-container[b-k2jddg0wps]  #OmniaNavTree > .e-ul > .e-list-item:has(.e-list-item.e-active) > .e-text-content::before {
        border-left-color: #ffffff;
    }
/* /Components/Pages/Calendar.razor.rz.scp.css */
/* Calendar page — three-column layout matching legacy LiturgyHelp */

.calendar-page[b-fbskaj6f7m] {
    width: 100%;
}

/* Top bar */
.calendar-top-bar[b-fbskaj6f7m] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #1a3567;
    color: white;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.calendar-breadcrumbs[b-fbskaj6f7m] {
    display: flex;
    gap: 0.25rem;
    font-size: 0.85rem;
}

.calendar-crumb[b-fbskaj6f7m]::after {
    content: ' › ';
    margin: 0 0.25rem;
}

.calendar-crumb:last-child[b-fbskaj6f7m]::after {
    content: '';
}

.calendar-day-nav[b-fbskaj6f7m] {
    display: flex;
    gap: 0.5rem;
}

.calendar-nav-btn[b-fbskaj6f7m] {
    color: white;
    text-decoration: none;
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 3px;
    font-size: 0.8rem;
    white-space: nowrap;
}

.calendar-nav-btn:hover[b-fbskaj6f7m] {
    background: rgba(255,255,255,0.15);
    color: white;
}

/* Three-column layout. The menu renders inside .calendar-center, not as its
   own grid column. Earlier attempts defined a 4-column grid with a separate
   menu slot — that left .calendar-right assigned to column 3 (220px) instead
   of the wider content slot, clipping H1 hanging indents in the right pane. */
.calendar-layout[b-fbskaj6f7m] {
    display: grid;
    grid-template-columns: 260px minmax(320px, 1fr) minmax(480px, 2fr);
    gap: 0;
    min-height: 80vh;
}

/* Left column */
.calendar-left[b-fbskaj6f7m] {
    padding: 1rem;
    border-right: 1px solid #e0e0e0;
}

.calendar-carousel[b-fbskaj6f7m] {
    margin-bottom: 1rem;
}

.calendar-carousel-img[b-fbskaj6f7m] {
    width: 100%;
    height: auto;
}

.calendar-date-block[b-fbskaj6f7m] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.calendar-icon[b-fbskaj6f7m] {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.calendar-date-text[b-fbskaj6f7m] {
    text-align: center;
    flex: 1;
}

.calendar-weekday[b-fbskaj6f7m] {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendar-day[b-fbskaj6f7m] {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.calendar-month[b-fbskaj6f7m] {
    font-size: 1.2rem;
    text-transform: uppercase;
}

.calendar-year[b-fbskaj6f7m] {
    font-size: 1.2rem;
}

.calendar-events-list[b-fbskaj6f7m] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.calendar-event-btn[b-fbskaj6f7m] {
    display: block;
    padding: 0.4rem 0.75rem;
    background: #f0c040;
    color: #333;
    text-decoration: none;
    text-align: center;
    font-size: 0.85rem;
    border-radius: 3px;
}

.calendar-event-btn.active[b-fbskaj6f7m] {
    background: #d4a020;
    font-weight: bold;
}

.calendar-event-btn:hover[b-fbskaj6f7m] {
    background: #e0b030;
}

/* Ordo */
.calendar-ordo[b-fbskaj6f7m] {
    margin-top: 1rem;
    font-size: 0.85rem;
}

.calendar-ordo-title[b-fbskaj6f7m] {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.calendar-ordo-text[b-fbskaj6f7m] {
    margin: 0.25rem 0;
    line-height: 1.4;
}

/* Center column: summary + menu */
.calendar-center[b-fbskaj6f7m] {
    padding: 1rem;
    border-right: 1px solid #e0e0e0;
}

.calendar-event-title[b-fbskaj6f7m] {
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Summary component */
.calendar-summary[b-fbskaj6f7m] {
    margin-bottom: 1.5rem;
}

.calendar-summary-section[b-fbskaj6f7m] {
    margin-bottom: 0.75rem;
}

.calendar-summary-header[b-fbskaj6f7m] {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.calendar-summary-item[b-fbskaj6f7m] {
    margin: 0.1rem 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.calendar-summary-item.lect-ref[b-fbskaj6f7m] {
    color: #c00;
    font-size: 0.8rem;
}

/* Menu component */
.calendar-menu[b-fbskaj6f7m] {
    margin-top: 1rem;
}

.calendar-menu-group[b-fbskaj6f7m] {
    margin-bottom: 0.125rem;
}

.calendar-menu-heading[b-fbskaj6f7m] {
    padding: 0.4rem 0.5rem;
    background: #2d6b2d;
    color: white;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: bold;
}

.calendar-menu-heading.active[b-fbskaj6f7m] {
    background: #f0c040;
    color: #333;
}

.calendar-menu-heading:hover[b-fbskaj6f7m] {
    opacity: 0.9;
}

.calendar-menu-children[b-fbskaj6f7m] {
    display: flex;
    flex-direction: column;
}

.calendar-menu-child[b-fbskaj6f7m] {
    display: block;
    padding: 0.3rem 0.5rem 0.3rem 1rem;
    color: #333;
    text-decoration: none;
    font-size: 0.8rem;
    background: #e8e8e8;
    border-bottom: 1px solid #d0d0d0;
}

.calendar-menu-child.sub[b-fbskaj6f7m] {
    padding-left: 1.5rem;
}

.calendar-menu-child:hover[b-fbskaj6f7m] {
    background: #d0d0d0;
}

.calendar-menu-child.active[b-fbskaj6f7m] {
    background: #f0c040;
    font-weight: bold;
}

.calendar-menu-subheading[b-fbskaj6f7m] {
    padding: 0.25rem 0.5rem 0.25rem 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    background: #f0f0f0;
    color: #555;
}

/* Right column: content */
.calendar-right[b-fbskaj6f7m] {
    padding: 1rem;
    overflow-y: auto;
}

.calendar-content-area[b-fbskaj6f7m] {
    font-size: 0.95rem;
    line-height: 1.6;
}

.calendar-empty[b-fbskaj6f7m] {
    color: #888;
    font-style: italic;
}

/* Liturgical color classes (from legacy) */
.bg-color-green[b-fbskaj6f7m] { background-color: #2d6b2d; }
.bg-color-white[b-fbskaj6f7m] { background-color: #f5f5dc; }
.bg-color-red[b-fbskaj6f7m] { background-color: #c00; }
.bg-color-violet[b-fbskaj6f7m] { background-color: #6b3fa0; }
.bg-color-rose[b-fbskaj6f7m] { background-color: #c77eb5; }
.bg-color-gold[b-fbskaj6f7m] { background-color: #c8a200; }
.bg-color-black[b-fbskaj6f7m] { background-color: #333; }

.txt-color-white[b-fbskaj6f7m] { color: white; }
.txt-color-black[b-fbskaj6f7m] { color: #333; }
/* /Components/Pages/LoginNew.razor.rz.scp.css */
.login-new[b-qryaimzhfh] {
    min-height: 100vh;
    background: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-new__canvas[b-qryaimzhfh] {
    width: min(1200px, 100%);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.login-new__top[b-qryaimzhfh] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.login-new__brand img[b-qryaimzhfh] {
    width: min(420px, 100%);
    height: auto;
    display: block;
}

.login-new__panel[b-qryaimzhfh] {
    width: 320px;
    background: #7fd7e2;
    color: #0b1a1c;
    padding: 16px 18px 18px;
    border-radius: 4px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.login-new__panel-title[b-qryaimzhfh] {
    font-weight: 700;
    letter-spacing: 0.03em;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.login-new__error[b-qryaimzhfh] {
    background: #c03a2b;
    color: #ffffff;
    font-size: 0.85rem;
    padding: 6px 8px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.login-new__label[b-qryaimzhfh] {
    font-size: 0.8rem;
    font-weight: 600;
    display: block;
    margin: 8px 0 4px;
}

.login-new__input[b-qryaimzhfh] {
    width: 100%;
    height: 30px;
    border: 1px solid #5598a0;
    border-radius: 2px;
    padding: 4px 8px;
    font-size: 0.9rem;
    background: #ffffff;
    color: #14282b;
}

.login-new__row[b-qryaimzhfh] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
}

.login-new__remember[b-qryaimzhfh] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
}

.login-new__button[b-qryaimzhfh] {
    background: #1e8290;
    color: #ffffff;
    border: 1px solid #0f5f69;
    border-radius: 3px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
}

.login-new__button:hover[b-qryaimzhfh] {
    background: #156a75;
}

.login-new__strip[b-qryaimzhfh] {
    height: 120px;
    background-image: url('/branding/strips/y7_header-01.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.login-new__footer[b-qryaimzhfh] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.login-new__footer-left img[b-qryaimzhfh] {
    height: 46px;
    width: auto;
    display: block;
}

.login-new__footer-right[b-qryaimzhfh] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

.login-new__ask-icon[b-qryaimzhfh] {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 2px solid #ffffff;
    position: relative;
}

.login-new__ask-icon[b-qryaimzhfh]::after {
    content: '';
    position: absolute;
    inset: 7px;
    border-radius: 999px;
    border: 2px solid #ffffff;
}

.login-new__divider[b-qryaimzhfh] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #3a6a70;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.login-new__divider[b-qryaimzhfh]::before,
.login-new__divider[b-qryaimzhfh]::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #5598a0;
}

.login-new__sso-button[b-qryaimzhfh] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 8px 12px;
    background: #ffffff;
    color: #333333;
    border: 1px solid #8c8c8c;
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s;
}

.login-new__sso-button:hover[b-qryaimzhfh] {
    background: #f0f0f0;
}

.login-new__sso-icon[b-qryaimzhfh] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .login-new__top[b-qryaimzhfh] {
        flex-direction: column;
        align-items: flex-start;
    }

    .login-new__panel[b-qryaimzhfh] {
        width: min(360px, 100%);
    }

    .login-new__brand img[b-qryaimzhfh] {
        width: min(320px, 100%);
    }
}

@media (max-width: 600px) {
    .login-new[b-qryaimzhfh] {
        padding: 16px;
    }

    .login-new__strip[b-qryaimzhfh] {
        height: 90px;
    }

    .login-new__footer[b-qryaimzhfh] {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* /Components/Pages/Public/Contact.razor.rz.scp.css */
/* Page-specific styles only. Form scaffolding (.pcf-form, .pcf-input,
   .pcf-thanks etc.) lives in wwwroot/css/public-pages.css so it works
   across both Contact and FreeTrial pages without duplication. */
/* /Components/Pages/Public/CountryHome.razor.rz.scp.css */
/* Page-level scaffolding only. Card and section-header styles moved to
   the molecule components in Components/Public/Molecules/. */

/* Section scaffolding */
.ph-section[b-bva954k4vv] {
    padding: 5rem 1.5rem;
}
.ph-section-light[b-bva954k4vv] { background: #FFFFFF; }
.ph-section-off[b-bva954k4vv]   { background: #F7F9FB; }
.ph-section-navy[b-bva954k4vv]  { background: #1B365D; color: #FFFFFF; }

.ph-narrow[b-bva954k4vv] { max-width: 56rem; margin: 0 auto; }
.ph-wide[b-bva954k4vv]   { max-width: 76rem; margin: 0 auto; }
.ph-center[b-bva954k4vv] { text-align: center; }

/* Body paragraphs in the intro section */
.ph-body[b-bva954k4vv] {
    font-family: 'Sofia Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.125rem;
    line-height: 1.65;
    color: #5A6878;
    margin: 0 0 1rem;
}

/* Grids */
.ph-grid[b-bva954k4vv] { display: grid; gap: 1.5rem; margin-top: 2rem; }
.ph-grid-2[b-bva954k4vv] { grid-template-columns: repeat(2, 1fr); }
.ph-grid-3[b-bva954k4vv] { grid-template-columns: repeat(3, 1fr); }
.ph-grid-4[b-bva954k4vv] { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
    .ph-grid-3[b-bva954k4vv], .ph-grid-4[b-bva954k4vv] { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .ph-grid-2[b-bva954k4vv], .ph-grid-3[b-bva954k4vv], .ph-grid-4[b-bva954k4vv] { grid-template-columns: 1fr; }
}

/* FAQ list reset */
.ph-faq[b-bva954k4vv] {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

/* Missing-content placeholder */
.ph-missing[b-bva954k4vv] {
    font-family: 'Sofia Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    max-width: 32rem;
    margin: 6rem auto;
    padding: 2rem;
    text-align: center;
    color: #5A6878;
}
.ph-missing h1[b-bva954k4vv] {
    color: #1B365D;
    font-size: 2rem;
    margin-bottom: 1rem;
}
.ph-missing a[b-bva954k4vv] {
    color: #2384C6;
}
/* /Components/Pages/Public/Features.razor.rz.scp.css */
/* Page-specific styles only. Shared scaffolding (.px-hero, .ph-section,
   .ph-grid, .ph-missing) lives in wwwroot/css/public-pages.css. */
/* /Components/Pages/Public/Pricing.razor.rz.scp.css */
/* Page-specific styles only. Shared scaffolding (.px-hero, .ph-section,
   .ph-grid, .ph-missing) lives in wwwroot/css/public-pages.css. */

.px-foot[b-5ar8sugxf3] {
    color: #5A6878;
    font-size: 0.9375rem;
    text-align: center;
    margin: 2.5rem 0 0;
}
.px-foot a[b-5ar8sugxf3] { color: #2384C6; }

/* Diocesan placeholder block */
.px-quote[b-5ar8sugxf3] {
    margin-top: 2rem;
    text-align: center;
}
.px-btn[b-5ar8sugxf3] {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
    font-family: 'Sofia Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.px-btn-primary[b-5ar8sugxf3] {
    background: #2384C6;
    color: #FFFFFF;
}
.px-btn-primary:hover[b-5ar8sugxf3] { background: #1c6ca0; }
/* /Components/Pages/Scripture.razor.rz.scp.css */
.scripture-layout[b-a01r3ef02v] {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    padding: 1rem;
}

@media (max-width: 768px) {
    .scripture-layout[b-a01r3ef02v] {
        grid-template-columns: 1fr;
    }
}

/* ── Sidebar ── */

.scripture-sidebar[b-a01r3ef02v] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.scripture-carousel-img[b-a01r3ef02v] {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.scripture-tabs[b-a01r3ef02v] {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.scripture-tab[b-a01r3ef02v] {
    padding: 0.375rem 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px 4px 0 0;
    text-decoration: none;
    color: #333;
    font-size: 0.875rem;
}

.scripture-tab.active[b-a01r3ef02v] {
    background: #18325c;
    color: white;
    border-color: #18325c;
}

.scripture-menu[b-a01r3ef02v] {
    max-height: 60vh;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 0.5rem;
}

.scripture-menu-item > a[b-a01r3ef02v] {
    display: block;
    padding: 0.375rem 0.5rem;
    text-decoration: none;
    color: #333;
    border-radius: 3px;
    font-size: 0.875rem;
}

.scripture-menu-item > a:hover[b-a01r3ef02v] {
    background: #f0f0f0;
}

.scripture-outline-header[b-a01r3ef02v] {
    display: block;
    padding: 0.5rem 0.625rem;
    color: white;
    background: #18325c;
    border-radius: 3px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.scripture-menu-children[b-a01r3ef02v] {
    padding-left: 1rem;
}

.scripture-menu-child[b-a01r3ef02v] {
    display: block;
    padding: 0.25rem 0.5rem;
    text-decoration: none;
    color: #555;
    font-size: 0.8125rem;
}

.scripture-menu-child:hover[b-a01r3ef02v] {
    background: #f0f0f0;
}

.scripture-menu-child.active[b-a01r3ef02v] {
    background: #18325c;
    color: white;
    border-radius: 3px;
}

/* ── Content area ── */

.scripture-content[b-a01r3ef02v] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.scripture-header[b-a01r3ef02v] {
    padding: 1rem 1.5rem;
    border-radius: 4px;
}

.scripture-header h1[b-a01r3ef02v] {
    margin: 0.25rem 0 0;
    font-size: 1.5rem;
}

.scripture-breadcrumbs span[b-a01r3ef02v]::after {
    content: " / ";
    opacity: 0.6;
}

.scripture-breadcrumbs span:last-child[b-a01r3ef02v]::after {
    content: "";
}

.scripture-nav-bar[b-a01r3ef02v] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.scripture-nav-btn[b-a01r3ef02v] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 0.875rem;
}

.scripture-nav-btn:hover[b-a01r3ef02v] {
    background: #f0f0f0;
}

.scripture-text[b-a01r3ef02v] {
    line-height: 1.8;
    font-size: 1rem;
}

.scripture-empty[b-a01r3ef02v] {
    color: #888;
    font-style: italic;
    padding: 2rem 0;
}

.scripture-export[b-a01r3ef02v] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.scripture-verse-toggle[b-a01r3ef02v] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: #555;
    cursor: pointer;
    user-select: none;
}
/* /Components/Public/Molecules/PublicCtaStrip.razor.rz.scp.css */
.pcs[b-0sp0h6fim3],
.pcs *[b-0sp0h6fim3] {
    box-sizing: border-box;
    font-family: 'Sofia Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.pcs[b-0sp0h6fim3] {
    background: linear-gradient(135deg, #2384C6 0%, #1B365D 100%);
    color: #FFFFFF;
    padding: 5rem 1.5rem;
    text-align: center;
}
.pcs-inner[b-0sp0h6fim3] { max-width: 56rem; margin: 0 auto; }
.pcs-headline[b-0sp0h6fim3] {
    color: #FFFFFF;
    font-weight: 700;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
}
.pcs-sub[b-0sp0h6fim3] {
    color: #FFFFFF;
    opacity: 0.92;
    font-size: 1.0625rem;
    line-height: 1.55;
    max-width: 36rem;
    margin: 0 auto 1.5rem;
}
.pcs-cta-row[b-0sp0h6fim3] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}
.pcs-btn[b-0sp0h6fim3] {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
    border: 1px solid transparent;
    transition: background 0.15s ease;
}
.pcs-btn-navy[b-0sp0h6fim3] { background: #1B365D; color: #FFFFFF; }
.pcs-btn-navy:hover[b-0sp0h6fim3] { background: #102648; }
.pcs-btn-outline[b-0sp0h6fim3] { background: transparent; color: #FFFFFF; border-color: #FFFFFF; }
.pcs-btn-outline:hover[b-0sp0h6fim3] { background: rgba(255,255,255,0.10); }
/* /Components/Public/Molecules/PublicFaqItem.razor.rz.scp.css */
.pfq-item[b-4n8urr9994],
.pfq-item *[b-4n8urr9994] {
    box-sizing: border-box;
    font-family: 'Sofia Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.pfq-item[b-4n8urr9994] {
    list-style: none;
    border-top: 1px solid #E2E8EF;
}
.pfq-item:last-child[b-4n8urr9994] { border-bottom: 1px solid #E2E8EF; }
.pfq-item details[b-4n8urr9994] {
    padding: 1.25rem 0;
}
.pfq-item summary[b-4n8urr9994] {
    font-weight: 600;
    color: #1B365D;
    font-size: 1.0625rem;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 2rem;
}
.pfq-item summary[b-4n8urr9994]::-webkit-details-marker { display: none; }
.pfq-item summary[b-4n8urr9994]::after {
    content: '+';
    color: #778291;
    font-size: 1.5rem;
    font-weight: 300;
    position: absolute;
    right: 0;
    top: -0.25rem;
    transition: transform 0.2s ease;
}
.pfq-item details[open] summary[b-4n8urr9994]::after { content: '−'; }
.pfq-item details p[b-4n8urr9994] {
    color: #5A6878;
    margin: 1rem 0 0;
    line-height: 1.65;
    white-space: pre-line;
}
/* /Components/Public/Molecules/PublicFeatureCard.razor.rz.scp.css */
.pfc[b-podilrr8gx],
.pfc *[b-podilrr8gx] {
    box-sizing: border-box;
    font-family: 'Sofia Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.pfc[b-podilrr8gx] {
    background: #F7F9FB;
    border: 1px solid #E2E8EF;
    border-radius: 6px;
    padding: 1.5rem;
}
.pfc-bar[b-podilrr8gx] {
    display: block;
    width: 32px;
    height: 3px;
    background: #2384C6;
    border-radius: 2px;
    margin-bottom: 1rem;
}
.pfc-title[b-podilrr8gx] {
    color: #1B365D;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}
.pfc-body[b-podilrr8gx] {
    color: #5A6878;
    font-size: 0.875rem;
    line-height: 1.55;
    margin: 0;
}
.pfc-disclaimer[b-podilrr8gx] {
    color: #b95e00;
    font-size: 0.8125rem;
    font-style: italic;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed #E2E8EF;
}
/* /Components/Public/Molecules/PublicHero.razor.rz.scp.css */
.ph-hero[b-13l3voztsg],
.ph-hero *[b-13l3voztsg] {
    box-sizing: border-box;
    font-family: 'Sofia Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.ph-hero[b-13l3voztsg] {
    background: linear-gradient(135deg, #1B365D 0%, #102648 100%);
    color: #FFFFFF;
    padding: 6rem 1.5rem;
    text-align: center;
}
.ph-hero-inner[b-13l3voztsg] { max-width: 56rem; margin: 0 auto; }

.ph-hero-eyebrow[b-13l3voztsg] {
    color: #88CCEB;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 1rem;
}

.ph-hero-h1[b-13l3voztsg] {
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 1.5rem;
    color: #FFFFFF;
}

.ph-hero-strapline[b-13l3voztsg] {
    font-weight: 300;
    font-size: 1.25rem;
    color: #88CCEB;
    margin: 0 auto 1.5rem;
    max-width: 38rem;
}

.ph-hero-country-disclaimer[b-13l3voztsg] {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(136,204,235,0.4);
    color: #88CCEB;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
    font-size: 0.875rem;
    margin: 0 0 1.5rem;
}

.ph-hero-trustline[b-13l3voztsg] {
    color: #88CCEB;
    opacity: 0.85;
    font-size: 0.875rem;
    margin: 1rem 0 0;
}

.ph-hero-cta-row[b-13l3voztsg] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
}

.ph-hero-btn[b-13l3voztsg] {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: opacity 0.15s ease, background 0.15s ease;
    border: 1px solid transparent;
}
.ph-hero-btn-primary[b-13l3voztsg] { background: #2384C6; color: #FFFFFF; }
.ph-hero-btn-primary:hover[b-13l3voztsg] { background: #1c6ca0; }
.ph-hero-btn-secondary[b-13l3voztsg] { background: transparent; color: #FFFFFF; border-color: #88CCEB; }
.ph-hero-btn-secondary:hover[b-13l3voztsg] { background: rgba(136,204,235,0.10); }

.ph-hero-rotation-dots[b-13l3voztsg] {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}
.ph-hero-rotation-dots li[b-13l3voztsg] {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.35);
}
.ph-hero-rotation-dots li.active[b-13l3voztsg] {
    width: 10px;
    height: 10px;
    background: #88CCEB;
}
/* /Components/Public/Molecules/PublicPricingTier.razor.rz.scp.css */
.ppt[b-4qwgsg9yut],
.ppt *[b-4qwgsg9yut] {
    box-sizing: border-box;
    font-family: 'Sofia Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.ppt[b-4qwgsg9yut] {
    background: #F7F9FB;
    border: 1px solid #E2E8EF;
    border-radius: 6px;
    padding: 2rem;
}
.ppt-highlighted[b-4qwgsg9yut] {
    border: 2px solid #2384C6;
    box-shadow: 0 8px 24px rgba(35,132,198,0.12);
    transform: translateY(-4px);
}
.ppt-eyebrow[b-4qwgsg9yut] {
    color: #2384C6;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    margin: 0 0 0.5rem;
}
.ppt-price[b-4qwgsg9yut] {
    margin: 0.5rem 0 1rem;
    color: #1B365D;
}
.ppt-price-num[b-4qwgsg9yut] {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.ppt-price-period[b-4qwgsg9yut] {
    color: #5A6878;
    font-size: 1rem;
    font-weight: 500;
    margin-left: 0.5rem;
}
.ppt-sub[b-4qwgsg9yut] {
    color: #5A6878;
    font-size: 0.9375rem;
    margin: 0 0 1rem;
}
.ppt-checklist[b-4qwgsg9yut] {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    border-top: 1px solid #E2E8EF;
    padding-top: 1rem;
}
.ppt-checklist li[b-4qwgsg9yut] {
    padding: 0.375rem 0 0.375rem 1.5rem;
    position: relative;
    color: #181E28;
    font-size: 0.9375rem;
}
.ppt-checklist li[b-4qwgsg9yut]::before {
    content: '✓';
    color: #2384C6;
    font-weight: 700;
    position: absolute;
    left: 0;
}
.ppt-cta[b-4qwgsg9yut] {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #2384C6;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 4px;
    transition: background 0.15s ease;
}
.ppt-cta:hover[b-4qwgsg9yut] { background: #1c6ca0; }
/* /Components/Public/Molecules/PublicRoleCard.razor.rz.scp.css */
.prc[b-qmfums3qoy],
.prc *[b-qmfums3qoy] {
    box-sizing: border-box;
    font-family: 'Sofia Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.prc[b-qmfums3qoy] {
    background: #FFFFFF;
    border: 1px solid #E2E8EF;
    border-radius: 8px;
    padding: 1.75rem;
}
.prc-title[b-qmfums3qoy] {
    color: #1B365D;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1rem;
}
.prc-bullets[b-qmfums3qoy] {
    list-style: none;
    padding: 0;
    margin: 0;
}
.prc-bullets li[b-qmfums3qoy] {
    color: #5A6878;
    padding: 0.25rem 0 0.25rem 1.25rem;
    position: relative;
}
.prc-bullets li[b-qmfums3qoy]::before {
    content: '·';
    color: #2384C6;
    font-weight: 700;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}
/* /Components/Public/Molecules/PublicSectionHeader.razor.rz.scp.css */
.psh[b-0fy14uz51n],
.psh *[b-0fy14uz51n] {
    box-sizing: border-box;
    font-family: 'Sofia Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.psh[b-0fy14uz51n] { margin-bottom: 2rem; }
.psh-center[b-0fy14uz51n] { text-align: center; }

.psh-eyebrow[b-0fy14uz51n] {
    color: #2384C6;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
}
.psh-eyebrow-light[b-0fy14uz51n] { color: #88CCEB; }

.psh-h2[b-0fy14uz51n] {
    font-weight: 700;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #1B365D;
    margin: 0 0 1rem;
}
.psh-h2-light[b-0fy14uz51n] { color: #FFFFFF; }

.psh-sub[b-0fy14uz51n] {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #5A6878;
    max-width: 36rem;
    margin: 0 auto;
}
/* /Components/Public/Molecules/PublicTestimonialCard.razor.rz.scp.css */
.ptc[b-72221vjmva],
.ptc *[b-72221vjmva] {
    box-sizing: border-box;
    font-family: 'Sofia Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.ptc[b-72221vjmva] {
    background: #102648;
    border: 1px solid #2E4A70;
    border-radius: 6px;
    padding: 1.75rem;
    margin: 0;
    color: #FFFFFF;
}
.ptc-mark[b-72221vjmva] {
    color: #88CCEB;
    font-size: 3rem;
    font-weight: 700;
    line-height: 0.5;
    display: block;
    margin-bottom: 1rem;
}
.ptc-text[b-72221vjmva] {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1rem;
}
.ptc-attrib[b-72221vjmva] {
    color: #88CCEB;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}
/* /Components/Shared/Admin/FlowDiagramPanel.razor.rz.scp.css */
.cmr-admin-diagram-panel[b-ptbq14krx6] {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cmr-admin-diagram-header[b-ptbq14krx6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
    gap: 8px;
    flex-shrink: 0;
}

.cmr-admin-panel-title[b-ptbq14krx6] {
    font-weight: 600;
    font-size: 0.875rem;
    color: #1a1a1a;
}

.cmr-admin-diagram-subtitle[b-ptbq14krx6] {
    font-size: 0.75rem;
    color: #666;
    margin-left: 8px;
}

.cmr-admin-diagram-controls[b-ptbq14krx6] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cmr-admin-diagram-body[b-ptbq14krx6] {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.cmr-admin-diagram-toolbar[b-ptbq14krx6] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-bottom: 1px solid #e0e0e0;
    background: #fafafa;
    flex-shrink: 0;
}

.pfe-toolbar-btn[b-ptbq14krx6] {
    padding: 2px 8px;
    font-size: 0.75rem;
    background: #f0f0f0;
    border: 1px solid #d0d0d0;
    border-radius: 0;
    color: #555;
    cursor: pointer;
    transition: background 0.15s;
    min-height: auto;
    line-height: 1.5;
}

.pfe-toolbar-btn:hover[b-ptbq14krx6] {
    background: #e0e0e0;
}

.pfe-toolbar-btn-active[b-ptbq14krx6] {
    background: #1976D2;
    border-color: #1565C0;
    color: #fff;
}

.pfe-toolbar-btn-active:hover[b-ptbq14krx6] {
    background: #1565C0;
}

.cmr-admin-toolbar-sep[b-ptbq14krx6] {
    border-left: 1px solid #d0d0d0;
    height: 20px;
    margin: 0 4px;
}

.cmr-admin-diagram-container[b-ptbq14krx6] {
    flex-grow: 1;
    position: relative;
    min-height: 400px;
}

.cmr-admin-diagram-empty[b-ptbq14krx6] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    color: #666;
    min-height: 400px;
    text-align: center;
}

.cmr-admin-diagram-footer[b-ptbq14krx6] {
    padding: 4px 12px;
    font-size: 0.75rem;
    color: #666;
    border-top: 1px solid #e0e0e0;
    flex-shrink: 0;
}

/* Syncfusion Diagram overrides */
[b-ptbq14krx6] .e-diagram {
    border: none !important;
}

[b-ptbq14krx6] .e-diagram-content {
    background: #fafafa;
}

[b-ptbq14krx6] .e-diagram .e-node.e-item-selected rect {
    stroke: #0d6efd !important;
    stroke-width: 3px !important;
}

/* Ensure diagram fills container */
[b-ptbq14krx6] .e-diagram {
    width: 100% !important;
    height: 100% !important;
}
/* /Components/Shared/Admin/InteractionDetailHeader.razor.rz.scp.css */
.cmr-admin-detail-header[b-0cuakct4gv] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 0.75rem;
}

.cmr-admin-detail-code[b-0cuakct4gv] {
    font-weight: 600;
    font-size: 0.9375rem;
    color: #1a1a1a;
}

.cmr-admin-detail-refid[b-0cuakct4gv] {
    font-size: 0.75rem;
    color: #666;
}

.cmr-admin-detail-type[b-0cuakct4gv] {
    text-align: end;
}

.cmr-admin-detail-type-label[b-0cuakct4gv] {
    font-size: 0.75rem;
    color: #666;
}

.cmr-admin-detail-type-value[b-0cuakct4gv] {
    font-weight: 600;
    font-size: 0.9375rem;
    color: #1a1a1a;
}
/* /Components/Shared/Admin/InteractionDetailPanel.razor.rz.scp.css */
.cmr-admin-panel[b-rnut71un8s] {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cmr-admin-panel-header[b-rnut71un8s] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-bottom: 1px solid #e0e0e0;
    flex-shrink: 0;
}

.cmr-admin-panel-title[b-rnut71un8s] {
    font-weight: 600;
    font-size: 0.875rem;
    color: #1a1a1a;
}

.cmr-admin-panel-body[b-rnut71un8s] {
    padding: 12px;
    overflow: auto;
    flex-grow: 1;
}

.cmr-admin-empty[b-rnut71un8s] {
    color: #666;
    padding: 16px 0;
}
/* /Components/Shared/Admin/InteractionMetadataGrid.razor.rz.scp.css */
.cmr-admin-metadata-grid[b-wwmzebv7e6] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e0e0e0;
}

.cmr-admin-metadata-label[b-wwmzebv7e6] {
    font-size: 0.75rem;
    color: #666;
}

.cmr-admin-metadata-value[b-wwmzebv7e6] {
    font-weight: 600;
    font-size: 0.875rem;
    color: #1a1a1a;
}
/* /Components/Shared/MermaidDiagram.razor.rz.scp.css */
.mermaid-container[b-ekmx3fex0i] {
    overflow: auto;
    padding: 0.75rem;
    background: var(--bs-body-bg, #ffffff);
}

.mermaid-container svg[b-ekmx3fex0i] {
    max-width: 100%;
    height: auto;
}

/* Highlight the selected node (set via JS). */
.mermaid-container svg g.node.cmr-selected-node rect[b-ekmx3fex0i],
.mermaid-container svg g.node.cmr-selected-node polygon[b-ekmx3fex0i],
.mermaid-container svg g.node.cmr-selected-node ellipse[b-ekmx3fex0i],
.mermaid-container svg g.node.cmr-selected-node path[b-ekmx3fex0i] {
    stroke-width: 4px !important;
    stroke: var(--bs-primary, #0d6efd) !important;
}

/* Ensure subgraph labels are visible */
.mermaid-container svg .cluster-label[b-ekmx3fex0i] {
    font-weight: 600;
}

/* Style subgraph backgrounds */
.mermaid-container svg .cluster rect[b-ekmx3fex0i] {
    fill: #f8f9fa !important;
    stroke: #dee2e6 !important;
}

/* Legacy class name support */
.cmr-mermaid-wrap[b-ekmx3fex0i] {
    overflow: auto;
    padding: 0.75rem;
    border: 1px solid var(--bs-border-color, #dee2e6);
    border-radius: 0.5rem;
    background: var(--bs-body-bg, #ffffff);
}

.cmr-mermaid-wrap svg[b-ekmx3fex0i] {
    max-width: 100%;
    height: auto;
}

.cmr-mermaid-wrap svg g.node.cmr-selected-node rect[b-ekmx3fex0i],
.cmr-mermaid-wrap svg g.node.cmr-selected-node polygon[b-ekmx3fex0i],
.cmr-mermaid-wrap svg g.node.cmr-selected-node ellipse[b-ekmx3fex0i],
.cmr-mermaid-wrap svg g.node.cmr-selected-node path[b-ekmx3fex0i] {
    stroke-width: 4px !important;
    stroke: var(--bs-primary, #0d6efd) !important;
}
/* /Components/Shell/ShellBreadcrumbs.razor.rz.scp.css */
.shell-breadcrumbs[b-m54011v8g9] {
    font-size: 0.875rem;
    opacity: 0.85;
}

.shell-breadcrumbs-list[b-m54011v8g9] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.shell-breadcrumbs-item[b-m54011v8g9]::after {
    content: "/";
    margin: 0 0.25rem;
    opacity: 0.6;
}

.shell-breadcrumbs-item:last-child[b-m54011v8g9]::after {
    content: "";
    margin: 0;
}

.shell-breadcrumbs[b-m54011v8g9]  a {
    text-decoration: none;
}

    .shell-breadcrumbs[b-m54011v8g9]  a:hover {
        text-decoration: underline;
    }
/* /Components/Shell/ShellContentFrame.razor.rz.scp.css */
.shell-frame[b-m8c326ws1y] {
    --tenant-primary: #0d6efd;
    --tenant-accent: #6610f2;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

/* Thin top bar (like your screenshot’s grey bar) */
.shell-topbar[b-m8c326ws1y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0.75rem;
    background: #e9e9e9;
    border-bottom: 1px solid rgba(0,0,0,0.12);
}

.shell-topbar-left[b-m8c326ws1y] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.shell-topbar-tab[b-m8c326ws1y] {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 0.2rem;
    text-decoration: none;
    background: #111;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.shell-topbar[b-m8c326ws1y]  a.active {
    outline: 2px solid var(--tenant-primary);
}

.shell-page-header[b-m8c326ws1y] {
    padding: 0.75rem 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.10);
    background: #fff;
}

.shell-page-header-row[b-m8c326ws1y] {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.shell-page-title[b-m8c326ws1y] {
    margin: 0;
    font-size: 1.4rem;
}

.shell-breadcrumbs[b-m8c326ws1y] {
    font-size: 0.85rem;
    opacity: 0.85;
}

.shell-breadcrumbs-list[b-m8c326ws1y] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.shell-breadcrumbs-item[b-m8c326ws1y]::after {
    content: "/";
    margin: 0 0.25rem;
    opacity: 0.6;
}

.shell-breadcrumbs-item:last-child[b-m8c326ws1y]::after {
    content: "";
    margin: 0;
}

.shell-section-tabs[b-m8c326ws1y] {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.10);
    overflow: auto;
    background: #fff;
}

.shell-section-tab[b-m8c326ws1y] {
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    white-space: nowrap;
}

.shell-section-tabs[b-m8c326ws1y]  a.active {
    border-bottom: 2px solid var(--tenant-primary);
    font-weight: 600;
}

.shell-frame-body[b-m8c326ws1y] {
    flex: 1;
    min-height: 0;
    overflow: auto;
    padding: 1rem;
    background: #fff;
}
/* /Components/Shell/ShellPageHeader.razor.rz.scp.css */
.shell-page-header[b-dbz4zh2mlc] {
    padding: 0.75rem 1rem 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.shell-page-header-row[b-dbz4zh2mlc] {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.25rem;
}

.shell-page-title[b-dbz4zh2mlc] {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.2;
}

.shell-page-actions[b-dbz4zh2mlc] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
/* /Components/Shell/ShellSectionTabs.razor.rz.scp.css */
.shell-section-tabs[b-c8zmb55599] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    overflow: auto;
}

.shell-section-tab[b-c8zmb55599] {
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    white-space: nowrap;
}

.shell-section-tabs[b-c8zmb55599]  a.active {
    font-weight: 600;
    border-bottom: 2px solid currentColor;
    border-radius: 0;
}
/* /Components/Shell/ShellTopBar.razor.rz.scp.css */
.shell-topbar[b-mizkgt9g4r] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.shell-topbar-tabs[b-mizkgt9g4r] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

    .shell-topbar-tabs[b-mizkgt9g4r]  a {
        text-decoration: none;
        padding: 0.25rem 0.5rem;
        border-radius: 0.25rem;
    }

        .shell-topbar-tabs[b-mizkgt9g4r]  a.active {
            font-weight: 600;
            text-decoration: underline;
        }
