/* /Components/Account/Pages/Login.razor.rz.scp.css */
/* Sign-in page — split layout: dark brand panel + light form panel.

   Stays inside the app's flat design language (global.css): no shadows, 8px
   radius on custom surfaces, 1px divider borders, MudBlazor palette variables
   rather than literal hex wherever the org's brand colour should flow through.

   Light mode only by design — dark mode is a per-user setting and there is no
   user yet at sign-in. See LoginLayout.razor.

   ::deep is needed for anything MudBlazor renders (MudIcon, MudTextField,
   MudStaticButton): scoped CSS only stamps its [b-xxx] attribute on elements
   declared in Login.razor, never on a child component's internals. */

/* ── Split shell ───────────────────────────────────────────────────────────── */
.auth-split[b-vkyc6vvp3e] {
    display: flex;
    flex: 1 1 auto;
    min-height: 100dvh;
    width: 100%;
}

/* ── Brand panel ───────────────────────────────────────────────────────────── */
.auth-brand[b-vkyc6vvp3e] {
    position: relative;
    overflow: hidden;
    flex: 0 0 46%;
    display: flex;
    align-items: flex-end;
    padding: 56px;
    isolation: isolate;
    /* A fixed engineering navy, warmed by whatever primary the org is running,
       so a rebranded tenant still gets a panel that belongs to it. */
    background:
        radial-gradient(115% 85% at 8% 0%,
            color-mix(in srgb, var(--mud-palette-primary) 34%, transparent) 0%,
            transparent 62%),
        linear-gradient(158deg, #0c1c2c 0%, #0a1523 58%, #060d16 100%);
    color: #fff;
}

/* Drawing-sheet grid, faded out towards the bottom-right so it never competes
   with the copy sitting on top of it. */
.auth-brand[b-vkyc6vvp3e]::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 32px 32px;
    -webkit-mask-image: radial-gradient(125% 105% at 18% 14%, #000 28%, transparent 82%);
    mask-image: radial-gradient(125% 105% at 18% 14%, #000 28%, transparent 82%);
}

.auth-diagram[b-vkyc6vvp3e] {
    position: absolute;
    z-index: -1;
    top: 44px;
    right: -60px;
    width: min(560px, 78%);
    height: auto;
    stroke-linecap: round;
    color: #fff;
}

.auth-diagram .ad-floor line[b-vkyc6vvp3e] {
    stroke: rgba(255, 255, 255, .10);
    stroke-width: 1;
    stroke-dasharray: 6 7;
}

.auth-diagram .ad-riser[b-vkyc6vvp3e] {
    stroke: rgba(255, 255, 255, .26);
    stroke-width: 2;
}

.auth-diagram .ad-branch line[b-vkyc6vvp3e],
.auth-diagram .ad-drop line[b-vkyc6vvp3e] {
    stroke: rgba(255, 255, 255, .18);
    stroke-width: 1.25;
}

.auth-diagram .ad-panel rect[b-vkyc6vvp3e] {
    stroke: rgba(255, 255, 255, .28);
    stroke-width: 1.25;
    fill: rgba(255, 255, 255, .04);
}

.auth-diagram .ad-panel-main[b-vkyc6vvp3e] {
    stroke: rgba(255, 255, 255, .42);
    fill: rgba(255, 255, 255, .07);
}

.auth-diagram .ad-node circle[b-vkyc6vvp3e] {
    stroke: rgba(255, 255, 255, .34);
    stroke-width: 1.25;
    fill: #0a1523;
}

.auth-brand-body[b-vkyc6vvp3e] {
    position: relative;
    max-width: 30rem;
}

.auth-eyebrow[b-vkyc6vvp3e] {
    margin: 0 0 14px;
    font-size: .72rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: .14em;
    text-transform: uppercase;
    /* 6.0:1 on the panel — comfortably past AA for small text. */
    color: rgba(255, 255, 255, .62);
}

.auth-wordmark[b-vkyc6vvp3e] {
    margin: 0 0 18px;
    font-size: clamp(1.9rem, 2.6vw, 2.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -.02em;
}

.auth-tagline[b-vkyc6vvp3e] {
    /* ~52 characters per line at this width — inside the 60–75 comfort band. */
    margin: 0 0 36px;
    max-width: 40ch;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .74);
}

.auth-features[b-vkyc6vvp3e] {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.auth-features li[b-vkyc6vvp3e] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    font-size: .925rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, .88);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.auth-features li[b-vkyc6vvp3e]  .mud-icon-root {
    flex: 0 0 auto;
    color: color-mix(in srgb, var(--mud-palette-primary) 55%, #ffffff);
}

/* ── Form panel ────────────────────────────────────────────────────────────── */
.auth-pane[b-vkyc6vvp3e] {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
    background-color: var(--mud-palette-surface);
}

.auth-form[b-vkyc6vvp3e] {
    width: 100%;
    max-width: 25rem;
}

/* ── Product mark ──────────────────────────────────────────────────────────── */
.auth-mark-row[b-vkyc6vvp3e] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.auth-mark[b-vkyc6vvp3e] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: color-mix(in srgb, var(--mud-palette-primary) 12%, var(--mud-palette-surface));
    border: 1px solid color-mix(in srgb, var(--mud-palette-primary) 26%, var(--mud-palette-lines-default));
}

/* AppLogo is a child component, so its <svg> never carries this page's scope
   attribute — hence ::deep. The mark is stroked in currentColor, so setting
   `color` is what tints it. */
.auth-mark[b-vkyc6vvp3e]  svg {
    color: var(--mud-palette-primary);
}

/* Redundant while the brand panel is on screen; revealed with it hidden. */
.auth-mark-text[b-vkyc6vvp3e] {
    display: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -.01em;
    color: var(--mud-palette-text-primary);
}

/* ── Headings ──────────────────────────────────────────────────────────────── */
.auth-form[b-vkyc6vvp3e]  .auth-title {
    margin-bottom: 6px;
    font-weight: 600;
    letter-spacing: -.02em;
}

.auth-form[b-vkyc6vvp3e]  .auth-subtitle {
    margin-bottom: 28px;
    color: var(--mud-palette-text-secondary);
}

/* ── Fields ────────────────────────────────────────────────────────────────── */
.auth-field[b-vkyc6vvp3e] {
    margin-bottom: 18px;
}

/* Leading icons are decoration, not a control — mute them and keep them out of
   the way of the label/value. */
.auth-field[b-vkyc6vvp3e]  .mud-input-adornment-start .mud-icon-root {
    color: var(--mud-palette-text-secondary);
}

/* ── Remember me ───────────────────────────────────────────────────────────── */
.auth-remember[b-vkyc6vvp3e] {
    margin-bottom: 24px;
}

/* Nudge the box back to the text's left edge: MudBlazor's own ripple padding
   otherwise indents the row relative to the fields above it. */
.auth-remember[b-vkyc6vvp3e]  .mud-checkbox {
    margin-left: -9px;
}

.auth-remember-hint[b-vkyc6vvp3e] {
    /* Persistent helper text rather than a tooltip — one line, always readable. */
    margin: 2px 0 0 34px;
    font-size: .75rem;
    line-height: 1.5;
    color: var(--mud-palette-text-secondary);
}

/* ── Submit ────────────────────────────────────────────────────────────────── */
.auth-form[b-vkyc6vvp3e]  .auth-submit {
    height: 48px;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .01em;
    text-transform: none;
    transition: background-color .18s ease-out, box-shadow .18s ease-out;
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
.auth-foot[b-vkyc6vvp3e] {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--mud-palette-divider);
}

.auth-help[b-vkyc6vvp3e] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    font-size: .8125rem;
    line-height: 1.5;
    color: var(--mud-palette-text-secondary);
}

.auth-help[b-vkyc6vvp3e]  .mud-icon-root {
    flex: 0 0 auto;
    color: var(--mud-palette-text-secondary);
}

.auth-copy[b-vkyc6vvp3e] {
    margin: 0;
    font-size: .75rem;
    color: var(--mud-palette-text-disabled);
}

/* ── Responsive ────────────────────────────────────────────────────────────── */

/* Tablet — keep the split but give the form pane the room it needs. */
@media (max-width: 1279px) {
    .auth-brand[b-vkyc6vvp3e] {
        flex-basis: 42%;
        padding: 40px;
    }
}

/* Below this the brand panel can no longer hold a readable measure, so it goes
   and the form takes the full width. A 3px primary rule keeps some brand
   presence at the top of the phone layout. */
@media (max-width: 959px) {
    .auth-brand[b-vkyc6vvp3e] {
        display: none;
    }

    .auth-pane[b-vkyc6vvp3e] {
        padding: 40px 24px;
        border-top: 3px solid var(--mud-palette-primary);
    }

    .auth-mark-text[b-vkyc6vvp3e] {
        display: inline;
    }
}

@media (max-width: 599px) {
    .auth-pane[b-vkyc6vvp3e] {
        align-items: flex-start;
        padding: 32px 20px 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .auth-form[b-vkyc6vvp3e]  .auth-submit {
        transition: none;
    }
}
/* /Components/AI/AiChatDrawer.razor.rz.scp.css */
/* ── SmartTextArea styling to match MudBlazor ────────────────────────── */
[b-199hque7d2] .smart-textarea-wrapper {
    position: relative;
}

[b-199hque7d2] .ai-smart-textarea,
[b-199hque7d2] .smart-textarea-wrapper textarea {
    width: 100%;
    min-height: 44px;
    max-height: 140px;
    resize: none;
    overflow-y: auto;
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: var(--mud-default-borderradius);
    padding: 10px 14px;
    font-family: var(--mud-typography-body2-family), Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
    background-color: var(--mud-palette-surface);
    color: var(--mud-palette-text-primary);
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

[b-199hque7d2] .ai-smart-textarea:focus,
[b-199hque7d2] .smart-textarea-wrapper textarea:focus {
    border-color: var(--mud-palette-primary);
    box-shadow: 0 0 0 1px var(--mud-palette-primary);
}

[b-199hque7d2] .ai-smart-textarea::placeholder,
[b-199hque7d2] .smart-textarea-wrapper textarea::placeholder {
    color: var(--mud-palette-text-disabled);
}

[b-199hque7d2] .ai-smart-textarea:disabled,
[b-199hque7d2] .smart-textarea-wrapper textarea:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Ghost suggestion below textarea */
[b-199hque7d2] .ghost-suggestion {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    font-size: 0.78rem;
    color: var(--mud-palette-text-disabled);
    cursor: pointer;
    transition: color 0.2s;
}

[b-199hque7d2] .ghost-suggestion:hover {
    color: var(--mud-palette-text-secondary);
}

/* ── Message text wrapping ────────────────────────────────────────────── */
[b-199hque7d2] .msg-bubble {
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* ── Copy button appears on hover ────────────────────────────────────── */
[b-199hque7d2] .msg-bubble .msg-copy-btn {
    opacity: 0 !important;
    transition: opacity 0.2s;
}

[b-199hque7d2] .msg-bubble:hover .msg-copy-btn {
    opacity: 0.6 !important;
}

[b-199hque7d2] .msg-copy-btn:hover {
    opacity: 1 !important;
}

/* ── Markdown content within chat bubble ─────────────────────────────── */
[b-199hque7d2] .ai-markdown-container {
    word-break: break-word;
    overflow-wrap: anywhere;
}

[b-199hque7d2] .ai-markdown-container .mud-markdown-body {
    font-size: 0.875rem;
    line-height: 1.6;
    word-break: break-word;
    overflow-wrap: anywhere;
}

[b-199hque7d2] .ai-markdown-container .mud-markdown-body h1,
[b-199hque7d2] .ai-markdown-container .mud-markdown-body h2,
[b-199hque7d2] .ai-markdown-container .mud-markdown-body h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
}

[b-199hque7d2] .ai-markdown-container .mud-markdown-body h1 {
    font-size: 1.1rem;
}

[b-199hque7d2] .ai-markdown-container .mud-markdown-body p {
    margin-bottom: 0.5rem;
}

[b-199hque7d2] .ai-markdown-container .mud-markdown-body p:last-child {
    margin-bottom: 0;
}

[b-199hque7d2] .ai-markdown-container .mud-markdown-body pre {
    font-size: 0.8rem;
    border-radius: 6px;
    overflow-x: auto;
    margin: 0.5rem 0;
}

[b-199hque7d2] .ai-markdown-container .mud-markdown-body code:not(pre code) {
    background-color: var(--mud-palette-background-grey);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.82em;
}

[b-199hque7d2] .ai-markdown-container .mud-markdown-body table {
    font-size: 0.82rem;
    width: 100%;
}

[b-199hque7d2] .ai-markdown-container .mud-markdown-body ul,
[b-199hque7d2] .ai-markdown-container .mud-markdown-body ol {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

[b-199hque7d2] .ai-markdown-container .mud-markdown-body li {
    margin-bottom: 0.2rem;
}

[b-199hque7d2] .ai-markdown-container .mud-markdown-body blockquote {
    border-left: 3px solid var(--mud-palette-primary);
    padding-left: 12px;
    margin: 0.5rem 0;
    opacity: 0.85;
}

[b-199hque7d2] .ai-markdown-container .mud-markdown-body strong {
    font-weight: 600;
}

[b-199hque7d2] .ai-markdown-container .mud-markdown-body a {
    color: var(--mud-palette-primary);
    text-decoration: none;
}

[b-199hque7d2] .ai-markdown-container .mud-markdown-body a:hover {
    text-decoration: underline;
}
/* /Components/Layout/LoginLayout.razor.rz.scp.css */
/* Full-viewport shell for the sign-in page. 100dvh (not 100vh) so the mobile
   browser chrome collapsing doesn't leave a scrollbar behind. */
.auth-shell[b-csp8fymccb] {
    min-height: 100dvh;
    display: flex;
    background-color: var(--mud-palette-surface);
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-1eh2jv2znf] {
    position: relative;
    display: flex;
    flex-direction: column;
}

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

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

.top-row[b-1eh2jv2znf] {
    background-color: var(--mud-palette-background-gray);
    border-bottom: 1px solid var(--mud-palette-lines-default);
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

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

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

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

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

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

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

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

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

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

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

#blazor-error-ui[b-1eh2jv2znf] {
    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-1eh2jv2znf] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-mefmhbgag0] {
    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-mefmhbgag0] {
    background-color: rgba(255, 255, 255, 0.5);
}

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

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

.bi[b-mefmhbgag0] {
    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-mefmhbgag0] {
    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-mefmhbgag0] {
    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-mefmhbgag0] {
    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");
}

.bi-lock-nav-menu[b-mefmhbgag0] {
    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 d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-mefmhbgag0] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-mefmhbgag0] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-mefmhbgag0] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-mefmhbgag0] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.nav-item[b-mefmhbgag0] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

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

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

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

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

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

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

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

    .nav-scrollable[b-mefmhbgag0] {
        /* 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/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-mv7hnxwkhn],
.components-reconnect-repeated-attempt-visible[b-mv7hnxwkhn],
.components-reconnect-failed-visible[b-mv7hnxwkhn],
.components-pause-visible[b-mv7hnxwkhn],
.components-resume-failed-visible[b-mv7hnxwkhn],
.components-rejoining-animation[b-mv7hnxwkhn] {
    display: none;
}

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


#components-reconnect-modal[b-mv7hnxwkhn] {
    background-color: var(--mud-palette-surface, white);
    color: var(--mud-palette-text-primary, #333);
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 1px solid var(--mud-palette-divider, rgba(0,0,0,0.12));
    border-radius: 8px;
    box-shadow: none;
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-mv7hnxwkhn 0.5s both;
    &[open]

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

#components-reconnect-modal button[b-mv7hnxwkhn] {
    border: 0;
    background-color: var(--mud-palette-primary);
    color: var(--mud-palette-primary-text);
    padding: 6px 24px;
    border-radius: 8px;
    cursor: pointer;
    font: inherit;
    transition: background-color 0.15s;
}

    #components-reconnect-modal button:hover[b-mv7hnxwkhn] {
        background-color: var(--mud-palette-primary-darken);
    }

    #components-reconnect-modal button:active[b-mv7hnxwkhn] {
        background-color: var(--mud-palette-primary);
    }

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

    .components-rejoining-animation div[b-mv7hnxwkhn] {
        position: absolute;
        border: 3px solid var(--mud-palette-primary);
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-mv7hnxwkhn 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

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

@keyframes components-rejoining-animation-b-mv7hnxwkhn {
    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/Pages/Design/EquipmentDetail.razor.rz.scp.css */
/* ── Notes column ─────────────────────────────────────────────────────────────
   A component note carries a model + quantity per part, so it gets long:
   "SAX31.00 ×2 / VVF42.25-10 ×2 / PLC-RSC-220DC ×2 · K1 coil (A1)".

   The shared .lcs-chip is `white-space: nowrap` by design (it must not break a
   model number mid-token), which means an unbounded chip stretches the table
   cell and squeezes every other column. Cap it and ellipsis instead — the full
   text stays available via the cell's title attribute and the Components
   dialog behind "See more…". */

.lcs-note-cell[b-tm6lazy2sa] {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    align-items: center;
}

.lcs-note-chip[b-tm6lazy2sa] {
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    /* Slightly tighter than the default chip — these sit several to a cell. */
    font-size: 0.70rem;
    padding: 1px 5px;
    border-radius: 10px;
    font-weight: 600;
}

/* Narrow viewports: the notes column is already the first to suffer, so give the
   chips less room rather than letting the row scroll horizontally. */
@media (max-width: 1400px) {
    .lcs-note-chip[b-tm6lazy2sa] { max-width: 170px; }
}
/* /Components/Pages/Design/EquipmentList.razor.rz.scp.css */
.equipment-card[b-5sjtfn1t09] {
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.equipment-card:hover[b-5sjtfn1t09] {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14) !important;
}
