/* /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] {
    align-items: center;
    background: #3F6F60;
    display: flex;
    flex-shrink: 0;
    height: 3.5rem;
    padding: 0 0.75rem;
    position: relative;
    z-index: 100;
}

/* Authenticated: space-between so start/brand/end each get flex:1 */
.top-navbar:not(.top-navbar-minimal)[b-ckn34bkx31] {
    justify-content: space-between;
}

/* Unauthenticated: center the brand */
.top-navbar-minimal[b-ckn34bkx31] {
    justify-content: center;
}

/* ── 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: 2rem;
    width: auto;
}

.navbar-title[b-ckn34bkx31] {
    color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

/* "INSIGHTS" rendered slightly lighter / thinner than "WYNDEMERE" */
.navbar-title-sub[b-ckn34bkx31] {
    font-weight: 300;
    letter-spacing: 0.18em;
    opacity: 0.9;
}

/* ── Icon buttons ────────────────────────────────────────────────────────── */
.nav-icon-btn[b-ckn34bkx31] {
    align-items: center;
    background: none;
    border: none;
    border-radius: 0.375rem;
    color: #fff;
    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(255, 255, 255, 0.14);
}

.nav-icon-btn .icon[b-ckn34bkx31] {
    height: 1.25rem;
    width: 1.25rem;
}

.nav-icon-btn .oi[b-ckn34bkx31] {
    font-size: 1.25rem;
}

/* ── 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.5rem;
    z-index: 200;
}

/* ── Hamburger slide-in panel ────────────────────────────────────────────── */
.hamburger-panel[b-ckn34bkx31] {
    background: #fff;
    border-right: 1px solid #e5e7eb;
    bottom: 0;
    box-shadow: 4px 0 16px rgba(0, 0, 0, 0.1);
    left: 0;
    overflow-y: auto;
    padding: 0.5rem 0;
    position: fixed;
    top: 3.5rem;
    width: 240px;
    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: 0.75rem;
    top: 3.625rem;
    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: #3F6F60;
}

.user-dropdown-btn[b-ckn34bkx31] {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.875rem;
    text-align: left;
}
/* /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: #3F6F60;
    --dxbl-menu-item-hover-bg: rgba(63, 111, 96, 0.08);
    --dxbl-menu-item-hover-color: #3F6F60;
    --dxbl-menu-item-hover-image-color: #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: #3F6F60;
    font-weight: 500;
}
/* /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: #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: #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);
}
