/* /Components/Layout/Drawer.razor.rz.scp.css */
.drawer-container[b-d70hksr58n] {
    height: 100%;
}

.navigation-drawer-shading[b-d70hksr58n] {
    height: 100%;
    position: absolute;
    transition: ease 300ms;
    transition-property: opacity, visibility;
    visibility: visible;
    width: 100%;
    z-index: 99;
    background-color: var(--dxds-color-surface-backdrop-default-rest);
}

.navigation-drawer.mobile.panel-closed .navigation-drawer-shading[b-d70hksr58n] {
    opacity: 0;
    visibility: hidden;
}

[b-d70hksr58n] .navigation-drawer > .dxbl-drawer-panel {
    display: flex;
}

[b-d70hksr58n] .navigation-drawer.mobile > .dxbl-drawer-panel {
    display: none;
}

.navigation-drawer-shading[b-d70hksr58n] {
    display: none;
}

[b-d70hksr58n] .panel-open:not(.mobile) .nav-buttons-container .menu-button {
    display: none;
}

@media (max-width: 768px) {
    [b-d70hksr58n] .navigation-drawer > .dxbl-drawer-panel {
        display: none;
    }

    [b-d70hksr58n] .navigation-drawer.mobile > .dxbl-drawer-panel {
        display: flex;
    }

    .navigation-drawer-shading[b-d70hksr58n] {
        display: block;
    }

    [b-d70hksr58n] .panel-open:not(.mobile) .nav-buttons-container .menu-button {
        display: flex;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.app-layout[b-ckn34bkx31] {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

/* ── Navbar base ─────────────────────────────────────────────────────────── */
.top-navbar[b-ckn34bkx31] {
    background: #ffffff;
    border-bottom: 2px solid var(--club-primary, #3F6F60);
    box-shadow: 0 1px 4px rgba(63,111,96,0.10);
    display: flex;
    flex-shrink: 0;
    height: 3.75rem;
    position: relative;
    z-index: 100;
}

.navbar-inner[b-ckn34bkx31] {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 1.5rem;
    width: 100%;
}

/* ── Navbar sections ─────────────────────────────────────────────────────── */
.navbar-section[b-ckn34bkx31] {
    align-items: center;
    display: flex;
    flex: 1;
}

.navbar-start[b-ckn34bkx31] { justify-content: flex-start; }
.navbar-end[b-ckn34bkx31]   { justify-content: flex-end; }

/* ── Brand (logo + title) ────────────────────────────────────────────────── */
.navbar-brand[b-ckn34bkx31] {
    align-items: center;
    display: flex;
    gap: 0.625rem;
    justify-content: center;
}

.navbar-logo[b-ckn34bkx31] {
    height: 2.625rem;
    width: auto;
}

.navbar-divider[b-ckn34bkx31] {
    color: #c8dfd8;
    font-size: 1.5rem;
    font-weight: 100;
    margin: 0 0.25rem;
    line-height: 1;
}

.navbar-title[b-ckn34bkx31] {
    color: var(--club-primary, #3F6F60);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
}

.navbar-title-sub[b-ckn34bkx31] {
    font-weight: 300;
    letter-spacing: 0.22em;
    opacity: 0.8;
}

.navbar-test-badge[b-ckn34bkx31] {
    align-items: center;
    background: #f6ad55;
    border-radius: 4px;
    color: #7b341e;
    display: inline-flex;
    font-size: 0.625rem;
    font-weight: 800;
    gap: 4px;
    letter-spacing: 0.08em;
    padding: 2px 7px;
}

/* ── Icon buttons ────────────────────────────────────────────────────────── */
.nav-icon-btn[b-ckn34bkx31] {
    align-items: center;
    background: none;
    border: none;
    border-radius: 0.375rem;
    color: var(--club-primary, #3F6F60);
    cursor: pointer;
    display: flex;
    height: 2.5rem;
    justify-content: center;
    padding: 0;
    transition: background 0.15s;
    width: 2.5rem;
}

.nav-icon-btn:hover[b-ckn34bkx31] {
    background: rgba(63, 111, 96, 0.10);
}

.nav-icon-btn .icon[b-ckn34bkx31] {
    height: 1.25rem;
    width: 1.25rem;
}

.nav-icon-btn .oi[b-ckn34bkx31] {
    font-size: 1.25rem;
}

/* ── User button (icon + name) ───────────────────────────────────────────── */
.nav-user-btn[b-ckn34bkx31] {
    gap: 0.5rem;
    padding: 0 0.625rem;
    width: auto;
}

.nav-user-name[b-ckn34bkx31] {
    color: var(--club-primary, #3F6F60);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ── Page content ────────────────────────────────────────────────────────── */
.page-content[b-ckn34bkx31] {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 0;
    overflow: auto;
}

/* ── Shared backdrop ─────────────────────────────────────────────────────── */
.menu-backdrop[b-ckn34bkx31] {
    background: rgba(0, 0, 0, 0.2);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 3.75rem;
    z-index: 200;
}

/* ── Hamburger dropdown ──────────────────────────────────────────────────── */
.hamburger-dropdown[b-ckn34bkx31] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    left: max(1.5rem, calc(50% - 600px + 1.5rem));
    max-height: calc(100dvh - 5rem);
    min-width: 200px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0.375rem 0;
    position: fixed;
    top: 3.875rem;
    z-index: 300;
}

/* ── User dropdown ───────────────────────────────────────────────────────── */
.user-dropdown[b-ckn34bkx31] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    min-width: 200px;
    padding: 0.375rem 0;
    position: fixed;
    right: max(1.5rem, calc(50% - 600px + 1.5rem));
    top: 3.875rem;
    z-index: 300;
}

.user-dropdown-item[b-ckn34bkx31] {
    box-sizing: border-box;
    color: #1f2937;
    cursor: pointer;
    display: block;
    font-size: 0.875rem;
    padding: 0.625rem 1rem;
    text-decoration: none;
    width: 100%;
}

.user-dropdown-item:hover[b-ckn34bkx31] {
    background: rgba(63, 111, 96, 0.07);
    color: var(--club-primary, #3F6F60);
}

.user-dropdown-btn[b-ckn34bkx31] {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.875rem;
    text-align: left;
}

/* ── Hamburger section label ─────────────────────────────────────────────── */
.hamburger-section-label[b-ckn34bkx31] {
    color: #9ca3af;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 0.5rem 1rem 0.25rem;
    text-transform: uppercase;
}

/* ── Active section highlight ────────────────────────────────────────────── */
.user-dropdown-item.active[b-ckn34bkx31] {
    background: rgba(63, 111, 96, 0.10);
    color: var(--club-primary, #3F6F60);
    font-weight: 600;
}

/* ── Hamburger divider ───────────────────────────────────────────────────── */
.hamburger-divider[b-ckn34bkx31] {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 0.375rem 0;
}

/* ── Mobile: hide club name and user name in navbar ─────────────────────── */
@media (max-width: 640px) {
    .navbar-divider[b-ckn34bkx31],
    .navbar-title[b-ckn34bkx31] {
        display: none;
    }

    .nav-user-name[b-ckn34bkx31] {
        display: none;
    }
}

/* ── App footer ──────────────────────────────────────────────────────────── */
.app-footer[b-ckn34bkx31] {
    border-top: 1px solid #e8e8e8;
    color: #aaa;
    flex-shrink: 0;
    font-size: 0.75rem;
    padding: 0.625rem 1.5rem;
    text-align: center;
}

.app-footer a[b-ckn34bkx31] {
    color: #aaa;
    text-decoration: none;
}

.app-footer a:hover[b-ckn34bkx31] {
    color: var(--club-primary, #3F6F60);
    text-decoration: underline;
}

/* ── User dropdown email header ──────────────────────────────────────────── */
.user-dropdown-email[b-ckn34bkx31] {
    border-bottom: 1px solid #f0f0f0;
    color: #718096;
    font-size: 0.8125rem;
    padding: 0.625rem 1rem 0.5rem;
    word-break: break-all;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
[b-7q7zrm4b1d] .menu {
    --dxbl-menu-bottom-left-border-radius: 0;
    --dxbl-menu-bottom-right-border-radius: 0;
    --dxbl-menu-top-left-border-radius: 0;
    --dxbl-menu-top-right-border-radius: 0;
    --dxbl-menu-item-padding-x: 1.125rem;
    --dxbl-menu-item-padding-y: 0.5rem;
    --dxbl-menu-item-color: #1f2937;
    --dxbl-menu-item-image-color: var(--club-primary, #3F6F60);
    --dxbl-menu-item-hover-bg: rgba(63, 111, 96, 0.08);
    --dxbl-menu-item-hover-color: var(--club-primary, #3F6F60);
    --dxbl-menu-item-hover-image-color: var(--club-primary, #3F6F60);

    background: none;
}

[b-7q7zrm4b1d] .menu-item-active {
    background-color: rgba(63, 111, 96, 0.1);
}

[b-7q7zrm4b1d] .menu-item-active .dxbl-menu-item-text-container {
    color: var(--club-primary, #3F6F60);
    font-weight: 500;
}
/* /Components/Pages/Docs/DocPage.razor.rz.scp.css */
/* ── Page wrapper — matches .admin-page scrolling pattern ────────────────── */
.doc-wrapper[b-mzm5jiz331] {
    padding: 1.5rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    overflow-y: auto;
    height: 100%;
    box-sizing: border-box;
    scrollbar-gutter: stable;
}

.doc-not-found[b-mzm5jiz331] {
    padding: 3rem;
}

/* ── Two-column grid ─────────────────────────────────────────────────────── */
.doc-layout[b-mzm5jiz331] {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    align-items: start;
}

/* ── Sidebar ─────────────────────────────────────────────────────────────── */
.doc-sidebar[b-mzm5jiz331] {
    position: sticky;
    top: 0;
}

.doc-back-btn[b-mzm5jiz331] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #6b7280;
    text-decoration: none;
    padding: 0.3rem 0;
    margin-bottom: 1rem;
}

.doc-back-btn:hover[b-mzm5jiz331] {
    color: var(--club-primary, #3F6F60);
}

.doc-back-btn .oi[b-mzm5jiz331] {
    font-size: 0.75rem;
}

.doc-toc-card[b-mzm5jiz331] {
    background: #fff;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    padding: 1rem 1.25rem;
}

.doc-toc-label[b-mzm5jiz331] {
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.doc-toc[b-mzm5jiz331] {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.doc-toc a[b-mzm5jiz331] {
    display: block;
    font-size: 0.825rem;
    color: #6b7280;
    text-decoration: none;
    padding: 0.2rem 0;
    line-height: 1.4;
    transition: color 0.1s;
}

.doc-toc a:hover[b-mzm5jiz331] {
    color: var(--club-primary, #3F6F60);
}

/* ── Content area ─────────────────────────────────────────────────────────── */
.doc-content-area[b-mzm5jiz331] {
    min-width: 0;
}

/* ── Toolbar (download button row) ─────────────────────────────────────────── */
.doc-toolbar[b-mzm5jiz331] {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0.75rem;
}

.doc-download-btn[b-mzm5jiz331] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    padding: 0.3rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.3rem;
    background: #fff;
    color: #374151;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.1s, border-color 0.1s;
}

.doc-download-btn:hover[b-mzm5jiz331] {
    background: #f9fafb;
    border-color: #9ca3af;
    color: #111827;
}

.doc-download-btn .oi[b-mzm5jiz331] {
    font-size: 0.75rem;
    color: #6b7280;
}

/* ── Doc card ─────────────────────────────────────────────────────────────── */
.doc-card[b-mzm5jiz331] {
    background: #fff;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    padding: 1.5rem;
}

/* ── Document typography — matches Manager ──────────────────────────────── */
.doc-content[b-mzm5jiz331] {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #212529;
}

.doc-content h1[b-mzm5jiz331] {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #212529;
}

.doc-content h2[b-mzm5jiz331] {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid #e9ecef;
    color: #212529;
}

.doc-content h3[b-mzm5jiz331] {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.4rem;
    color: #212529;
}

.doc-content p[b-mzm5jiz331] {
    margin-bottom: 0.9rem;
}

.doc-content ul[b-mzm5jiz331],
.doc-content ol[b-mzm5jiz331] {
    padding-left: 1.5rem;
    margin-bottom: 0.9rem;
}

.doc-content li[b-mzm5jiz331] {
    margin-bottom: 0.25rem;
}

/* ── Tables — light gray header matching Manager ─────────────────────────── */
.doc-content table[b-mzm5jiz331] {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.doc-content th[b-mzm5jiz331] {
    background: #f8f9fa;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    text-align: left;
    border: 1px solid #dee2e6;
    color: #212529;
}

.doc-content td[b-mzm5jiz331] {
    padding: 0.5rem 0.75rem;
    border: 1px solid #dee2e6;
    vertical-align: top;
}

/* ── Blockquotes — brand green left border ───────────────────────────────── */
.doc-content blockquote[b-mzm5jiz331] {
    border-left: 4px solid var(--club-primary, #3F6F60);
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    color: #495057;
}

.doc-content blockquote p:last-child[b-mzm5jiz331] {
    margin-bottom: 0;
}

/* ── Code ────────────────────────────────────────────────────────────────── */
.doc-content code[b-mzm5jiz331] {
    background: #f8f9fa;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-size: 0.875em;
    color: #c7254e;
}

.doc-content pre[b-mzm5jiz331] {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    overflow-x: auto;
}

.doc-content pre code[b-mzm5jiz331] {
    background: none;
    padding: 0;
    color: inherit;
}

/* ── Horizontal rule ─────────────────────────────────────────────────────── */
.doc-content hr[b-mzm5jiz331] {
    border: none;
    border-top: 1px solid #e9ecef;
    margin: 2rem 0;
}

/* ── Responsive: stack below 800px ──────────────────────────────────────── */
@media (max-width: 800px) {
    .doc-layout[b-mzm5jiz331] {
        grid-template-columns: 1fr;
    }

    .doc-sidebar[b-mzm5jiz331] {
        position: static;
    }
}
/* /Components/Pages/Index/Index.razor.rz.scp.css */
/* ── Unauthenticated landing ──────────────────────────────────────────────── */

.landing[b-smprr0nk16] {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    gap: 0;
}

.landing-logo[b-smprr0nk16] {
    height: 7.5rem;
    width: auto;
}

.landing-tagline[b-smprr0nk16] {
    color: var(--club-primary, #3F6F60);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.45em;
    margin-top: 0.875rem;
    text-transform: uppercase;
}

.landing-btn[b-smprr0nk16] {
    background: var(--club-primary, #3F6F60);
    border: none;
    border-radius: 0.5rem;
    color: #fff;
    cursor: pointer;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-top: 2rem;
    min-height: 2.75rem;
    padding: 0 3rem;
    text-transform: uppercase;
    transition: background 0.15s;
}

.landing-btn:hover[b-smprr0nk16] {
    background: #2d5246;
}

/* ── Authenticated home ───────────────────────────────────────────────────── */

[b-smprr0nk16] .index-gridlayout {
    container-type: inline-size;
    height: auto;
    margin-top: auto;
    margin-bottom: auto;
    padding-bottom: 9rem;
}

[b-smprr0nk16] .title {
    padding-bottom: 3rem;
    text-align: center;
}
/* /Components/Pages/Index/IndexTile.razor.rz.scp.css */
.tile[b-nncrgv2hmu] {
    border-radius: 0.75rem;
    height: 7.5rem;
    transition: box-shadow 0.2s;
    width: 14.375rem;
    border: 1px solid var(--dxds-color-border-neutral-default-rest);
}

.tile:hover[b-nncrgv2hmu] {
    box-shadow: 0 4px 8px 0 rgba(170, 170, 170, 0.24), 0 0 2px 0 rgba(170, 170, 170, 0.2);
}

.tile[b-nncrgv2hmu]  > a {
    text-decoration: none;
}

[b-nncrgv2hmu] .tile-content {
    padding: 1rem;
}

[b-nncrgv2hmu] .tile-icon {
    border-radius: 0.375rem;
    height: 2.75rem;
    padding: 0.75rem;
    width: 2.75rem;
    border: 1px solid var(--dxds-color-border-neutral-default-rest);
}

[b-nncrgv2hmu] .tile-title {
    align-self: center;
    color: var(--dxds-color-content-neutral-default-rest);
    font-size: var(--dxds-font-size-base-md);
    font-weight: var(--dxds-font-weight-base-strong);
    letter-spacing: var(--dxds-letter-spacing-base-md);
    line-height: var(--dxds-line-height-base-md);
}

[b-nncrgv2hmu] .tile-description {
    color: var(--dxds-color-content-neutral-subdued-rest);
    font-size: var(--dxds-font-size-base-sm);
    font-weight: var(--dxds-font-weight-base-default);
    letter-spacing: var(--dxds-letter-spacing-base-sm);
    line-height: var(--dxds-line-height-base-sm);
}
