/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ============================================================================
   Tansi 3.0 navigation — designer mockup (tansi-nav-mockup-a11y_6) adapted to
   the app's MudBlazor theme. Neutral chrome derives from the active Mud palette
   so light/dark tracking is automatic; per-module identity colors come from
   NavigationRegistry and flow through the --mod custom property.

   Interactive rows declare their own display/alignment explicitly (not just in
   the shared reset) so app-global button/link styles can never re-center them.
   ============================================================================ */

.tnav[b-1y0ct1y86m] {
    --nav-bg: var(--mud-palette-background);
    --nav-surface: var(--mud-palette-surface);
    --nav-line: var(--mud-palette-lines-default);
    --nav-line-ui: color-mix(in srgb, var(--mud-palette-text-secondary) 75%, transparent);
    --nav-text: var(--mud-palette-text-primary);
    --nav-text-2: var(--mud-palette-text-secondary);
    --nav-text-3: color-mix(in srgb, var(--mud-palette-text-secondary) 80%, var(--mud-palette-background));
    --nav-primary: var(--mud-palette-primary);
    --nav-primary-soft: color-mix(in srgb, var(--mud-palette-primary) 12%, transparent);
    --nav-focus: var(--mud-palette-primary);
    --nav-pop-shadow: 0 12px 32px rgba(20, 24, 44, .18);

    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    color: var(--nav-text);
    font-size: .9rem;
    line-height: 1.45;
    text-align: left;
    background: var(--nav-surface);
}

.tnav-dark[b-1y0ct1y86m] {
    --nav-pop-shadow: 0 12px 32px rgba(0, 0, 0, .6);
}

/* Brighten the fixed module hues on dark surfaces (mockup parity). */
.tnav-dark .tnav-tile[b-1y0ct1y86m],
.tnav-dark .tnav-grp .dot[b-1y0ct1y86m],
.tnav-dark .tnav-swatch[b-1y0ct1y86m] {
    filter: brightness(1.45) saturate(.95);
}

.tnav-scroll[b-1y0ct1y86m] {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.tnav-scroll[b-1y0ct1y86m]::-webkit-scrollbar { width: 8px; }
.tnav-scroll[b-1y0ct1y86m]::-webkit-scrollbar-thumb { background: var(--nav-line); border-radius: 4px; }

/* Zero-specificity reset (:where) so it can never outrank the single-class
   button rules below — a plain `.tnav button` reset compiles to higher
   specificity than `.tnav-picker-item` etc. and was flattening their
   padding/borders/backgrounds. */
.tnav :where(button)[b-1y0ct1y86m] {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    margin: 0;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    text-align: left;
    cursor: pointer;
}

.tnav ul[b-1y0ct1y86m] { list-style: none; margin: 0; padding: 0; }
.tnav h2[b-1y0ct1y86m], .tnav p[b-1y0ct1y86m] { margin: 0; }

.tnav :focus[b-1y0ct1y86m] { outline: none; }
.tnav :focus-visible[b-1y0ct1y86m] {
    outline: 3px solid var(--nav-focus);
    outline-offset: 2px;
    border-radius: 6px;
}

.sr-only[b-1y0ct1y86m] {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

svg.i[b-1y0ct1y86m] {
    width: 1.05rem;
    height: 1.05rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.tnav-project[b-1y0ct1y86m] { padding: .45rem .7rem 0; }

/* Small-caps group captions (picker + menus) */
.tnav-cap[b-1y0ct1y86m] {
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--nav-text-3);
    padding: .6rem 1.1rem .4rem;
    text-align: left;
}

.tnav-cap-gap[b-1y0ct1y86m] { margin-top: .8rem; border-top: 1px solid var(--nav-line); padding-top: .9rem; }

/* ================= search ================= */

.tnav-search[b-1y0ct1y86m] { position: relative; padding: .7rem .7rem .25rem; }

.tnav-search-field[b-1y0ct1y86m] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .55rem;
    padding: .55rem .8rem;
    border: 1px solid var(--nav-line-ui);
    border-radius: .6rem;
    background: var(--nav-bg);
}

.tnav-search-field:focus-within[b-1y0ct1y86m] {
    border-color: var(--nav-focus);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--nav-focus) 22%, transparent);
}

.tnav-search-field svg.i[b-1y0ct1y86m] { color: var(--nav-text-3); }

.tnav-search-field input[b-1y0ct1y86m] {
    flex: 1;
    border: 0;
    background: transparent;
    color: var(--nav-text);
    font: inherit;
    font-size: .9rem;
    min-width: 0;
    text-align: left;
}

.tnav-search-field input:focus[b-1y0ct1y86m] { outline: none; }
.tnav-search-field input[b-1y0ct1y86m]::placeholder { color: var(--nav-text-3); }

.tnav-kbd[b-1y0ct1y86m] {
    font-size: .68rem;
    border: 1px solid var(--nav-line-ui);
    border-radius: .3rem;
    padding: .08rem .38rem;
    color: var(--nav-text-3);
    background: var(--nav-surface);
    white-space: nowrap;
}

.tnav-results[b-1y0ct1y86m] {
    position: absolute;
    left: .7rem;
    right: .7rem;
    top: calc(100% + .3rem);
    z-index: 90;
    background: var(--nav-surface);
    border: 1px solid var(--nav-line);
    border-radius: .7rem;
    box-shadow: var(--nav-pop-shadow);
    max-height: 62vh;
    overflow: auto;
    padding: .35rem;
}

.tnav-empty[b-1y0ct1y86m] { padding: 1rem .7rem; font-size: .88rem; color: var(--nav-text-2); }

.tnav-opt[b-1y0ct1y86m] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: .65rem;
    padding: .6rem .65rem;
    cursor: pointer;
    border-radius: .5rem;
}

.tnav-opt[aria-selected="true"][b-1y0ct1y86m] {
    background: var(--nav-primary-soft);
    box-shadow: inset 0 0 0 2px var(--nav-primary);
}

.tnav-opt:hover[b-1y0ct1y86m] { background: var(--nav-bg); }

.tnav-swatch[b-1y0ct1y86m] { width: .65rem; height: .65rem; border-radius: .22rem; flex: 0 0 auto; }

.tnav-opt-main[b-1y0ct1y86m] { min-width: 0; flex: 1; text-align: left; }

.tnav-opt-label[b-1y0ct1y86m] {
    font-weight: 650;
    font-size: .89rem;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tnav-opt-label[b-1y0ct1y86m]  mark {
    background: color-mix(in srgb, var(--nav-focus) 26%, transparent);
    color: inherit;
    font-weight: 800;
    border-radius: 2px;
    padding: 0 .05em;
}

.tnav-opt-path[b-1y0ct1y86m] { font-size: .76rem; color: var(--nav-text-2); display: block; }

.tnav-opt-flag[b-1y0ct1y86m] {
    font-size: .64rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
    border: 1px solid var(--nav-line-ui);
    border-radius: 1rem;
    padding: .08rem .45rem;
    color: var(--nav-text-2);
    flex: 0 0 auto;
}

/* ================= module switcher button ================= */

.tnav-switcher[b-1y0ct1y86m] { padding: .7rem .7rem .45rem; }

.tnav-switch-btn[b-1y0ct1y86m] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: .75rem;
    padding: .65rem .75rem;
    border: 1px solid var(--nav-line-ui);
    border-radius: .75rem;
    background: var(--nav-bg);
}

.tnav-switch-btn:hover[b-1y0ct1y86m] {
    border-color: var(--nav-primary);
    background: var(--nav-primary-soft);
}

.tnav-switch-btn[aria-expanded="true"][b-1y0ct1y86m] {
    background: var(--nav-primary-soft);
}

.tnav-switch-text[b-1y0ct1y86m] { min-width: 0; flex: 1; text-align: left; }
.tnav-switch-text .t[b-1y0ct1y86m] { display: block; font-weight: 700; font-size: .95rem; line-height: 1.3; }
.tnav-switch-text .s[b-1y0ct1y86m] {
    display: block;
    font-size: .74rem;
    color: var(--nav-text-2);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tnav-tile[b-1y0ct1y86m] {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: .6rem;
    color: #fff;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tnav-tile svg.i[b-1y0ct1y86m] { width: 1.1rem; height: 1.1rem; stroke-width: 2.1; }

.tnav-caret[b-1y0ct1y86m] { margin-left: auto; color: var(--nav-text-3); transition: transform .15s ease; }

.tnav-switch-btn[aria-expanded="true"] .tnav-caret[b-1y0ct1y86m] { transform: rotate(180deg); }

/* ================= module picker (inline card, mockup parity) ================= */

.tnav-picker[b-1y0ct1y86m] {
    margin: .15rem .7rem .9rem;
    padding: .35rem;
    background: var(--nav-surface);
    border: 1px solid var(--nav-line);
    border-radius: 14px;
    box-shadow: var(--nav-pop-shadow);
}

.tnav-picker .tnav-cap[b-1y0ct1y86m] { padding: .65rem .8rem .45rem; }

.tnav-picker-item[b-1y0ct1y86m] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: .8rem;
    padding: .7rem .75rem;
    margin-bottom: .2rem;
    border-radius: 12px;
}

.tnav-picker-item:last-child[b-1y0ct1y86m] { margin-bottom: 0; }

.tnav-picker-item:hover[b-1y0ct1y86m] { background: var(--nav-bg); }

.tnav-picker-item[aria-current="true"][b-1y0ct1y86m] { background: var(--nav-primary-soft); }

.tnav-picker-item .tnav-tile[b-1y0ct1y86m] { width: 2.35rem; height: 2.35rem; border-radius: .65rem; }
.tnav-picker-item .tnav-tile svg.i[b-1y0ct1y86m] { width: 1.2rem; height: 1.2rem; }

.tnav-mi-text[b-1y0ct1y86m] { min-width: 0; flex: 1; text-align: left; }
.tnav-mi-text .t[b-1y0ct1y86m] { display: block; font-weight: 700; font-size: .94rem; line-height: 1.35; }
.tnav-mi-text .s[b-1y0ct1y86m] {
    display: block;
    font-size: .8rem;
    color: var(--nav-text-2);
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tnav-check[b-1y0ct1y86m] { color: var(--nav-primary); stroke-width: 2.4; width: .95rem; height: .95rem; }

/* ================= sub-section chips ================= */

.tnav-chips[b-1y0ct1y86m] {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    padding: .35rem .9rem .65rem;
}

.tnav-chip[b-1y0ct1y86m] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--nav-line-ui);
    background: var(--nav-bg);
    color: var(--nav-text-2);
    padding: .32rem .75rem;
    border-radius: 1rem;
    font-size: .78rem;
    font-weight: 650;
    line-height: 1.2;
}

.tnav-chip:hover[b-1y0ct1y86m] { color: var(--nav-text); background: var(--nav-primary-soft); }

.tnav-chip[aria-selected="true"][b-1y0ct1y86m] {
    background: var(--mod, var(--nav-primary));
    color: #fff;
    border-color: transparent;
}

.tnav-dark .tnav-chip[aria-selected="true"][b-1y0ct1y86m] {
    background: color-mix(in srgb, var(--mod, var(--nav-primary)) 55%, #ffffff);
    color: #0d1016;
}

/* ================= module nav ================= */

.tnav-nav h2.tnav-sec[b-1y0ct1y86m] {
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--nav-text-3);
    padding: 1.15rem 1.1rem .4rem;
    text-align: left;
}

.tnav-link[b-1y0ct1y86m] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: .7rem;
    width: 100%;
    text-decoration: none;
    padding: .6rem 1.1rem .6rem .9rem;
    border-left: 3px solid transparent;
    font-size: .875rem;
    line-height: 1.35;
    cursor: pointer;
    color: var(--nav-text);
}

.tnav-link svg.i[b-1y0ct1y86m] { color: var(--nav-text-3); width: .95rem; height: .95rem; }

.tnav-link .lbl[b-1y0ct1y86m] {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tnav-link:hover[b-1y0ct1y86m] { background: var(--nav-bg); color: var(--nav-text); }

.tnav-link[aria-current="page"][b-1y0ct1y86m] {
    background: var(--nav-primary-soft);
    border-left-color: var(--mod, var(--nav-primary));
    font-weight: 700;
}

.tnav-link[aria-current="page"] svg.i[b-1y0ct1y86m] { color: var(--mod, var(--nav-primary)); }

.tnav-dark .tnav-link[aria-current="page"][b-1y0ct1y86m] {
    border-left-color: color-mix(in srgb, var(--mod, var(--nav-primary)) 55%, #ffffff);
}

.tnav-alias[b-1y0ct1y86m] {
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--nav-text-2);
    border: 1px solid var(--nav-line-ui);
    border-radius: 1rem;
    padding: .05rem .4rem;
    flex: 0 0 auto;
}

/* ================= show-all mode ================= */

.tnav-grp[b-1y0ct1y86m] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .6rem;
    padding: 1rem 1.1rem .4rem;
}

.tnav-grp .dot[b-1y0ct1y86m] { width: .72rem; height: .72rem; border-radius: .24rem; flex: 0 0 auto; }

.tnav-grp h2[b-1y0ct1y86m] {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--nav-text-2);
    text-align: left;
}

.tnav-grp .n[b-1y0ct1y86m] { margin-left: auto; font-size: .68rem; color: var(--nav-text-3); font-weight: 700; }

.tnav-showall[b-1y0ct1y86m] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: .55rem;
    width: 100%;
    padding: .75rem 1.1rem;
    font-size: .8rem;
    color: var(--nav-text-2);
    border-top: 1px solid var(--nav-line);
    background: var(--nav-surface);
    flex: 0 0 auto;
}

.tnav-showall svg.i[b-1y0ct1y86m] { width: .9rem; height: .9rem; }

.tnav-showall:hover[b-1y0ct1y86m] { color: var(--nav-primary); background: var(--nav-bg); }

/* ================= simple menus (public / logged-out) ================= */

.tnav-simple[b-1y0ct1y86m] { padding-top: .6rem; }
.tnav-simple .tnav-link[b-1y0ct1y86m] { padding: .7rem 1.1rem .7rem .9rem; font-size: .9rem; }
.tnav-simple .tnav-link svg.i[b-1y0ct1y86m] { width: 1.1rem; height: 1.1rem; }

/* ================= motion & contrast preferences ================= */

@media (prefers-reduced-motion: reduce) {
    .tnav *[b-1y0ct1y86m], .tnav-simple *[b-1y0ct1y86m] { animation: none !important; transition: none !important; }
}

@media (prefers-contrast: more) {
    .tnav[b-1y0ct1y86m] {
        --nav-line: var(--mud-palette-text-primary);
        --nav-line-ui: var(--mud-palette-text-primary);
        --nav-text-2: var(--mud-palette-text-primary);
        --nav-text-3: var(--mud-palette-text-primary);
    }
}
/* /Components/Pages/HR/Admin/UserCreation.razor.rz.scp.css */
/* Create-a-user page. Only the bits MudBlazor does not own: the creation-kind
   radio cards, the explicit field labels (the page renders its own <label> so the
   required asterisk can be aria-hidden and sit next to a real aria-required), and
   the native date inputs. */

.uc-h2[b-qzqugafwyo] {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 .25rem;
    color: var(--mud-palette-text-primary);
}

.uc-h3[b-qzqugafwyo] {
    font-size: .95rem;
    font-weight: 600;
    margin: 1.25rem 0 .5rem;
    color: var(--mud-palette-text-primary);
}

/* --- creation choice ---------------------------------------------------- */

.uc-choices[b-qzqugafwyo] {
    display: grid;
    gap: .75rem;
}

.uc-choice[b-qzqugafwyo] {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .875rem 1rem;
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 14px;
    cursor: pointer;
    background: var(--mud-palette-surface);
    transition: border-color .15s ease, background-color .15s ease;
}

.uc-choice:hover[b-qzqugafwyo] {
    border-color: var(--page-accent, var(--mud-palette-primary));
}

.uc-choice--on[b-qzqugafwyo] {
    border-color: var(--page-accent, var(--mud-palette-primary));
    border-width: 2px;
    padding: calc(.875rem - 1px) calc(1rem - 1px);
}

.uc-choice__radio[b-qzqugafwyo] {
    margin-top: .2rem;
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 auto;
    accent-color: var(--page-accent, var(--mud-palette-primary));
}

.uc-choice__body[b-qzqugafwyo] {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.uc-choice__title[b-qzqugafwyo] {
    font-weight: 600;
}

.uc-choice__detail[b-qzqugafwyo] {
    font-size: .8125rem;
    color: var(--mud-palette-text-secondary);
}

/* --- labels and native inputs ------------------------------------------- */

.uc-label[b-qzqugafwyo] {
    display: block;
    font-size: .8125rem;
    font-weight: 600;
    margin-bottom: .25rem;
    color: var(--mud-palette-text-primary);
}

.uc-label__note[b-qzqugafwyo] {
    font-weight: 400;
    margin-left: .35rem;
    color: var(--mud-palette-text-secondary);
}

.uc-label .req[b-qzqugafwyo] {
    color: var(--mud-palette-error);
    margin-left: .15rem;
}

.uc-input[b-qzqugafwyo] {
    width: 100%;
    padding: .55rem .75rem;
    border: 1px solid var(--mud-palette-lines-inputs);
    border-radius: 14px;
    background: transparent;
    color: var(--mud-palette-text-primary);
    font: inherit;
    min-height: 2.6rem;
}

.uc-input:focus-visible[b-qzqugafwyo] {
    outline: 2px solid var(--page-accent, var(--mud-palette-primary));
    outline-offset: 1px;
}

.uc-check[b-qzqugafwyo] {
    display: flex;
    align-items: center;
    gap: .45rem;
    margin-top: .35rem;
    font-size: .8125rem;
}

.uc-check input[b-qzqugafwyo] {
    accent-color: var(--page-accent, var(--mud-palette-primary));
}

.uc-derived[b-qzqugafwyo] {
    font-size: .8125rem;
    color: var(--mud-palette-text-secondary);
    margin: .5rem 0 0;
}

/* --- result panel ------------------------------------------------------- */

.uc-links[b-qzqugafwyo] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .5rem;
}

.uc-links a[b-qzqugafwyo] {
    color: var(--page-accent, var(--mud-palette-primary));
}
/* /Components/Pages/InventoryModule/LocationModule/LocationTreeNode.razor.rz.scp.css */
/* One-line tree rows. Name first so names align; metadata is muted text. */
.loc-row[b-jkh8c550v4] {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding-right: 8px;
    border-radius: 6px;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: background-color 0.15s;
}

.loc-row:hover[b-jkh8c550v4] {
    background-color: var(--mud-palette-action-default-hover);
}

.loc-row--selected[b-jkh8c550v4],
.loc-row--selected:hover[b-jkh8c550v4] {
    background-color: var(--mud-palette-primary-hover);
    border-left-color: var(--mud-palette-primary);
}

.loc-row--inactive .loc-name[b-jkh8c550v4],
.loc-row--inactive .loc-meta[b-jkh8c550v4] {
    opacity: 0.55;
}

.loc-toggle-spacer[b-jkh8c550v4] {
    flex: none;
    width: 30px;
}

.loc-name[b-jkh8c550v4] {
    flex: 0 1 auto;
    min-width: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.92rem;
    font-weight: 500;
    text-align: left;
    color: var(--mud-palette-text-primary);
}

.loc-meta[b-jkh8c550v4] {
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
}

.loc-trail[b-jkh8c550v4] {
    display: flex;
    flex: none;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
}

.loc-count[b-jkh8c550v4] {
    min-width: 1.5em;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.loc-tag-inactive[b-jkh8c550v4] {
    padding: 0 6px;
    border: 1px solid var(--mud-palette-warning);
    border-radius: 10px;
    font-size: 0.68rem;
    line-height: 1.5;
    color: var(--mud-palette-warning-darken);
}

.loc-hidden-hint[b-jkh8c550v4] {
    padding-top: 2px;
    padding-bottom: 6px;
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
}
/* /Components/Pages/PublicCardPage/PublicCardPage.razor.rz.scp.css */
.public-card-page[b-mp2odrfnbj] {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px 14px;
    background:
        radial-gradient(circle at top left, rgba(5, 169, 209, 0.14), transparent 34rem),
        linear-gradient(180deg, #f6fafc 0%, #eef5f8 100%);
}

.public-card-shell[b-mp2odrfnbj] {
    width: min(100%, 472px);
    background: #ffffff;
    border: 1px solid #d8e5eb;
    border-radius: 34px;
    box-shadow: 0 24px 60px rgba(21, 73, 91, 0.16);
    overflow: hidden;
}

.profile-hero[b-mp2odrfnbj] {
    position: relative;
    display: grid;
    justify-items: center;
    height: 184px;
    background: #ffffff;
}

.hero-band[b-mp2odrfnbj] {
    width: 100%;
    height: 172px;
    border-radius: 0 0 38px 38px;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.22), transparent 22rem),
        linear-gradient(135deg, #11a8c5 0%, #04758a 100%);
}

.avatar-wrap[b-mp2odrfnbj] {
    position: absolute;
    bottom: -80px;
    width: 164px;
    height: 164px;
}

.avatar[b-mp2odrfnbj] {
    width: 164px;
    height: 164px;
    border-radius: 50%;
    border: 8px solid #ffffff;
    object-fit: cover;
    background: #e7eef2;
    box-shadow: 0 20px 34px rgba(15, 43, 54, 0.18);
}

.company-badge[b-mp2odrfnbj] {
    position: absolute;
    right: -4px;
    bottom: 2px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 5px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, #0589a5, #04758a);
    box-shadow: 0 10px 22px rgba(15, 43, 54, 0.24);
}

.company-initials[b-mp2odrfnbj] {
    grid-area: 1 / 1;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.company-logo[b-mp2odrfnbj] {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #ffffff;
}

.location svg[b-mp2odrfnbj],
.role-icon svg[b-mp2odrfnbj],
.contact-icon svg[b-mp2odrfnbj],
.primary-action svg[b-mp2odrfnbj] {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.profile-content[b-mp2odrfnbj] {
    padding: 94px 32px 30px;
}

.identity-copy[b-mp2odrfnbj] {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 8px;
}

.identity-copy h1[b-mp2odrfnbj] {
    margin: 0;
    color: #071728;
    font-size: 32px;
    line-height: 1.12;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.headline[b-mp2odrfnbj] {
    max-width: 360px;
    margin: 0;
    color: #05a0c4;
    font-size: 22px;
    line-height: 1.32;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.location[b-mp2odrfnbj] {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #526176;
    font-size: 15px;
    line-height: 20px;
    font-weight: 800;
}

.location svg[b-mp2odrfnbj] {
    width: 17px;
    height: 17px;
    color: #04758a;
}

.bio[b-mp2odrfnbj] {
    margin: 34px 0 0;
    color: #38475e;
    font-size: 18px;
    line-height: 1.58;
    overflow-wrap: anywhere;
}

.role-card[b-mp2odrfnbj] {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;
    gap: 18px;
    padding: 20px;
    border: 1px solid #d7e3ea;
    border-radius: 16px;
    background: #eef5f8;
}

.role-icon[b-mp2odrfnbj],
.contact-icon[b-mp2odrfnbj] {
    display: grid;
    place-items: center;
    border: 1px solid #e4edf2;
    border-radius: 14px;
    background: #ffffff;
    color: #04758a;
    box-shadow: 0 8px 16px rgba(20, 55, 72, 0.08);
}

.role-icon[b-mp2odrfnbj] {
    width: 64px;
    height: 64px;
}

.role-icon svg[b-mp2odrfnbj] {
    width: 30px;
    height: 30px;
}

.role-copy[b-mp2odrfnbj] {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.section-label[b-mp2odrfnbj] {
    color: #04758a;
    font-size: 13px;
    line-height: 17px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.role-copy strong[b-mp2odrfnbj] {
    color: #071728;
    font-size: 23px;
    line-height: 1.18;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.skills-section[b-mp2odrfnbj] {
    margin-top: 26px;
    display: grid;
    gap: 12px;
}

.skills[b-mp2odrfnbj] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skills span[b-mp2odrfnbj] {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border: 1px solid #b8d8e4;
    border-radius: 999px;
    padding: 6px 16px;
    color: #006782;
    font-size: 15px;
    line-height: 18px;
    font-weight: 900;
    background: #f4fbfd;
}

.contact-section[b-mp2odrfnbj] {
    margin-top: 30px;
    display: grid;
    gap: 18px;
}

.contact-row[b-mp2odrfnbj] {
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: center;
    gap: 16px;
    color: inherit;
    text-decoration: none;
}

.contact-icon[b-mp2odrfnbj] {
    width: 54px;
    height: 54px;
    border-radius: 50%;
}

.contact-copy[b-mp2odrfnbj] {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.contact-copy span[b-mp2odrfnbj] {
    color: #526176;
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
}

.contact-copy strong[b-mp2odrfnbj] {
    color: #071728;
    font-size: 18px;
    line-height: 24px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.socials-section[b-mp2odrfnbj] {
    margin-top: 30px;
    display: grid;
    gap: 12px;
}

.social-links[b-mp2odrfnbj] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-links a[b-mp2odrfnbj] {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid #b8d8e4;
    border-radius: 50%;
    color: #04758a;
    background: #f4fbfd;
    transition: transform 120ms ease, box-shadow 120ms ease;
}

.social-links a:hover[b-mp2odrfnbj],
.social-links a:focus-visible[b-mp2odrfnbj] {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(4, 117, 138, 0.16);
}

.social-links[b-mp2odrfnbj]  .social-brand-icon {
    width: 24px;
    height: 24px;
    font-size: 24px;
    fill: currentColor;
}

.action-bar[b-mp2odrfnbj] {
    display: grid;
    grid-template-columns: 1fr 74px;
    gap: 20px;
    align-items: center;
    padding: 30px 32px 34px;
    background: #e8f0f4;
}

.primary-action[b-mp2odrfnbj],
.share-action[b-mp2odrfnbj] {
    min-height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    font: inherit;
    text-decoration: none;
}

.primary-action[b-mp2odrfnbj] {
    gap: 12px;
    width: 100%;
    border-radius: 16px;
    background: linear-gradient(135deg, #0589a5, #04758a);
    color: #ffffff;
    font-size: 19px;
    line-height: 24px;
    font-weight: 900;
    text-align: center;
    padding: 12px 18px;
    box-shadow: 0 15px 28px rgba(4, 117, 138, 0.24);
}

.share-action[b-mp2odrfnbj] {
    width: 74px;
    border-radius: 16px;
    color: #04758a;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(20, 55, 72, 0.12);
}

.share-action svg[b-mp2odrfnbj] {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.public-card-empty[b-mp2odrfnbj] {
    text-align: center;
    padding: 34px;
}

.public-card-empty p[b-mp2odrfnbj] {
    margin: 10px 0 0;
    color: #667085;
}

.public-card-loading[b-mp2odrfnbj] {
    display: grid;
    justify-items: center;
    gap: 14px;
    padding: 52px 24px;
}

.public-card-avatar-skeleton[b-mp2odrfnbj],
.public-card-line[b-mp2odrfnbj] {
    background: linear-gradient(90deg, #eef2f6, #dfe7ef, #eef2f6);
    border-radius: 999px;
}

.public-card-avatar-skeleton[b-mp2odrfnbj] {
    width: 132px;
    height: 132px;
}

.public-card-line[b-mp2odrfnbj] {
    width: 54%;
    height: 14px;
}

.public-card-line.wide[b-mp2odrfnbj] {
    width: 76%;
    height: 20px;
}

@media (max-width: 420px) {
    .public-card-page[b-mp2odrfnbj] {
        padding: 14px;
        place-items: start center;
    }

    .public-card-shell[b-mp2odrfnbj] {
        border-radius: 28px;
    }

    .profile-hero[b-mp2odrfnbj] {
        height: 174px;
    }

    .hero-band[b-mp2odrfnbj] {
        height: 164px;
        border-radius: 0 0 30px 30px;
    }

    .avatar-wrap[b-mp2odrfnbj],
    .avatar[b-mp2odrfnbj] {
        width: 142px;
        height: 142px;
    }

    .avatar-wrap[b-mp2odrfnbj] {
        bottom: -66px;
    }

    .company-badge[b-mp2odrfnbj] {
        right: -6px;
        width: 50px;
        height: 50px;
    }

    .profile-content[b-mp2odrfnbj] {
        padding: 82px 20px 26px;
    }

    .identity-copy h1[b-mp2odrfnbj] {
        font-size: 29px;
    }

    .headline[b-mp2odrfnbj] {
        font-size: 21px;
    }

    .bio[b-mp2odrfnbj] {
        margin-top: 30px;
        font-size: 18px;
    }

    .role-card[b-mp2odrfnbj] {
        grid-template-columns: 58px 1fr;
        gap: 16px;
        padding: 18px;
    }

    .role-icon[b-mp2odrfnbj] {
        width: 58px;
        height: 58px;
    }

    .role-copy strong[b-mp2odrfnbj] {
        font-size: 22px;
    }

    .action-bar[b-mp2odrfnbj] {
        grid-template-columns: 1fr 72px;
        gap: 16px;
        padding: 30px 20px 34px;
    }

    .primary-action[b-mp2odrfnbj],
    .share-action[b-mp2odrfnbj] {
        min-height: 72px;
    }

    .share-action[b-mp2odrfnbj] {
        width: 72px;
    }
}
/* /Components/Pages/Shared/ImageEditor.razor.rz.scp.css */
/* ============================================================
   ImageEditor.razor.css
   ============================================================ */

.image-editor-upload-area[b-4i0fazyu99] {
    padding: 1rem;
}

[b-4i0fazyu99] .upload-drop-zone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    padding: 2rem;
    border: 2px dashed var(--mud-palette-lines-default);
    border-radius: var(--mud-default-borderradius);
    transition: border-color 0.2s ease, background-color 0.2s ease;
    background: transparent;
}

[b-4i0fazyu99] .upload-drop-zone:hover {
    border-color: var(--mud-palette-primary);
    background-color: var(--mud-palette-primary-hover);
}

/* JS adds this class when a file is dragged over the zone */
[b-4i0fazyu99] .upload-drop-zone.drag-over {
    border-color: var(--mud-palette-primary);
    background-color: var(--mud-palette-primary-hover);
    border-style: solid;
}

/* Invisible label that covers the entire zone for click-to-browse */
[b-4i0fazyu99] .upload-click-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
}

.image-editor-container[b-4i0fazyu99] {
    overflow: hidden;
}

.image-editor-toolbar[b-4i0fazyu99] {
    border-bottom: 1px solid var(--mud-palette-lines-default);
    background: var(--mud-palette-surface);
}

.image-editor-canvas[b-4i0fazyu99] {
    position: relative;
    width: 100%;
    background: #1a1a2e;
    overflow: hidden;
}

.image-editor-canvas img[b-4i0fazyu99] {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

@media (max-width: 600px) {
    [b-4i0fazyu99] .upload-drop-zone {
        min-height: 180px;
        padding: 1rem;
    }

    .image-editor-canvas[b-4i0fazyu99] {
        height: 300px !important;
    }
}
