/* _content/Dating.Admin.BlazorUI/Components/AuthModal.razor.rz.scp.css */
/* _content/Dating.Admin.BlazorUI/Components/Layout/AuthorizedLayout.razor.rz.scp.css */
/* ===== Profile grid layout ===== */
.nd-profile-grid[b-f3nt0cs33w]{
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding-bottom: 28px;
}

/* ===== Admin sidebar ===== */
.nd-admin-side[b-f3nt0cs33w]{
    position: sticky;
    top: 18px;
    align-self: start;
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(17,18,20,.10);
    box-shadow: var(--shadow-2);
    padding: 14px;
    z-index: 100;
}

.nd-admin-side-brand[b-f3nt0cs33w]{
    display:flex;
    align-items:center;
    gap: 10px;
    font-weight: 900;
    color: rgba(17,18,20,.85);
}
.nd-admin-dot[b-f3nt0cs33w]{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--p1), var(--p2));
    box-shadow: 0 10px 24px rgba(20,184,166,.20);
}

.nd-admin-side-name[b-f3nt0cs33w]{
    color: rgba(17,18,20,.85);
}
.nd-admin-side-sep[b-f3nt0cs33w]{
    color: rgba(17,18,20,.20);
    font-weight: 400;
}

.nd-admin-side-nav[b-f3nt0cs33w]{
    margin-top: 14px;
    display:grid;
    gap: 8px;
}

.nd-admin-side-link[b-f3nt0cs33w]{
    width: 100%;
    display:flex;
    align-items:center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 14px;
    border: 1px solid rgba(17,18,20,.10);
    background: rgba(255,255,255,.82);
    color: rgba(17,18,20,.78);
    font-weight: 900;
    font-size: 14px;
    cursor:pointer;
    text-align:left;
    transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.nd-admin-notify[b-f3nt0cs33w]{
    margin-left: auto;
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #ff5f52;
    color: #fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size: 11px;
    font-weight: 900;
    padding: 0 6px;
    box-shadow: 0 6px 14px rgba(255,95,82,.35);
}
.nd-admin-side-link i[b-f3nt0cs33w]{
    width: 18px;
    text-align:center;
    color: rgba(20,184,166,.95);
    font-size: 14px;
}

.nd-admin-side-link:hover[b-f3nt0cs33w]{
    background: rgba(20,184,166,.06);
    border-color: rgba(20,184,166,.18);
}

.nd-admin-side-link.is-active[b-f3nt0cs33w]{
    background: rgba(20,184,166,.10);
    border-color: rgba(20,184,166,.28);
    color: rgba(20,184,166,.95);
    box-shadow: 0 10px 24px rgba(20,184,166,.14);
}

.nd-admin-side-link-ghost[b-f3nt0cs33w]{
    background: rgba(17,18,20,.04);
    color: rgba(17,18,20,.68);
    border-color: rgba(17,18,20,.08);
}
.nd-admin-side-link-ghost i[b-f3nt0cs33w]{ color: rgba(17,18,20,.55); }
.nd-admin-side-link-ghost:hover[b-f3nt0cs33w]{
    background: rgba(232,68,68,.06);
    border-color: rgba(232,68,68,.18);
    color: rgba(232,68,68,.75);
}
.nd-admin-side-link-ghost:hover i[b-f3nt0cs33w]{
    color: rgba(232,68,68,.65);
}

.nd-admin-logout[b-f3nt0cs33w]{
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(17,18,20,.06);
}

/* ===== Role pill in header ===== */
.nd-ph-role-pill[b-f3nt0cs33w]{
    display: none;
    height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
    color: rgba(20,184,166,.95);
    background: rgba(20,184,166,.08);
    border: 1px solid rgba(20,184,166,.18);
    align-items: center;
}

/* ===== Hamburger (hidden on desktop) ===== */
.nd-admin-burger[b-f3nt0cs33w]{
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(17,18,20,.12);
    background: rgba(255,255,255,.85);
    border-radius: 12px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    flex-shrink: 0;
}
.nd-admin-burger span[b-f3nt0cs33w]{
    display: block;
    width: 20px;
    height: 2px;
    background: rgba(17,18,20,.65);
    border-radius: 999px;
    transition: transform .2s ease, opacity .2s ease;
}

/* ===== Mobile overlay ===== */
.nd-admin-overlay[b-f3nt0cs33w]{
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13,16,32,.35);
    backdrop-filter: blur(4px);
    z-index: 99;
    animation: nd-overlay-in-b-f3nt0cs33w .2s ease;
}

@keyframes nd-overlay-in-b-f3nt0cs33w{
    from{ opacity: 0; }
    to{ opacity: 1; }
}

/* ===== Responsive: tablet ===== */
@media (max-width: 980px){
    .nd-profile-grid[b-f3nt0cs33w]{
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 14px;
    }
}

/* ===== Responsive: mobile ===== */
@media (max-width: 760px){
    .nd-admin-burger[b-f3nt0cs33w]{
        display: flex;
    }

    .nd-ph-role-pill[b-f3nt0cs33w]{
        display: inline-flex;
    }

    .nd-profile-grid[b-f3nt0cs33w]{
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Sidebar becomes slide-out drawer */
    .nd-admin-side[b-f3nt0cs33w]{
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(280px, 82vw);
        border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
        z-index: 200;
        transform: translateX(-110%);
        transition: transform .25s ease;
        overflow-y: auto;
        padding: 20px 14px;
        box-shadow: 18px 0 60px rgba(17,18,20,.18);
    }

    .nd-admin-side.is-open[b-f3nt0cs33w]{
        transform: translateX(0);
    }

    .nd-admin-overlay[b-f3nt0cs33w]{
        display: block;
    }
}

/* ===== Small phone ===== */
@media (max-width: 480px){
    .nd-admin-side[b-f3nt0cs33w]{
        width: min(260px, 85vw);
        padding: 16px 12px;
    }

    .nd-admin-side-link[b-f3nt0cs33w]{
        padding: 10px 12px;
        font-size: 13px;
    }
}
/* _content/Dating.Admin.BlazorUI/Components/Layout/FakeWorkspaceLayout.razor.rz.scp.css */
.nd-fake-shell[b-fsp406h2z3] {
    --accent: var(--fake-c1, #6366f1);
    --accent2: var(--fake-c2, #ec4899);
    --surface: rgba(255, 255, 255, .72);
    --surface-solid: #fff;
    --border: rgba(0, 0, 0, .06);
    --border-hover: rgba(0, 0, 0, .10);
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --radius: 14px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.02);
    --shadow-md: 0 4px 16px rgba(0,0,0,.06);

    min-height: 100vh;
    background:
        radial-gradient(ellipse 80% 60% at 20% 0%, color-mix(in srgb, var(--accent) 6%, transparent), transparent),
        radial-gradient(ellipse 60% 50% at 90% 80%, color-mix(in srgb, var(--accent2) 5%, transparent), transparent),
        #f8fafc;
    color: var(--text-primary);
    font-family: "Inter", "Manrope", "Segoe UI", system-ui, sans-serif;
}

.nd-fake-head[b-fsp406h2z3] {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 0;
    border-bottom: 1px solid var(--border);
    background: rgba(248, 250, 252, .82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nd-fake-head-inner[b-fsp406h2z3] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 56px;
}

.nd-fake-head-title[b-fsp406h2z3] {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -.01em;
}

.nd-fake-signout[b-fsp406h2z3] {
    height: 34px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s ease;
}

.nd-fake-signout:hover[b-fsp406h2z3] {
    border-color: var(--border-hover);
    background: var(--surface-solid);
    box-shadow: var(--shadow-sm);
}

.nd-fake-main[b-fsp406h2z3] {
    padding: 20px 0 32px;
}

.nd-fake-grid[b-fsp406h2z3] {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.nd-fake-side[b-fsp406h2z3] {
    position: sticky;
    top: 76px;
}

.nd-fake-body[b-fsp406h2z3] {
    min-height: calc(100vh - 130px);
}

@media (max-width: 980px) {
    .nd-fake-grid[b-fsp406h2z3] {
        grid-template-columns: 200px minmax(0, 1fr);
        gap: 14px;
    }
}

@media (max-width: 760px) {
    .nd-fake-head-inner[b-fsp406h2z3] {
        height: 48px;
    }

    .nd-fake-head-title[b-fsp406h2z3] {
        font-size: 14px;
    }

    .nd-fake-signout[b-fsp406h2z3] {
        height: 30px;
        padding: 0 10px;
        font-size: 12px;
    }

    .nd-fake-main[b-fsp406h2z3] {
        padding: 0 0 24px;
    }

    .nd-fake-grid[b-fsp406h2z3] {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .nd-fake-side[b-fsp406h2z3] {
        position: sticky;
        top: 49px;
        z-index: 30;
        background: rgba(248, 250, 252, .88);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
        padding: 0;
    }

    .nd-fake-body[b-fsp406h2z3] {
        min-height: auto;
        padding: 14px 0;
    }
}

@media (max-width: 480px) {
    .nd-fake-head-inner[b-fsp406h2z3] {
        height: 44px;
    }
}
/* _content/Dating.Admin.BlazorUI/Components/Layout/MainLayout.razor.rz.scp.css */
/* _content/Dating.Admin.BlazorUI/Components/Pages/Admin/ManagerDetails.razor.rz.scp.css */
.nd-back-link[b-027ctao11z]{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-weight: 800;
    color: rgba(17,18,20,.58);
    text-decoration: none;
    font-size: 14px;
    transition: color .16s;
}

.nd-back-link:hover[b-027ctao11z]{
    color: rgba(20,184,166,.96);
}

.nd-admin-link[b-027ctao11z]{
    color: rgba(20,184,166,.96);
    font-weight: 900;
    text-decoration: none;
}

.nd-admin-link:hover[b-027ctao11z]{
    text-decoration: underline;
}

.nd-md-filters[b-027ctao11z]{
    margin: 8px 0 14px;
    display:flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: end;
}

.nd-md-field[b-027ctao11z]{
    display:grid;
    gap: 6px;
    min-width: 170px;
}

.nd-md-field label[b-027ctao11z]{
    font-size: 12px;
    font-weight: 900;
    color: rgba(17,18,20,.62);
}

.nd-md-refresh[b-027ctao11z]{
    width: auto;
    min-width: 130px;
    height: 48px;
}

.nd-as-table-title[b-027ctao11z]{
    margin: 18px 0 10px;
    font-weight: 900;
    color: rgba(17,18,20,.78);
}

@media (max-width: 640px){
    .nd-md-field[b-027ctao11z]{
        min-width: 100%;
    }

    .nd-md-refresh[b-027ctao11z]{
        width: 100%;
    }

    .nd-admin-table[b-027ctao11z]{
        min-width: 500px;
    }
}
/* _content/Dating.Admin.BlazorUI/Components/Pages/Admin/Managers.razor.rz.scp.css */
.nd-admin-row-actions[b-gxcniwo51a]{
    text-align: right;
}

.nd-admin-ghost-small[b-gxcniwo51a]{
    width: auto;
    min-width: 86px;
    height: 38px;
    padding: 0 12px;
}

.nd-am-filters[b-gxcniwo51a]{
    border: 1px solid rgba(17,18,20,.10);
    border-radius: 16px;
    background: rgba(255,255,255,.72);
    padding: 12px;
    min-width: min(360px, 100%);
    display: grid;
    gap: 10px;
}

.nd-am-filters-title[b-gxcniwo51a]{
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(17,18,20,.50);
}

.nd-am-field[b-gxcniwo51a]{
    display: grid;
    gap: 6px;
}

.nd-am-label[b-gxcniwo51a]{
    font-size: 12px;
    font-weight: 800;
    color: rgba(17,18,20,.52);
    padding-left: 2px;
}

@media (max-width: 760px){
    .nd-am-filters[b-gxcniwo51a]{
        min-width: 100%;
    }
}

@media (max-width: 640px){
    .nd-admin-table[b-gxcniwo51a]{
        min-width: 540px;
    }
}
/* _content/Dating.Admin.BlazorUI/Components/Pages/Admin/Payouts.razor.rz.scp.css */
.nd-admin-toolbar[b-sks7zn3nty]{
    display: grid;
    gap: 14px;
    margin-top: 6px;
    margin-bottom: 14px;
}

.nd-ap-filters[b-sks7zn3nty]{
    display:grid;
    grid-template-columns: 1.4fr minmax(200px, .8fr);
    gap: 12px;
    width: 100%;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(17,18,20,.10);
    background: rgba(255,255,255,.72);
}

.nd-aw-field[b-sks7zn3nty]{
    display:grid;
    gap: 6px;
}

.nd-aw-label[b-sks7zn3nty]{
    font-size: 12px;
    font-weight: 900;
    color: rgba(17,18,20,.62);
}

.nd-admin-row-actions[b-sks7zn3nty]{
    min-width: 98px;
}

.nd-admin-table th:last-child[b-sks7zn3nty],
.nd-admin-table td:last-child[b-sks7zn3nty]{
    text-align: right;
}

.nd-ap-actions[b-sks7zn3nty]{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap: 8px;
}

.nd-ap-icon[b-sks7zn3nty]{
    width: 38px;
    height: 38px;
    border-radius: 11px;
    border: 1px solid rgba(17,18,20,.14);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    cursor: pointer;
    background: rgba(255,255,255,.92);
    transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.nd-ap-icon i[b-sks7zn3nty]{
    font-size: 14px;
}

.nd-ap-icon:hover[b-sks7zn3nty]{
    transform: translateY(-1px);
}

.nd-ap-icon-approve[b-sks7zn3nty]{
    color: #1e8a42;
    border-color: rgba(61,186,106,.45);
}

.nd-ap-icon-approve:hover[b-sks7zn3nty]{
    background: rgba(61,186,106,.12);
    box-shadow: 0 8px 18px rgba(61,186,106,.20);
}

.nd-ap-icon-reject[b-sks7zn3nty]{
    color: #b33232;
    border-color: rgba(233,88,88,.45);
}

.nd-ap-icon-reject:hover[b-sks7zn3nty]{
    background: rgba(233,88,88,.11);
    box-shadow: 0 8px 18px rgba(233,88,88,.20);
}

.nd-ap-icon-paid[b-sks7zn3nty]{
    color: #3649c4;
    border-color: rgba(20,184,166,.45);
}

.nd-ap-icon-paid:hover[b-sks7zn3nty]{
    background: rgba(20,184,166,.12);
    box-shadow: 0 8px 18px rgba(20,184,166,.22);
}

.nd-ap-wallet[b-sks7zn3nty]{
    font-family: "Consolas", "Courier New", monospace;
    font-size: 12px;
    color: rgba(17,18,20,.72);
}

.nd-ap-wallet-cell[b-sks7zn3nty]{
    min-width: 220px;
}

.nd-ap-wallet-copy[b-sks7zn3nty]{
    border: 0;
    background: transparent;
    padding: 0;
    text-align: left;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 2px;
    word-break: break-all;
}

.nd-ap-copied[b-sks7zn3nty]{
    margin-left: 8px;
    display:inline-block;
    font-size: 11px;
    font-weight: 900;
    color: #1e8a42;
}

.nd-admin-link[b-sks7zn3nty]{
    color: rgba(20,184,166,.96);
    text-decoration: none;
}

.nd-admin-link:hover[b-sks7zn3nty]{
    text-decoration: underline;
}

.nd-ap-status[b-sks7zn3nty]{
    border: none;
    font-weight: 900;
}

.nd-ap-status-pending[b-sks7zn3nty]{
    background: rgba(255,171,53,.18);
    color: #9c5e00;
}

.nd-ap-status-approved[b-sks7zn3nty]{
    background: rgba(76,186,115,.18);
    color: #236d3e;
}

.nd-ap-status-rejected[b-sks7zn3nty]{
    background: rgba(232,86,86,.18);
    color: #972d2d;
}

.nd-ap-status-paid[b-sks7zn3nty]{
    background: rgba(20,184,166,.16);
    color: #3649c4;
}

@media (max-width: 920px){
    .nd-ap-filters[b-sks7zn3nty]{
        grid-template-columns: 1fr;
    }

    .nd-ap-actions[b-sks7zn3nty]{
        justify-content:flex-start;
    }

    .nd-admin-table[b-sks7zn3nty]{
        min-width: 920px;
    }
}
/* _content/Dating.Admin.BlazorUI/Components/Pages/Admin/Stats.razor.rz.scp.css */
.nd-ads-root[b-88qpmvg1hb]{
    background:
        radial-gradient(1200px 420px at 110% -10%, rgba(255,108,79,.16), transparent 60%),
        radial-gradient(1000px 340px at -10% 0%, rgba(68,143,255,.18), transparent 56%),
        rgba(255,255,255,.84);
}

.nd-ads-kpi-grid[b-88qpmvg1hb]{
    display:grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.nd-ads-kpi[b-88qpmvg1hb]{
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.5);
    color: #0d131f;
    box-shadow: 0 14px 34px rgba(14,24,42,.12);
}

.nd-ads-kpi-label[b-88qpmvg1hb]{
    font-size: 12px;
    font-weight: 900;
    opacity: .8;
}

.nd-ads-kpi-value[b-88qpmvg1hb]{
    margin-top: 8px;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
}

.nd-ads-kpi-meta[b-88qpmvg1hb]{
    margin-top: 6px;
    font-size: 12px;
    font-weight: 700;
    opacity: .82;
}

.nd-ads-kpi-blue[b-88qpmvg1hb]{ background: linear-gradient(140deg, #caf4ff, #9cd8ff); }
.nd-ads-kpi-amber[b-88qpmvg1hb]{ background: linear-gradient(140deg, #ffeec7, #ffd089); }
.nd-ads-kpi-violet[b-88qpmvg1hb]{ background: linear-gradient(140deg, #e9dcff, #bdb0ff); }
.nd-ads-kpi-green[b-88qpmvg1hb]{ background: linear-gradient(140deg, #cffbd4, #a6f4b0); }
.nd-ads-kpi-red[b-88qpmvg1hb]{ background: linear-gradient(140deg, #ffd9d9, #ffb2b2); }
.nd-ads-kpi-dark[b-88qpmvg1hb]{ background: linear-gradient(140deg, #d8e1f2, #b7c8e8); }

.nd-ads-panels[b-88qpmvg1hb]{
    display:grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 12px;
    margin-top: 18px;
}

.nd-ads-panel[b-88qpmvg1hb]{
    border-radius: 16px;
    border: 1px solid rgba(17,18,20,.10);
    background: rgba(255,255,255,.74);
    padding: 14px;
}

.nd-ads-panel-head[b-88qpmvg1hb]{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 8px;
}

.nd-ads-panel-head h3[b-88qpmvg1hb]{
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    color: rgba(17,18,20,.86);
}

.nd-ads-growth[b-88qpmvg1hb]{
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.nd-ads-growth.is-positive[b-88qpmvg1hb]{ background: rgba(66,200,108,.16); color: #1f8b42; }
.nd-ads-growth.is-negative[b-88qpmvg1hb]{ background: rgba(238,89,89,.14); color: #b03a3a; }

.nd-ads-chart-wrap[b-88qpmvg1hb]{
    margin-top: 10px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(30,40,68,.08), rgba(30,40,68,.02));
    padding: 8px;
}

.nd-ads-chart[b-88qpmvg1hb]{
    width: 100%;
    height: 210px;
}

.nd-ads-line[b-88qpmvg1hb]{
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nd-ads-line-new[b-88qpmvg1hb]{ stroke: #1f8bff; }
.nd-ads-line-active[b-88qpmvg1hb]{ stroke: #16b66d; }

.nd-ads-chart-legend[b-88qpmvg1hb]{
    margin-top: 8px;
    display:flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12px;
    font-weight: 800;
    color: rgba(17,18,20,.72);
}

.nd-ads-chart-legend span[b-88qpmvg1hb]{
    display:inline-flex;
    align-items:center;
    gap: 6px;
}

.nd-ads-dot[b-88qpmvg1hb]{
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

.nd-ads-dot-new[b-88qpmvg1hb]{ background: #1f8bff; }
.nd-ads-dot-active[b-88qpmvg1hb]{ background: #16b66d; }

.nd-ads-manager-bars[b-88qpmvg1hb]{
    margin-top: 10px;
    display:grid;
    gap: 10px;
}

.nd-ads-manager-row[b-88qpmvg1hb]{
    display:grid;
    grid-template-columns: minmax(120px, 1fr) minmax(0, 3fr) auto;
    align-items:center;
    gap: 8px;
}

.nd-ads-manager-name[b-88qpmvg1hb]{
    font-size: 13px;
    font-weight: 800;
    color: rgba(17,18,20,.8);
    overflow:hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nd-ads-manager-bar[b-88qpmvg1hb]{
    height: 10px;
    border-radius: 999px;
    background: rgba(17,18,20,.08);
    overflow:hidden;
}

.nd-ads-manager-bar-fill[b-88qpmvg1hb]{
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #14b8a6, #ff7b61);
}

.nd-ads-manager-val[b-88qpmvg1hb]{
    min-width: 28px;
    text-align:right;
    font-size: 12px;
    font-weight: 900;
    color: rgba(17,18,20,.7);
}

.nd-as-table-title[b-88qpmvg1hb]{
    margin: 22px 0 12px;
    font-weight: 900;
    color: rgba(17,18,20,.78);
}

.nd-ads-root .nd-admin-table-wrap[b-88qpmvg1hb]{
    margin-top: 6px;
}

@media (max-width: 1360px){
    .nd-ads-kpi-grid[b-88qpmvg1hb]{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1100px){
    .nd-ads-kpi-grid[b-88qpmvg1hb]{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px){
    .nd-ads-panels[b-88qpmvg1hb]{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px){
    .nd-ads-chart[b-88qpmvg1hb]{
        height: 170px;
    }
}

@media (max-width: 520px){
    .nd-ads-kpi-grid[b-88qpmvg1hb]{
        grid-template-columns: 1fr;
    }
}
/* _content/Dating.Admin.BlazorUI/Components/Pages/Admin/UserDetails.razor.rz.scp.css */
.nd-back-link[b-65z6ehrjfc]{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-weight: 800;
    color: rgba(17,18,20,.58);
    text-decoration: none;
    font-size: 14px;
    transition: color .16s;
}

.nd-back-link:hover[b-65z6ehrjfc]{
    color: rgba(20,184,166,.96);
}

.nd-ud-head-actions[b-65z6ehrjfc] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.nd-ud-grid[b-65z6ehrjfc] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.nd-ud-card[b-65z6ehrjfc] {
    border: 1px solid rgba(17,18,20,.10);
    border-radius: 16px;
    background: rgba(255,255,255,.72);
    padding: 12px;
}

.nd-ud-card h3[b-65z6ehrjfc] {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 900;
}

.nd-ud-row[b-65z6ehrjfc] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px dashed rgba(17,18,20,.08);
    padding: 8px 0;
    font-size: 13px;
}

.nd-ud-row:last-child[b-65z6ehrjfc] {
    border-bottom: none;
}

.nd-ud-mono[b-65z6ehrjfc] {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    word-break: break-all;
    text-align: right;
}

.nd-ud-about[b-65z6ehrjfc] {
    display: grid;
    gap: 6px;
    margin-top: 10px;
}

.nd-ud-about label[b-65z6ehrjfc] {
    font-size: 12px;
    font-weight: 800;
    color: rgba(17,18,20,.52);
}

.nd-ud-about p[b-65z6ehrjfc] {
    margin: 0;
    font-size: 13px;
    color: rgba(17,18,20,.86);
}

.nd-ud-payments[b-65z6ehrjfc] {
    margin-top: 12px;
}

.nd-ud-textarea[b-65z6ehrjfc] {
    min-height: 96px;
    resize: vertical;
}

@media (max-width: 960px) {
    .nd-ud-grid[b-65z6ehrjfc] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px){
    .nd-ud-row[b-65z6ehrjfc]{
        flex-direction: column;
        gap: 4px;
    }

    .nd-ud-mono[b-65z6ehrjfc]{
        text-align: left;
    }

    .nd-ud-card[b-65z6ehrjfc]{
        padding: 10px;
    }

    .nd-admin-table[b-65z6ehrjfc]{
        min-width: 600px;
    }
}
/* _content/Dating.Admin.BlazorUI/Components/Pages/Admin/Users.razor.rz.scp.css */
.nd-au-filters[b-ipggoekjo1] {
    border: 1px solid rgba(17,18,20,.10);
    border-radius: 16px;
    background: rgba(255,255,255,.72);
    padding: 12px;
    display: grid;
    gap: 10px;
    width: min(980px, 100%);
}

.nd-au-filters-title[b-ipggoekjo1] {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(17,18,20,.50);
}

.nd-au-grid[b-ipggoekjo1] {
    display: grid;
    grid-template-columns: minmax(240px, 1.5fr) repeat(3, minmax(160px, 1fr));
    gap: 10px;
    align-items: end;
}

.nd-au-field[b-ipggoekjo1] {
    display: grid;
    gap: 6px;
}

.nd-au-field label[b-ipggoekjo1] {
    font-size: 12px;
    font-weight: 800;
    color: rgba(17,18,20,.52);
    padding-left: 2px;
}

.nd-au-actions[b-ipggoekjo1] {
    display: flex;
    gap: 8px;
}

.nd-au-pagination[b-ipggoekjo1] {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.nd-au-textarea[b-ipggoekjo1] {
    min-height: 96px;
    resize: vertical;
}

@media (max-width: 1024px) {
    .nd-au-grid[b-ipggoekjo1] {
        grid-template-columns: 1fr 1fr;
    }

    .nd-au-search[b-ipggoekjo1] {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .nd-au-grid[b-ipggoekjo1] {
        grid-template-columns: 1fr;
    }

    .nd-admin-table[b-ipggoekjo1]{
        min-width: 680px;
    }

    .nd-au-pagination[b-ipggoekjo1]{
        justify-content: center;
        flex-wrap: wrap;
    }

    .nd-au-pagination span[b-ipggoekjo1]{
        font-size: 13px;
    }
}
/* _content/Dating.Admin.BlazorUI/Components/Pages/Admin/WorkerDetails.razor.rz.scp.css */
.nd-back-link[b-ojmzznbmyg]{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-weight: 800;
    color: rgba(17,18,20,.58);
    text-decoration: none;
    font-size: 14px;
    transition: color .16s;
}

.nd-back-link:hover[b-ojmzznbmyg]{
    color: rgba(20,184,166,.96);
}

.nd-admin-link[b-ojmzznbmyg]{
    color: rgba(20,184,166,.96);
    font-weight: 900;
    text-decoration: none;
}

.nd-admin-link:hover[b-ojmzznbmyg]{
    text-decoration: underline;
}

.nd-wd-card[b-ojmzznbmyg]{
    margin-top: 14px;
    border: 1px solid rgba(17,18,20,.10);
    border-radius: 16px;
    background: rgba(255,255,255,.75);
    padding: 12px;
    display:grid;
    gap: 10px;
}

.nd-wd-row[b-ojmzznbmyg]{
    display:grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 10px;
    align-items:start;
}

.nd-wd-key[b-ojmzznbmyg]{
    font-size: 12px;
    font-weight: 900;
    color: rgba(17,18,20,.55);
}

.nd-wd-mono[b-ojmzznbmyg]{
    font-family: "Consolas", "Courier New", monospace;
    word-break: break-all;
}

@media (max-width: 640px){
    .nd-wd-row[b-ojmzznbmyg]{
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .nd-admin-table[b-ojmzznbmyg]{
        min-width: 680px;
    }
}
/* _content/Dating.Admin.BlazorUI/Components/Pages/Admin/Workers.razor.rz.scp.css */
.nd-aw-filters[b-71fjuf7izg]{
    border: 1px solid rgba(17,18,20,.10);
    border-radius: 16px;
    background: rgba(255,255,255,.72);
    padding: 12px;
    display: grid;
    gap: 10px;
    width: min(760px, 100%);
}

.nd-aw-filters-title[b-71fjuf7izg]{
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(17,18,20,.50);
}

.nd-aw-filters-grid[b-71fjuf7izg]{
    display: grid;
    grid-template-columns: minmax(260px, 1.5fr) minmax(180px, 1fr) minmax(180px, 1fr);
    gap: 10px;
    align-items: end;
}

.nd-aw-field[b-71fjuf7izg]{
    display: grid;
    gap: 6px;
}

.nd-aw-label[b-71fjuf7izg]{
    font-size: 12px;
    font-weight: 800;
    color: rgba(17,18,20,.52);
    padding-left: 2px;
}

.nd-aw-filter[b-71fjuf7izg]{
    min-width: 0;
    height: 48px;
}

.nd-admin-row-actions[b-71fjuf7izg]{
    text-align: right;
}

.nd-admin-ghost-small[b-71fjuf7izg]{
    width: auto;
    min-width: 86px;
    height: 38px;
    padding: 0 12px;
}

@media (max-width: 900px){
    .nd-aw-filters-grid[b-71fjuf7izg]{
        grid-template-columns: 1fr 1fr;
    }

    .nd-aw-search[b-71fjuf7izg]{
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px){
    .nd-aw-filters-grid[b-71fjuf7izg]{
        grid-template-columns: 1fr;
    }

    .nd-admin-table[b-71fjuf7izg]{
        min-width: 700px;
    }
}
/* _content/Dating.Admin.BlazorUI/Components/Pages/FakeUser/FakeAboutMe.razor.rz.scp.css */
.nd-pm-head[b-ym01q19zfb] {
    padding: 4px 0 8px;
}

.nd-pm-title[b-ym01q19zfb] {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -.01em;
}

.nd-pm-sub[b-ym01q19zfb] {
    margin-top: 4px;
    font-size: 13px;
    color: #94a3b8;
}

.nd-profile-loading[b-ym01q19zfb] {
    display: grid;
    place-items: center;
    gap: 12px;
    padding: 48px 0;
}

.nd-profile-loading-text[b-ym01q19zfb] {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #94a3b8;
}

.nd-spinner[b-ym01q19zfb] {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 3px solid rgba(0,0,0,.06);
    border-top-color: var(--fake-c1, #6366f1);
    animation: ndSpinLocal-b-ym01q19zfb .7s linear infinite;
    box-shadow: none;
}

@keyframes ndSpinLocal-b-ym01q19zfb { to { transform: rotate(360deg); } }

.nd-fme-wrap[b-ym01q19zfb] {
    display: grid;
    gap: 16px;
}

.nd-fme-card[b-ym01q19zfb] {
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 16px;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    padding: 20px;
}

.nd-fme-title[b-ym01q19zfb] {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -.01em;
}

.nd-fme-summary[b-ym01q19zfb] {
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 12px;
    background: rgba(248, 250, 252, .6);
    padding: 14px;
    line-height: 1.65;
    color: #334155;
    font-size: 14px;
}

.nd-fme-grid[b-ym01q19zfb] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.nd-fme-row[b-ym01q19zfb] {
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    padding: 10px 12px;
    transition: background .12s ease;
}

.nd-fme-row:hover[b-ym01q19zfb] {
    background: rgba(255, 255, 255, .8);
}

.nd-fme-row-k[b-ym01q19zfb] {
    font-size: 10.5px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 600;
}

.nd-fme-row-v[b-ym01q19zfb] {
    margin-top: 4px;
    font-size: 14px;
    color: #1e293b;
    font-weight: 600;
    overflow-wrap: anywhere;
    line-height: 1.4;
}

.nd-fme-profile-top[b-ym01q19zfb] {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.nd-fme-avatar[b-ym01q19zfb] {
    width: 100px;
    height: 100px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .06);
    background: #f1f5f9;
    display: grid;
    place-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.nd-fme-avatar img[b-ym01q19zfb] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nd-fme-avatar-ph[b-ym01q19zfb] {
    font-size: 28px;
    color: #cbd5e1;
}

.nd-fme-photos-wrap[b-ym01q19zfb] {
    margin-top: 14px;
}

.nd-fme-photos-label[b-ym01q19zfb] {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nd-fme-photos-count[b-ym01q19zfb] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 6px;
    background: rgba(0, 0, 0, .05);
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
}

.nd-fme-photos[b-ym01q19zfb] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
}

.nd-fme-photo[b-ym01q19zfb] {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f1f5f9;
    object-fit: cover;
    transition: box-shadow .15s ease;
}

.nd-fme-photo:hover[b-ym01q19zfb] {
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

@media (max-width: 920px) {
    .nd-fme-grid[b-ym01q19zfb] {
        grid-template-columns: 1fr;
    }

    .nd-fme-profile-top[b-ym01q19zfb] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .nd-fme-card[b-ym01q19zfb] {
        padding: 14px;
        border-radius: 12px;
    }

    .nd-fme-title[b-ym01q19zfb] {
        font-size: 15px;
    }

    .nd-fme-summary[b-ym01q19zfb] {
        padding: 10px;
        font-size: 13px;
    }

    .nd-fme-avatar[b-ym01q19zfb] {
        width: 80px;
        height: 80px;
        border-radius: 16px;
    }

    .nd-fme-photos[b-ym01q19zfb] {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
}

@media (max-width: 480px) {
    .nd-fme-card[b-ym01q19zfb] {
        padding: 10px;
    }

    .nd-fme-row[b-ym01q19zfb] {
        padding: 8px 10px;
    }
}
/* _content/Dating.Admin.BlazorUI/Components/Pages/FakeUser/FakeMatches.razor.rz.scp.css */
.nd-pm-head[b-ai9wmxi57h] {
    padding: 0 0 4px;
}

.nd-pm-title[b-ai9wmxi57h] {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -.01em;
}

.nd-pm-sub[b-ai9wmxi57h] {
    margin-top: 4px;
    font-size: 13px;
    color: #94a3b8;
}

.nd-profile-loading[b-ai9wmxi57h] {
    display: grid;
    place-items: center;
    gap: 12px;
    padding: 48px 0;
}

.nd-profile-loading-text[b-ai9wmxi57h] {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #94a3b8;
}

.nd-spinner[b-ai9wmxi57h] {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 3px solid rgba(0,0,0,.06);
    border-top-color: var(--fake-c1, #6366f1);
    animation: ndSpinLocal-b-ai9wmxi57h .7s linear infinite;
    box-shadow: none;
}

@keyframes ndSpinLocal-b-ai9wmxi57h { to { transform: rotate(360deg); } }

.nd-fm-wrap[b-ai9wmxi57h] {
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 16px;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    padding: 20px;
}

.nd-fm-stats[b-ai9wmxi57h] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 12px 0 16px;
}

.nd-fm-stat[b-ai9wmxi57h] {
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 12px;
    background: rgba(255, 255, 255, .6);
    padding: 14px;
    transition: box-shadow .15s ease;
}

.nd-fm-stat:hover[b-ai9wmxi57h] {
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.nd-fm-stat-val[b-ai9wmxi57h] {
    font-size: 26px;
    line-height: 1;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -.02em;
}

.nd-fm-stat-lbl[b-ai9wmxi57h] {
    margin-top: 6px;
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 600;
}

.nd-mtabs[b-ai9wmxi57h] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    background: rgba(0, 0, 0, .03);
    border-radius: 10px;
    padding: 4px;
}

.nd-mtab[b-ai9wmxi57h] {
    min-height: 36px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 12.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all .15s ease;
}

.nd-mtab:hover[b-ai9wmxi57h] {
    color: #475569;
}

.nd-mtab.is-active[b-ai9wmxi57h] {
    background: #fff;
    color: #0f172a;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.nd-mtab-badge[b-ai9wmxi57h] {
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--fake-c1, #6366f1);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nd-matches-list[b-ai9wmxi57h] {
    display: grid;
    gap: 6px;
    margin-top: 12px;
}

.nd-fm-card[b-ai9wmxi57h] {
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 12px;
    background: rgba(255, 255, 255, .6);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all .12s ease;
}

.nd-fm-card:hover[b-ai9wmxi57h] {
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.nd-mcard-ava[b-ai9wmxi57h] {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    overflow: hidden;
    background: #f1f5f9;
    flex: 0 0 46px;
}

.nd-mcard-ava img[b-ai9wmxi57h] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nd-mcard-ava-ph[b-ai9wmxi57h] {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #cbd5e1;
}

.nd-mcard-body[b-ai9wmxi57h] {
    min-width: 0;
    flex: 1;
}

.nd-mcard-name[b-ai9wmxi57h] {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.nd-mcard-sub[b-ai9wmxi57h] {
    margin-top: 2px;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

.nd-mcard-ic[b-ai9wmxi57h] {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: #e2e8f0;
    display: grid;
    place-items: center;
    font-size: 14px;
}

.nd-empty[b-ai9wmxi57h] {
    border: 1px dashed rgba(0, 0, 0, .1);
    border-radius: 14px;
    padding: 32px 14px;
    text-align: center;
    background: rgba(255, 255, 255, .4);
}

.nd-empty-title[b-ai9wmxi57h] {
    font-size: 15px;
    font-weight: 700;
    color: #475569;
}

.nd-empty-sub[b-ai9wmxi57h] {
    margin-top: 6px;
    font-size: 13px;
    color: #94a3b8;
}

.nd-fm-more-wrap[b-ai9wmxi57h] {
    display: flex;
    justify-content: center;
    padding-top: 12px;
}

.nd-fm-more[b-ai9wmxi57h] {
    min-width: 140px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: rgba(255, 255, 255, .8);
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .12s ease;
}

.nd-fm-more:hover[b-ai9wmxi57h] {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.nd-spinner-sm[b-ai9wmxi57h] {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(0,0,0,.1);
    border-top-color: #64748b;
    border-radius: 999px;
    animation: ndSpin-b-ai9wmxi57h .7s linear infinite;
    vertical-align: middle;
}

@keyframes ndSpin-b-ai9wmxi57h { to { transform: rotate(360deg); } }

/* Send message button on received like cards */
.nd-fm-sendbtn[b-ai9wmxi57h] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: rgba(255, 255, 255, .9);
    color: var(--fake-c1, #6366f1);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all .15s ease;
}
.nd-fm-sendbtn:hover[b-ai9wmxi57h] {
    background: var(--fake-c1, #6366f1);
    color: #fff;
    border-color: var(--fake-c1, #6366f1);
    box-shadow: 0 2px 8px rgba(99, 102, 241, .25);
}
.nd-fm-sendbtn i[b-ai9wmxi57h] { font-size: 11px; }

/* Overlay */
.nd-fm-overlay[b-ai9wmxi57h] {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, .35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 16px;
}

/* Popup card */
.nd-fm-popup[b-ai9wmxi57h] {
    width: min(460px, 100%);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
    overflow: hidden;
    animation: ndFmPopIn-b-ai9wmxi57h .2s ease;
}
@keyframes ndFmPopIn-b-ai9wmxi57h {
    from { opacity: 0; transform: scale(.96) translateY(8px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.nd-fm-popup-head[b-ai9wmxi57h] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}
.nd-fm-popup-title[b-ai9wmxi57h] {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}
.nd-fm-popup-close[b-ai9wmxi57h] {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: rgba(0, 0, 0, .04);
    color: #64748b;
    font-size: 14px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all .12s ease;
}
.nd-fm-popup-close:hover[b-ai9wmxi57h] {
    background: rgba(0, 0, 0, .08);
    color: #0f172a;
}

.nd-fm-popup-body[b-ai9wmxi57h] {
    padding: 16px 20px;
}

.nd-fm-popup-input-wrap[b-ai9wmxi57h] {
    position: relative;
}
.nd-fm-popup-input[b-ai9wmxi57h] {
    width: 100%;
    min-height: 80px;
    padding: 12px 44px 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .1);
    background: rgba(0, 0, 0, .02);
    font-family: inherit;
    font-size: 14px;
    color: #0f172a;
    resize: vertical;
    outline: none;
    transition: border-color .15s ease;
}
.nd-fm-popup-input:focus[b-ai9wmxi57h] {
    border-color: var(--fake-c1, #6366f1);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, .1);
}
.nd-fm-popup-input:disabled[b-ai9wmxi57h] {
    opacity: .6;
}

.nd-fm-popup-emoji-toggle[b-ai9wmxi57h] {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #94a3b8;
    font-size: 16px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all .12s ease;
}
.nd-fm-popup-emoji-toggle:hover[b-ai9wmxi57h] {
    background: rgba(0, 0, 0, .05);
    color: #64748b;
}

/* Emoji grid */
.nd-fm-emoji-grid[b-ai9wmxi57h] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 0, 0, .06);
}
.nd-fm-emoji-btn[b-ai9wmxi57h] {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .1s ease;
}
.nd-fm-emoji-btn:hover[b-ai9wmxi57h] {
    background: rgba(0, 0, 0, .06);
}

.nd-fm-popup-error[b-ai9wmxi57h] {
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(239, 68, 68, .08);
    color: #dc2626;
    font-size: 13px;
    font-weight: 500;
}

.nd-fm-popup-success[b-ai9wmxi57h] {
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(34, 197, 94, .08);
    color: #16a34a;
    font-size: 13px;
    font-weight: 600;
}

.nd-fm-popup-foot[b-ai9wmxi57h] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 12px 20px;
    border-top: 1px solid rgba(0, 0, 0, .06);
}

.nd-fm-popup-cancel[b-ai9wmxi57h] {
    height: 36px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .1);
    background: #fff;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .12s ease;
}
.nd-fm-popup-cancel:hover[b-ai9wmxi57h] {
    background: rgba(0, 0, 0, .03);
}

.nd-fm-popup-send[b-ai9wmxi57h] {
    height: 36px;
    padding: 0 16px;
    border-radius: 8px;
    border: none;
    background: var(--fake-c1, #6366f1);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .15s ease;
}
.nd-fm-popup-send:hover:not(:disabled)[b-ai9wmxi57h] {
    filter: brightness(1.1);
    box-shadow: 0 2px 8px rgba(99, 102, 241, .3);
}
.nd-fm-popup-send:disabled[b-ai9wmxi57h] {
    opacity: .5;
    cursor: not-allowed;
}

@media (max-width: 920px) {
    .nd-fm-wrap[b-ai9wmxi57h] { padding: 14px; }

    .nd-fm-stats[b-ai9wmxi57h],
    .nd-mtabs[b-ai9wmxi57h] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .nd-fm-sendbtn span[b-ai9wmxi57h] { display: none; }
    .nd-fm-sendbtn[b-ai9wmxi57h] { padding: 0 8px; }

    .nd-fm-popup[b-ai9wmxi57h] { width: 100%; }

    .nd-fm-wrap[b-ai9wmxi57h] {
        padding: 12px;
        border-radius: 12px;
    }

    .nd-fm-stat[b-ai9wmxi57h] {
        padding: 10px;
        border-radius: 10px;
    }

    .nd-fm-stat-val[b-ai9wmxi57h] {
        font-size: 22px;
    }

    .nd-fm-card[b-ai9wmxi57h] {
        padding: 8px 10px;
        gap: 10px;
        border-radius: 10px;
    }

    .nd-mcard-ava[b-ai9wmxi57h] {
        width: 40px;
        height: 40px;
        border-radius: 11px;
        flex: 0 0 40px;
    }

    .nd-mcard-name[b-ai9wmxi57h] {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .nd-fm-wrap[b-ai9wmxi57h] {
        padding: 10px;
    }
}
/* _content/Dating.Admin.BlazorUI/Components/Pages/FakeUser/FakeMessages.razor.rz.scp.css */
.nd-msg[b-fdvw8pojml] {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 16px;
    height: calc(100vh - 140px);
    min-height: 600px;
}

.nd-msg-left[b-fdvw8pojml],
.nd-msg-right[b-fdvw8pojml] {
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 16px;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    min-height: 0;
    overflow: hidden;
}

.nd-msg-left[b-fdvw8pojml] {
    display: flex;
    flex-direction: column;
}

.nd-msg-right[b-fdvw8pojml] {
    display: flex;
    flex-direction: column;
}

/* --- Filters --- */
.nd-msg-filters[b-fdvw8pojml] {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.nd-ios[b-fdvw8pojml] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nd-ios input[b-fdvw8pojml] {
    appearance: none;
    width: 34px;
    height: 20px;
    border-radius: 999px;
    border: none;
    background: #e2e8f0;
    position: relative;
    cursor: pointer;
    transition: background .15s ease;
}

.nd-ios input[b-fdvw8pojml]::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
    transition: transform .15s ease;
}

.nd-ios input:checked[b-fdvw8pojml] {
    background: var(--fake-c1, #6366f1);
}

.nd-ios input:checked[b-fdvw8pojml]::after {
    transform: translateX(14px);
}

.nd-ios-label[b-fdvw8pojml] {
    font-size: 12.5px;
    font-weight: 600;
    color: #64748b;
}

.nd-ios-track[b-fdvw8pojml] { display: none; }

/* --- Chat list --- */
.nd-msg-list[b-fdvw8pojml] {
    overflow: auto;
    flex: 1;
    padding: 6px;
}

.nd-msg-item[b-fdvw8pojml] {
    width: 100%;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    padding: 10px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 10px;
    text-align: left;
    cursor: pointer;
    transition: background .12s ease;
}

.nd-msg-item:hover[b-fdvw8pojml] {
    background: rgba(0, 0, 0, .03);
}

.nd-msg-item.is-active[b-fdvw8pojml] {
    background: color-mix(in srgb, var(--fake-c1, #6366f1) 8%, transparent);
    border-color: color-mix(in srgb, var(--fake-c1, #6366f1) 15%, transparent);
}

.nd-msg-ava[b-fdvw8pojml] {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    overflow: visible;
    background: #f1f5f9;
}

.nd-msg-ava img[b-fdvw8pojml] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
}

.nd-msg-unread[b-fdvw8pojml] {
    position: absolute;
    top: -3px;
    right: -3px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    background: var(--fake-c1, #6366f1);
    display: grid;
    place-items: center;
    border: 2px solid #fff;
}

.nd-msg-meta[b-fdvw8pojml] { min-width: 0; }

.nd-msg-top[b-fdvw8pojml] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}

.nd-msg-title[b-fdvw8pojml] {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nd-msg-time[b-fdvw8pojml] {
    font-size: 11px;
    color: #94a3b8;
    white-space: nowrap;
    font-weight: 500;
}

.nd-msg-snippet[b-fdvw8pojml] {
    margin-top: 3px;
    font-size: 12.5px;
    color: #64748b;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.nd-msg-snippet-tr[b-fdvw8pojml] {
    margin-top: 2px;
    font-size: 11.5px;
    font-style: italic;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- Status pills --- */
.nd-msg-statuses[b-fdvw8pojml],
.nd-msg-monetization[b-fdvw8pojml],
.nd-msg-head-monetization[b-fdvw8pojml] {
    margin-top: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.nd-msg-status[b-fdvw8pojml],
.nd-msg-pill[b-fdvw8pojml] {
    display: inline-flex;
    align-items: center;
    height: 20px;
    border-radius: 6px;
    border: none;
    color: #64748b;
    font-size: 10.5px;
    font-weight: 600;
    padding: 0 7px;
    background: rgba(0, 0, 0, .04);
}

.nd-msg-status.is-online[b-fdvw8pojml] {
    color: #059669;
    background: rgba(5, 150, 105, .08);
}

.nd-msg-status.is-unread[b-fdvw8pojml] {
    color: var(--fake-c1, #6366f1);
    background: color-mix(in srgb, var(--fake-c1, #6366f1) 8%, transparent);
}

.nd-msg-status.is-paid[b-fdvw8pojml] {
    color: #7c3aed;
    background: rgba(124, 58, 237, .08);
}

.nd-msg-status.is-retention[b-fdvw8pojml] {
    color: #d97706;
    background: rgba(217, 119, 6, .08);
}

.nd-msg-pill[b-fdvw8pojml],
.nd-msg-pill.is-token[b-fdvw8pojml] {
    color: #7c3aed;
    background: rgba(124, 58, 237, .08);
}

/* --- Chat header --- */
.nd-msg-head[b-fdvw8pojml] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.nd-msg-back[b-fdvw8pojml] {
    display: none;
    align-items: center;
    gap: 6px;
    height: 32px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: rgba(255, 255, 255, .8);
    color: #475569;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all .12s ease;
}

.nd-msg-back:hover[b-fdvw8pojml] {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.nd-msg-head-profile[b-fdvw8pojml] {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    border-radius: 10px;
    padding: 4px 8px;
    margin: -4px -8px;
    transition: background .15s;
}
.nd-msg-head-profile:hover[b-fdvw8pojml] {
    background: rgba(91,108,255,.06);
}

.nd-msg-head-ava[b-fdvw8pojml] {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    overflow: hidden;
    background: #f1f5f9;
    flex-shrink: 0;
}

.nd-msg-head-ava img[b-fdvw8pojml] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nd-msg-head-txt[b-fdvw8pojml] {
    min-width: 0;
}

.nd-msg-head-title[b-fdvw8pojml] {
    font-weight: 700;
    font-size: 14px;
    color: #0f172a;
}

.nd-msg-head-sub[b-fdvw8pojml] {
    margin-top: 1px;
    font-size: 12px;
    color: #059669;
    font-weight: 600;
}

/* --- Thread --- */
.nd-msg-thread[b-fdvw8pojml] {
    flex: 1;
    overflow: auto;
    padding: 16px;
    background: rgba(248, 250, 252, .5);
}

.nd-msg-day[b-fdvw8pojml] {
    width: fit-content;
    margin: 12px auto;
    padding: 4px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .8);
    border: 1px solid rgba(0, 0, 0, .06);
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
}

.nd-bubble[b-fdvw8pojml] {
    display: flex;
    margin: 6px 0;
}

.nd-bubble.is-me[b-fdvw8pojml] { justify-content: flex-end; }
.nd-bubble.is-them[b-fdvw8pojml] { justify-content: flex-start; }

.nd-bubble-inner[b-fdvw8pojml] {
    max-width: min(78%, 520px);
    border-radius: 16px;
    padding: 10px 14px;
    border: none;
}

.nd-bubble.is-them .nd-bubble-inner[b-fdvw8pojml] {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
}

.nd-bubble.is-me .nd-bubble-inner[b-fdvw8pojml] {
    background: color-mix(in srgb, var(--fake-c1, #6366f1) 10%, white);
    border: 1px solid color-mix(in srgb, var(--fake-c1, #6366f1) 15%, transparent);
}

.nd-bubble-text[b-fdvw8pojml] {
    white-space: pre-wrap;
    color: #1e293b;
    font-size: 14px;
    line-height: 1.5;
}

.nd-bubble-photo[b-fdvw8pojml] {
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
}

.nd-bubble-photo img[b-fdvw8pojml] {
    width: 220px;
    max-width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .06);
}

.nd-bubble-translation[b-fdvw8pojml] {
    margin-top: 6px;
    font-size: 12.5px;
    font-style: italic;
    color: #64748b;
    white-space: pre-wrap;
    border-top: 1px dashed rgba(0, 0, 0, .08);
    padding-top: 5px;
    opacity: .75;
}

.nd-bubble-meta[b-fdvw8pojml] {
    margin-top: 4px;
    font-size: 10.5px;
    color: #94a3b8;
    font-weight: 500;
    text-align: right;
}

/* --- Compose --- */
.nd-msg-compose[b-fdvw8pojml] {
    display: grid;
    grid-template-columns: 36px 36px minmax(0,1fr) 40px;
    gap: 8px;
    padding: 10px 14px;
    border-top: 1px solid rgba(0, 0, 0, .06);
    align-items: center;
    background: rgba(255, 255, 255, .6);
}

.nd-msg-ic[b-fdvw8pojml] {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 10px;
    background: rgba(255, 255, 255, .8);
    color: #64748b;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all .12s ease;
}

.nd-msg-ic:hover[b-fdvw8pojml] {
    background: #fff;
    border-color: rgba(0, 0, 0, .12);
}

.nd-msg-input[b-fdvw8pojml] {
    height: 36px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 10px;
    padding: 0 12px;
    background: rgba(255, 255, 255, .8);
    color: #0f172a;
    font-size: 13.5px;
    font-weight: 500;
}

.nd-msg-input:focus[b-fdvw8pojml] {
    outline: none;
    border-color: color-mix(in srgb, var(--fake-c1, #6366f1) 40%, transparent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--fake-c1, #6366f1) 10%, transparent);
    background: #fff;
}

.nd-msg-send[b-fdvw8pojml] {
    width: 40px;
    height: 36px;
    border: 0;
    border-radius: 10px;
    background: var(--fake-c1, #6366f1);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all .15s ease;
}

.nd-msg-send:hover[b-fdvw8pojml] {
    filter: brightness(1.08);
    box-shadow: 0 2px 8px color-mix(in srgb, var(--fake-c1, #6366f1) 30%, transparent);
}

.nd-msg-send:disabled[b-fdvw8pojml] {
    opacity: .5;
    cursor: not-allowed;
}

/* --- Empty / placeholder --- */
.nd-msg-empty[b-fdvw8pojml],
.nd-msg-placeholder[b-fdvw8pojml] {
    flex: 1;
    display: grid;
    place-items: center;
    color: #94a3b8;
    font-weight: 600;
}

.nd-msg-pl-ic[b-fdvw8pojml] {
    font-size: 32px;
    color: #cbd5e1;
    margin-bottom: 8px;
}

.nd-msg-pl-title[b-fdvw8pojml] {
    font-size: 15px;
    font-weight: 600;
    color: #94a3b8;
}

/* --- Image viewer --- */
.nd-imgv[b-fdvw8pojml] {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1200;
    place-items: center;
}

.nd-imgv.is-open[b-fdvw8pojml] { display: grid; }

.nd-imgv-box[b-fdvw8pojml] {
    position: relative;
    max-width: min(90vw, 960px);
    max-height: 90vh;
}

.nd-imgv img[b-fdvw8pojml] {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 16px;
}

.nd-imgv-x[b-fdvw8pojml] {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(0,0,0,.6);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

/* --- Responsive --- */
@media (max-width: 980px) {
    .nd-msg[b-fdvw8pojml] {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
    }

    .nd-msg-left.is-collapsed-mobile[b-fdvw8pojml] {
        display: none;
    }

    .nd-msg-right[b-fdvw8pojml] {
        min-height: 500px;
    }

    .nd-msg-back[b-fdvw8pojml] {
        display: inline-flex;
    }
}

@media (max-width: 760px) {
    .nd-msg-left[b-fdvw8pojml] {
        border-radius: 12px;
    }

    .nd-msg-right[b-fdvw8pojml] {
        border-radius: 12px;
        min-height: 400px;
    }

    .nd-msg-head[b-fdvw8pojml] {
        padding: 10px 12px;
        gap: 8px;
    }

    .nd-msg-thread[b-fdvw8pojml] {
        padding: 10px;
    }

    .nd-msg-compose[b-fdvw8pojml] {
        grid-template-columns: 32px 32px minmax(0,1fr) 36px;
        gap: 6px;
        padding: 8px 10px;
    }

    .nd-msg-ic[b-fdvw8pojml] {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .nd-msg-input[b-fdvw8pojml] {
        height: 32px;
        font-size: 13px;
        border-radius: 8px;
    }

    .nd-msg-send[b-fdvw8pojml] {
        width: 36px;
        height: 32px;
        border-radius: 8px;
    }

    .nd-bubble-inner[b-fdvw8pojml] {
        max-width: min(85%, 520px);
        padding: 8px 12px;
        border-radius: 14px;
    }

    .nd-bubble-text[b-fdvw8pojml] {
        font-size: 13.5px;
    }

    .nd-bubble-photo img[b-fdvw8pojml] {
        width: 180px;
    }

    .nd-msg-filters[b-fdvw8pojml] {
        padding: 8px 10px;
        gap: 10px;
    }

    .nd-msg-item[b-fdvw8pojml] {
        padding: 8px;
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 8px;
    }

    .nd-msg-ava[b-fdvw8pojml] {
        width: 40px;
        height: 40px;
        border-radius: 11px;
    }

    .nd-msg-ava img[b-fdvw8pojml] {
        border-radius: 11px;
    }

    .nd-msg-title[b-fdvw8pojml] {
        font-size: 13px;
    }

    .nd-msg-snippet[b-fdvw8pojml] {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .nd-msg-compose[b-fdvw8pojml] {
        grid-template-columns: 32px minmax(0,1fr) 36px;
    }

    .nd-msg-ic:first-child[b-fdvw8pojml] {
        display: none;
    }
}
/* _content/Dating.Admin.BlazorUI/Components/Pages/FakeUser/FakeProfile.razor.rz.scp.css */
.nd-pm-head[b-iyjmxq1i3n] {
    padding: 4px 0 12px;
}

.nd-pm-title[b-iyjmxq1i3n] {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -.01em;
}

.nd-pm-sub[b-iyjmxq1i3n] {
    margin-top: 4px;
    font-size: 13px;
    color: #94a3b8;
}

.nd-profile-loading[b-iyjmxq1i3n] {
    display: grid;
    place-items: center;
    gap: 12px;
    padding: 48px 0;
}

.nd-profile-loading-text[b-iyjmxq1i3n] {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #94a3b8;
}

.nd-spinner[b-iyjmxq1i3n] {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 3px solid rgba(0,0,0,.06);
    border-top-color: var(--fake-c1, #6366f1);
    animation: ndSpinLocal-b-iyjmxq1i3n .7s linear infinite;
    box-shadow: none;
}

@keyframes ndSpinLocal-b-iyjmxq1i3n { to { transform: rotate(360deg); } }

.nd-profile-empty[b-iyjmxq1i3n] {
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 16px;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(12px);
    padding: 24px;
    color: #64748b;
    font-weight: 600;
}

.nd-pm-card[b-iyjmxq1i3n] {
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 16px;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    padding: 20px;
}

.nd-pm-form[b-iyjmxq1i3n] {
    display: grid;
    gap: 10px;
}

.nd-pm-row[b-iyjmxq1i3n] {
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, .5);
    transition: background .12s ease;
}

.nd-pm-row:hover[b-iyjmxq1i3n] {
    background: rgba(255, 255, 255, .8);
}

.nd-pm-label[b-iyjmxq1i3n] {
    font-size: 11px;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-weight: 600;
    color: #94a3b8;
}

.nd-readonly[b-iyjmxq1i3n] {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.5;
    color: #1e293b;
    font-weight: 600;
}

.nd-photos[b-iyjmxq1i3n] {
    margin-top: 8px;
}

.nd-photo-grid[b-iyjmxq1i3n] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 8px;
}

.nd-photo[b-iyjmxq1i3n] {
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 14px;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: #f1f5f9;
    aspect-ratio: 1 / 1;
    cursor: default;
    transition: box-shadow .15s ease;
}

.nd-photo:hover[b-iyjmxq1i3n] {
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.nd-photo img[b-iyjmxq1i3n] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nd-photo-badge[b-iyjmxq1i3n] {
    position: absolute;
    left: 6px;
    bottom: 6px;
    border-radius: 6px;
    background: rgba(15, 23, 42, .7);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
}

.nd-photo.is-avatar[b-iyjmxq1i3n] {
    border-color: color-mix(in srgb, var(--fake-c1, #6366f1) 40%, transparent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--fake-c1, #6366f1) 12%, transparent);
}

.nd-photo.is-avatar .nd-photo-badge[b-iyjmxq1i3n] {
    background: var(--fake-c1, #6366f1);
}

.nd-photo-remove[b-iyjmxq1i3n] {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(15, 23, 42, .6);
    backdrop-filter: blur(4px);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 700;
}

.nd-age[b-iyjmxq1i3n] {
    margin-top: 8px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 8px;
    align-items: center;
}

.nd-age-cap[b-iyjmxq1i3n] {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
}

.nd-textarea.nd-readonly[b-iyjmxq1i3n] {
    margin-top: 8px;
    min-height: 80px;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 10px;
    padding: 10px 12px;
    background: rgba(248, 250, 252, .6);
}

@media (max-width: 760px) {
    .nd-pm-card[b-iyjmxq1i3n] { padding: 14px; }
    .nd-pm-row[b-iyjmxq1i3n] { padding: 10px; }

    .nd-photo-grid[b-iyjmxq1i3n] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nd-age[b-iyjmxq1i3n] {
        grid-template-columns: 1fr 1fr;
    }
}
/* _content/Dating.Admin.BlazorUI/Components/Pages/FakeUser/FakeSettings.razor.rz.scp.css */
.nd-fs[b-pvesnfkagn] {
    max-width: 480px;
    padding: 4px 0;
}

.nd-fs-title[b-pvesnfkagn] {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px;
    letter-spacing: -.01em;
}

.nd-fs-section[b-pvesnfkagn] {
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 14px;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

.nd-fs-label[b-pvesnfkagn] {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    display: block;
    margin-bottom: 4px;
}

.nd-fs-hint[b-pvesnfkagn] {
    font-size: 13px;
    color: #94a3b8;
    margin: 0 0 12px;
    line-height: 1.4;
}

.nd-fs-select[b-pvesnfkagn] {
    width: 100%;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 10px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    background: rgba(255, 255, 255, .8);
    cursor: pointer;
    transition: all .15s ease;
}

.nd-fs-select:focus[b-pvesnfkagn] {
    outline: none;
    border-color: color-mix(in srgb, var(--fake-c1, #6366f1) 40%, transparent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--fake-c1, #6366f1) 10%, transparent);
    background: #fff;
}

.nd-fs-saved[b-pvesnfkagn] {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #059669;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nd-fs-saved[b-pvesnfkagn]::before {
    content: "\2713";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(5, 150, 105, .1);
    font-size: 11px;
}

@media (max-width: 760px) {
    .nd-fs[b-pvesnfkagn] {
        max-width: 100%;
    }

    .nd-fs-section[b-pvesnfkagn] {
        padding: 14px;
        border-radius: 12px;
    }

    .nd-fs-title[b-pvesnfkagn] {
        font-size: 16px;
    }
}
/* _content/Dating.Admin.BlazorUI/Components/Pages/FakeUser/FakeUserClient.razor.rz.scp.css */
.nd-fuc[b-oxqm88mxvj] {
    max-width: 620px;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nd-fuc-loading[b-oxqm88mxvj],
.nd-fuc-empty[b-oxqm88mxvj] {
    text-align: center;
    padding: 40px 16px;
    color: #94a3b8;
    font-size: 14px;
}

.nd-fuc-header[b-oxqm88mxvj] {
    display: flex;
    align-items: center;
}

.nd-fuc-back[b-oxqm88mxvj] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    transition: all .15s;
}
.nd-fuc-back:hover[b-oxqm88mxvj] {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.nd-fuc-card[b-oxqm88mxvj] {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
}

.nd-fuc-top[b-oxqm88mxvj] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nd-fuc-avatar[b-oxqm88mxvj] {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #e2e8f0;
}
.nd-fuc-avatar-ph[b-oxqm88mxvj] {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #94a3b8;
    font-size: 28px;
}

.nd-fuc-info[b-oxqm88mxvj] {
    min-width: 0;
}

.nd-fuc-name[b-oxqm88mxvj] {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.nd-fuc-city[b-oxqm88mxvj] {
    margin-top: 4px;
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 5px;
}
.nd-fuc-city i[b-oxqm88mxvj] {
    font-size: 11px;
    color: #94a3b8;
}

.nd-fuc-detail[b-oxqm88mxvj] {
    margin-top: 2px;
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 5px;
}
.nd-fuc-detail i[b-oxqm88mxvj] {
    font-size: 11px;
    color: #94a3b8;
}

.nd-fuc-section[b-oxqm88mxvj] {
    margin-top: 16px;
}

.nd-fuc-section-title[b-oxqm88mxvj] {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #64748b;
    margin-bottom: 8px;
}

.nd-fuc-about[b-oxqm88mxvj] {
    font-size: 14px;
    line-height: 1.55;
    color: #334155;
    white-space: pre-wrap;
}

.nd-fuc-muted[b-oxqm88mxvj] {
    color: #94a3b8;
    font-size: 13px;
    text-align: center;
}

.nd-fuc-qa[b-oxqm88mxvj] {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}
.nd-fuc-qa:last-child[b-oxqm88mxvj] {
    border-bottom: none;
    padding-bottom: 0;
}

.nd-fuc-q[b-oxqm88mxvj] {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 3px;
}

.nd-fuc-a[b-oxqm88mxvj] {
    font-size: 14px;
    color: #0f172a;
    line-height: 1.4;
}

@media (max-width: 560px) {
    .nd-fuc[b-oxqm88mxvj] {
        padding: 10px;
    }
    .nd-fuc-card[b-oxqm88mxvj] {
        padding: 14px;
        border-radius: 12px;
    }
    .nd-fuc-avatar[b-oxqm88mxvj] {
        width: 56px;
        height: 56px;
        border-radius: 12px;
    }
    .nd-fuc-name[b-oxqm88mxvj] {
        font-size: 16px;
    }
}
/* _content/Dating.Admin.BlazorUI/Components/Pages/FakeUserSession.razor.rz.scp.css */
.nd-fake-session-page[b-27etp0vtyt]{
    height: calc(100vh - 130px);
    min-height: 620px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(17,18,20,.10);
    background: #fff;
    box-shadow: 0 18px 60px rgba(17,18,20,.12);
}

.nd-fake-session-frame[b-27etp0vtyt]{
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #f5f8ff;
}

.nd-fake-session-loading[b-27etp0vtyt]{
    height: 100%;
    display: grid;
    place-items: center;
    gap: 12px;
}

.nd-fake-session-error[b-27etp0vtyt]{
    margin: 24px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(249,115,22,.10);
    border: 1px solid rgba(249,115,22,.24);
}

.nd-fake-session-title[b-27etp0vtyt]{
    font-weight: 900;
    color: rgba(17,18,20,.88);
}

.nd-fake-session-text[b-27etp0vtyt]{
    margin-top: 6px;
    color: rgba(17,18,20,.64);
    font-weight: 700;
}

@media (max-width: 900px){
    .nd-fake-session-page[b-27etp0vtyt]{
        height: calc(100vh - 110px);
        min-height: 520px;
        border-radius: 14px;
    }
}
/* _content/Dating.Admin.BlazorUI/Components/Pages/HireManager/Dashboard.razor.rz.scp.css */
.nd-hmd-filters[b-6zfw06ny96]{
    margin-top: 12px;
    border: 1px solid rgba(17,18,20,.10);
    border-radius: 18px;
    background: rgba(255,255,255,.72);
    padding: 14px;
    display: grid;
    gap: 12px;
}

.nd-hmd-filters-title[b-6zfw06ny96]{
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(17,18,20,.50);
    padding-left: 2px;
}

.nd-hmd-filters-grid[b-6zfw06ny96]{
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) auto;
    gap: 12px;
    align-items: end;
}

.nd-hmd-field[b-6zfw06ny96]{
    display: grid;
    gap: 6px;
}

.nd-hmd-label[b-6zfw06ny96]{
    font-size: 12px;
    font-weight: 800;
    color: rgba(17,18,20,.52);
    padding-left: 2px;
}

.nd-hmd-actions[b-6zfw06ny96]{
    display: flex;
    justify-content: flex-end;
}

.nd-hmd-apply[b-6zfw06ny96]{
    min-width: 150px;
    width: 150px;
}

.nd-hmd-state[b-6zfw06ny96]{
    margin-top: 16px;
}

.nd-hmd-kpi-grid[b-6zfw06ny96]{
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    gap: 12px;
}

.nd-hmd-kpi[b-6zfw06ny96]{
    border: 1px solid rgba(17,18,20,.10);
    border-radius: 16px;
    background: rgba(255,255,255,.80);
    padding: 14px 14px 12px;
}

.nd-hmd-kpi-label[b-6zfw06ny96]{
    font-size: 12px;
    font-weight: 800;
    color: rgba(17,18,20,.52);
}

.nd-hmd-kpi-value[b-6zfw06ny96]{
    margin-top: 6px;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.02em;
    color: rgba(17,18,20,.88);
}

.nd-hmd-insights[b-6zfw06ny96]{
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(4, minmax(140px, 1fr));
    gap: 10px;
}

.nd-hmd-insight[b-6zfw06ny96]{
    border: 1px solid rgba(17,18,20,.10);
    border-radius: 14px;
    background: rgba(255,255,255,.65);
    padding: 10px 12px;
    display: grid;
    gap: 2px;
}

.nd-hmd-insight-label[b-6zfw06ny96]{
    font-size: 11px;
    font-weight: 800;
    color: rgba(17,18,20,.50);
}

.nd-hmd-insight-value[b-6zfw06ny96]{
    font-size: 18px;
    font-weight: 900;
    color: rgba(17,18,20,.83);
}

.nd-hmd-tables[b-6zfw06ny96]{
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.nd-hmd-table-card[b-6zfw06ny96]{
    border: 1px solid rgba(17,18,20,.10);
    border-radius: 18px;
    background: rgba(255,255,255,.72);
    overflow: hidden;
}

.nd-hmd-table-head[b-6zfw06ny96]{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(17,18,20,.08);
}

.nd-hmd-table-head h3[b-6zfw06ny96]{
    margin: 0;
    font-size: 17px;
    font-weight: 900;
    color: rgba(17,18,20,.86);
}

.nd-hmd-table-head span[b-6zfw06ny96]{
    font-size: 12px;
    font-weight: 800;
    color: rgba(17,18,20,.55);
}

.nd-hmd-table-card .nd-admin-table-wrap[b-6zfw06ny96]{
    border: 0;
    border-radius: 0;
    overflow-x: visible;
}

.nd-hmd-table-card .nd-admin-table[b-6zfw06ny96]{
    min-width: 0;
    table-layout: fixed;
}

.nd-hmd-table-card .nd-admin-table th[b-6zfw06ny96],
.nd-hmd-table-card .nd-admin-table td[b-6zfw06ny96]{
    white-space: normal;
    overflow-wrap: anywhere;
}

.nd-hmd-profile-cell[b-6zfw06ny96]{
    display: flex;
    align-items: center;
    gap: 10px;
}

.nd-hmd-profile-avatar[b-6zfw06ny96]{
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(17,18,20,.10);
    background: rgba(17,18,20,.06);
    color: rgba(17,18,20,.50);
    display: grid;
    place-items: center;
    flex: 0 0 28px;
}

.nd-hmd-profile-avatar img[b-6zfw06ny96]{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px){
    .nd-hmd-kpi-grid[b-6zfw06ny96]{
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }

    .nd-hmd-insights[b-6zfw06ny96]{
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }
}

@media (max-width: 720px){
    .nd-hmd-filters-grid[b-6zfw06ny96]{
        grid-template-columns: 1fr;
    }

    .nd-hmd-actions[b-6zfw06ny96]{
        justify-content: flex-start;
    }

    .nd-hmd-apply[b-6zfw06ny96]{
        width: min(260px, 100%);
    }

    .nd-hmd-kpi-grid[b-6zfw06ny96]{
        grid-template-columns: 1fr;
    }

    .nd-hmd-insights[b-6zfw06ny96]{
        grid-template-columns: 1fr;
    }
}
/* _content/Dating.Admin.BlazorUI/Components/Pages/HireManager/Profiles.razor.rz.scp.css */
.nd-hmp-search[b-2zlm6ukb0x] {
    min-width: 0;
}

.nd-admin-toolbar[b-2zlm6ukb0x]{
    display: grid;
    gap: 16px;
    margin-top: 10px;
}

.nd-hmp-filters[b-2zlm6ukb0x]{
    border: 1px solid rgba(17,18,20,.10);
    border-radius: 18px;
    background: rgba(255,255,255,.72);
    padding: 14px;
    display: grid;
    gap: 12px;
}

.nd-hmp-filters-title[b-2zlm6ukb0x]{
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(17,18,20,.50);
    padding-left: 2px;
}

.nd-hmp-filters-grid[b-2zlm6ukb0x]{
    display: grid;
    grid-template-columns: minmax(260px, 1.6fr) minmax(170px, 1fr) minmax(170px, 1fr) auto;
    gap: 12px;
    align-items: end;
}

.nd-hmp-field[b-2zlm6ukb0x]{
    display: grid;
    gap: 6px;
    min-width: 0;
}

.nd-hmp-label[b-2zlm6ukb0x]{
    font-size: 12px;
    font-weight: 800;
    color: rgba(17,18,20,.52);
    padding-left: 2px;
}

.nd-hmp-field-actions[b-2zlm6ukb0x]{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    align-self: end;
}

.nd-hmp-apply[b-2zlm6ukb0x]{
    min-width: 138px;
    width: 138px;
    height: 48px;
    padding: 0 16px;
}

[b-2zlm6ukb0x] .nd-admin-pagesize{
    display: flex;
    align-items: center;
    gap: 8px;
}

[b-2zlm6ukb0x] .nd-admin-pagesize-label{
    font-size: 13px;
    font-weight: 800;
    color: rgba(17,18,20,.58);
}

[b-2zlm6ukb0x] .nd-admin-pagesize-select{
    height: 48px;
    min-width: 84px;
    border-radius: 14px;
}

.nd-hmp-profile-cell[b-2zlm6ukb0x] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nd-hmp-avatar[b-2zlm6ukb0x] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(17,18,20,.1);
    display: grid;
    place-items: center;
    color: rgba(17,18,20,.45);
    background: rgba(17,18,20,.05);
    flex: 0 0 38px;
}

.nd-hmp-avatar img[b-2zlm6ukb0x] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nd-hmp-title[b-2zlm6ukb0x] {
    font-weight: 800;
    color: rgba(17,18,20,.85);
}

.nd-hmp-sub[b-2zlm6ukb0x] {
    font-size: 11px;
    color: rgba(17,18,20,.45);
}

@media (max-width: 760px) {
    .nd-hmp-filters-grid[b-2zlm6ukb0x]{
        grid-template-columns: 1fr;
    }

    .nd-hmp-field-actions[b-2zlm6ukb0x]{
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .nd-hmp-apply[b-2zlm6ukb0x]{
        width: min(260px, 100%);
    }
}
/* _content/Dating.Admin.BlazorUI/Components/Pages/HireManager/Worker.razor.rz.scp.css */
.nd-worker-top[b-n12jc3qusb]{
    display:flex;
    align-items:flex-end;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    padding-bottom: 12px;
}

.nd-worker-grid[b-n12jc3qusb]{
    display:grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 14px;
    margin-top: 28px;
}

.nd-worker-card[b-n12jc3qusb]{
    border-radius: 18px;
    border: 1px solid rgba(17,18,20,.10);
    background: rgba(255,255,255,.85);
    box-shadow: var(--shadow-2);
    padding: 14px;
}
.nd-worker-card-soft[b-n12jc3qusb]{
    background: rgba(255,255,255,.78);
}

.nd-worker-card-head[b-n12jc3qusb]{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
}
.nd-worker-card-title[b-n12jc3qusb]{
    font-weight: 900;
    color: rgba(17,18,20,.85);
}
.nd-worker-mini[b-n12jc3qusb]{
    font-size: 12px;
    font-weight: 800;
    color: rgba(17,18,20,.50);
}

.nd-worker-fields[b-n12jc3qusb]{ display:grid; gap: 12px; }
.nd-worker-field[b-n12jc3qusb]{ display:grid; gap: 8px; }
.nd-worker-label[b-n12jc3qusb]{
    font-weight: 900;
    font-size: 12px;
    color: rgba(17,18,20,.70);
}

.nd-key-input[b-n12jc3qusb]{
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    letter-spacing: .02em;
}
.nd-key-btn[b-n12jc3qusb]{
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(17,18,20,.10);
    background: rgba(255,255,255,.90);
    cursor:pointer;
    display:grid;
    place-items:center;
    color: rgba(17,18,20,.70);
}
.nd-key-btn:hover[b-n12jc3qusb]{
    background: rgba(20,184,166,.06);
    border-color: rgba(20,184,166,.18);
}
.nd-worker-hint[b-n12jc3qusb]{
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(17,18,20,.50);
}

.nd-worker-toast[b-n12jc3qusb]{
    margin-top: 10px;
    display:inline-flex;
    align-items:center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(38,177,95,.25);
    background: rgba(38,177,95,.10);
    color: rgba(38,177,95,.95);
    font-weight: 900;
    font-size: 12px;
}

.nd-worker-actions[b-n12jc3qusb]{ display:grid; gap: 10px; }
.nd-worker-action[b-n12jc3qusb]{
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(17,18,20,.10);
    background: rgba(255,255,255,.90);
    padding: 12px 12px;
    display:flex;
    align-items:center;
    gap: 12px;
    cursor:pointer;
    text-align:left;
}
.nd-worker-action:hover[b-n12jc3qusb]{
    background: rgba(20,184,166,.06);
    border-color: rgba(20,184,166,.18);
}

.nd-worker-action-ic[b-n12jc3qusb]{
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display:grid;
    place-items:center;
    background: rgba(20,184,166,.10);
    color: rgba(20,184,166,.95);
    border: 1px solid rgba(20,184,166,.18);
}
.nd-worker-action-txt[b-n12jc3qusb]{
    display:grid;
    gap: 2px;
    flex: 1;
    min-width: 0;
}
.nd-worker-action-title[b-n12jc3qusb]{
    font-weight: 900;
    color: rgba(17,18,20,.85);
}
.nd-worker-action-sub[b-n12jc3qusb]{
    font-size: 12px;
    font-weight: 800;
    color: rgba(17,18,20,.50);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nd-worker-action-arrow[b-n12jc3qusb]{
    color: rgba(17,18,20,.45);
}

.nd-btnspin[b-n12jc3qusb]{
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,.35);
    border-top-color: rgba(255,255,255,.95);
    animation: ndspin-b-n12jc3qusb .9s linear infinite;
}
@keyframes ndspin-b-n12jc3qusb{ to { transform: rotate(360deg); } }

@media (max-width: 980px){
    .nd-worker-grid[b-n12jc3qusb]{ grid-template-columns: 1fr; }
}
/* _content/Dating.Admin.BlazorUI/Components/Pages/HireManager/WorkerActivity.razor.rz.scp.css */
.nd-wa-filters[b-ce4h7knfiu]{
    display:flex;
    align-items:end;
    gap: 10px;
    flex-wrap: wrap;
    margin: 8px 0 14px;
}

.nd-wa-field[b-ce4h7knfiu]{
    display:grid;
    gap: 6px;
    min-width: 170px;
}

.nd-wa-field label[b-ce4h7knfiu]{
    font-size: 12px;
    font-weight: 900;
    color: rgba(17,18,20,.62);
}

.nd-wa-btn[b-ce4h7knfiu]{
    width: auto;
    min-width: 120px;
    height: 48px;
}

.nd-wa-toggle[b-ce4h7knfiu]{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(17,18,20,.10);
    background: rgba(255,255,255,.7);
    cursor: pointer;
    transition: all .15s ease;
    user-select: none;
}
.nd-wa-toggle:hover[b-ce4h7knfiu]{
    border-color: rgba(20,184,166,.30);
}
.nd-wa-toggle input[type="checkbox"][b-ce4h7knfiu]{
    width: 16px;
    height: 16px;
    accent-color: rgba(20,184,166,1);
    cursor: pointer;
}
.nd-wa-toggle-label[b-ce4h7knfiu]{
    font-size: 13px;
    font-weight: 600;
    color: rgba(17,18,20,.72);
    white-space: nowrap;
}

.nd-wa-table[b-ce4h7knfiu]{
    min-width: 1240px;
}

.nd-wa-session-row[b-ce4h7knfiu]{
    cursor: pointer;
}

.nd-wa-session-row.is-open[b-ce4h7knfiu]{
    background: rgba(20,184,166,.06);
}

.nd-wa-expand[b-ce4h7knfiu]{
    width: 28px;
    height: 28px;
    border-radius: 10px;
    border: 1px solid rgba(17,18,20,.12);
    background: rgba(255,255,255,.9);
    color: rgba(17,18,20,.65);
    cursor: pointer;
}

.nd-wa-expand:hover[b-ce4h7knfiu]{
    border-color: rgba(20,184,166,.32);
    color: rgba(20,184,166,.9);
}

.nd-wa-details-row td[b-ce4h7knfiu]{
    background: rgba(17,18,20,.02);
    padding: 12px !important;
}

.nd-wa-details-wrap[b-ce4h7knfiu]{
    border: 1px solid rgba(17,18,20,.10);
    border-radius: 12px;
    overflow: auto;
    background: rgba(255,255,255,.92);
}

.nd-wa-details-table[b-ce4h7knfiu]{
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
}

.nd-wa-details-table th[b-ce4h7knfiu],
.nd-wa-details-table td[b-ce4h7knfiu]{
    padding: 8px 10px;
    border-bottom: 1px solid rgba(17,18,20,.08);
    font-size: 12px;
}

.nd-wa-details-table th[b-ce4h7knfiu]{
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 11px;
    color: rgba(17,18,20,.52);
    font-weight: 900;
    background: rgba(17,18,20,.03);
}

.nd-wa-details-empty[b-ce4h7knfiu]{
    padding: 10px 2px;
    color: rgba(17,18,20,.58);
    font-weight: 700;
}

.nd-wa-mono[b-ce4h7knfiu]{
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 11px;
}

.nd-wa-ava[b-ce4h7knfiu]{
    width: 34px;
    height: 34px;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(17,18,20,.12);
    background: rgba(17,18,20,.06);
    display: grid;
    place-items: center;
    color: rgba(17,18,20,.42);
}

.nd-wa-ava img[b-ce4h7knfiu]{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nd-wa-profile-link[b-ce4h7knfiu]{
    border: 0;
    background: transparent;
    padding: 0;
    color: rgba(17,18,20,.82);
    font-weight: 900;
    cursor: pointer;
    text-align: left;
    border-bottom: 1px dashed transparent;
    transition: color .15s ease, border-color .15s ease;
}

.nd-wa-profile-link:hover[b-ce4h7knfiu]{
    color: rgba(20,184,166,.96);
    border-bottom-color: rgba(20,184,166,.50);
}
/* _content/Dating.Admin.BlazorUI/Components/Pages/HireManager/WorkerProfileCreateStep2.razor.rz.scp.css */
.nd-qgrid[b-7t8y68u2li]{
    display:grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.nd-qblock[b-7t8y68u2li]{
    border: 1px solid rgba(17,18,20,.10);
    background: rgba(255,255,255,.75);
    border-radius: 18px;
    padding: 14px;
}

.nd-qblock-title[b-7t8y68u2li]{
    font-weight: 1000;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.nd-qrow[b-7t8y68u2li]{ margin-bottom: 12px; }
.nd-qrow:last-child[b-7t8y68u2li]{ margin-bottom: 0; }

.nd-qhint[b-7t8y68u2li]{
    margin-top: 6px;
    font-size: 12px;
    font-weight: 800;
    color: rgba(17,18,20,.55);
}

.nd-chipgrid[b-7t8y68u2li]{
    display:flex;
    flex-wrap:wrap;
    gap: 8px;
}

.nd-chip[b-7t8y68u2li]{
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(17,18,20,.12);
    background: rgba(255,255,255,.9);
    font-weight: 900;
    cursor:pointer;
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.nd-chip:hover[b-7t8y68u2li]{ transform: translateY(-1px); box-shadow: 0 10px 24px rgba(17,18,20,.10); }
.nd-chip.is-on[b-7t8y68u2li]{
    border-color: rgba(20,184,166,.35);
    background: rgba(20,184,166,.10);
}

.nd-qtoast[b-7t8y68u2li]{
    margin-top: 10px;
    font-size: 12px;
    font-weight: 900;
    color: rgba(38,177,95,.95);
}
/* _content/Dating.Admin.BlazorUI/Components/Pages/HireManager/WorkerProfileDetails.razor.rz.scp.css */
/* ===== Page grid ===== */
.nd-wpd-grid[b-4c8ul86jca]{
    display:grid;
    grid-template-columns: 1.4fr .9fr;
    gap: 18px;
    align-items:start;
}

.nd-wpd-card[b-4c8ul86jca]{
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(17,18,20,.10);
    box-shadow: var(--shadow-2);
    padding: 16px;
}

.nd-wpd-card-head[b-4c8ul86jca]{ display:grid; gap: 4px; padding-bottom: 10px; }
.nd-wpd-card-title[b-4c8ul86jca]{ font-weight: 1000; font-size: 14px; color: rgba(17,18,20,.85); }
.nd-wpd-card-sub[b-4c8ul86jca]{ font-size: 12px; color: rgba(17,18,20,.50); }

.nd-mono[b-4c8ul86jca]{
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-weight: 900;
}

/* ===== Top row ===== */
.nd-wpd-top[b-4c8ul86jca]{
    display:grid;
    grid-template-columns: 120px 1fr;
    gap: 14px;
    align-items:center;
    padding: 8px 0 12px;
}

.nd-wpd-avatar[b-4c8ul86jca]{
    width: 112px;
    height: 112px;
    border-radius: 999px;
    overflow:hidden;
    border: 1px solid rgba(17,18,20,.10);
    background: rgba(17,18,20,.06);
    display:grid;
    place-items:center;
    margin: 0 auto;
}
.nd-wpd-avatar img[b-4c8ul86jca]{ width:100%; height:100%; object-fit:cover; display:block; }
.nd-wpd-avatar-ph[b-4c8ul86jca]{
    width:100%; height:100%;
    display:grid; place-items:center;
    color: rgba(17,18,20,.35);
    font-size: 34px;
}

.nd-wpd-name[b-4c8ul86jca]{ font-weight: 1100; font-size: 22px; color: rgba(17,18,20,.88); }
.nd-wpd-meta[b-4c8ul86jca]{ display:flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.nd-wpd-pill[b-4c8ul86jca]{
    height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    display:inline-flex;
    align-items:center;
    background: rgba(17,18,20,.04);
    border: 1px solid rgba(17,18,20,.08);
    font-weight: 900;
    font-size: 11px;
    color: rgba(17,18,20,.68);
}
.nd-wpd-meta2[b-4c8ul86jca]{
    margin-top: 10px;
    display:grid;
    gap: 6px;
    font-size: 12px;
    color: rgba(17,18,20,.62);
}
.nd-wpd-k[b-4c8ul86jca]{ color: rgba(17,18,20,.45); font-weight: 900; margin-right: 6px; }

/* ===== Sections ===== */
.nd-wpd-section[b-4c8ul86jca]{ padding-top: 10px; }
.nd-wpd-section-title[b-4c8ul86jca]{ font-weight: 1000; font-size: 12px; color: rgba(17,18,20,.70); }
.nd-wpd-section-sub[b-4c8ul86jca]{ font-size: 12px; color: rgba(17,18,20,.48); margin-top: 4px; }

.nd-wpd-empty[b-4c8ul86jca]{
    margin-top: 10px;
    border-radius: 16px;
    border: 1px dashed rgba(17,18,20,.18);
    background: rgba(247,248,252,.72);
    padding: 14px;
    font-weight: 900;
    color: rgba(17,18,20,.55);
}

.nd-wpd-photo-grid[b-4c8ul86jca]{
    margin-top: 10px;
}

.nd-wpd-about[b-4c8ul86jca]{
    margin-top: 10px;
    border-radius: 16px;
    border: 1px solid rgba(17,18,20,.10);
    background: rgba(17,18,20,.03);
    padding: 12px 14px;
    font-weight: 800;
    color: rgba(17,18,20,.72);
    line-height: 1.55;
    min-height: 64px;
}
.nd-wpd-muted[b-4c8ul86jca]{ color: rgba(17,18,20,.45); }

/* ===== Actions ===== */
.nd-wpd-actions[b-4c8ul86jca]{ display:grid; gap: 10px; padding-top: 6px; }
.nd-wpd-action[b-4c8ul86jca]{
    width: 100%;
    height: 46px;
    border-radius: 16px;
    border: 1px solid rgba(17,18,20,.10);
    background: rgba(255,255,255,.82);
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap: 10px;
    padding: 0 14px;
    cursor:pointer;
    font-weight: 1000;
    color: rgba(17,18,20,.78);
}
.nd-wpd-action i[b-4c8ul86jca]{
    width: 18px;
    text-align:center;
    color: rgba(20,184,166,.92);
}
.nd-wpd-action:hover[b-4c8ul86jca]{
    background: rgba(20,184,166,.5);
    border-color: rgba(20,184,166,.76);
}
.nd-wpd-action:disabled[b-4c8ul86jca]{ opacity:.55; cursor:not-allowed; }

.nd-wpd-action-primary[b-4c8ul86jca]{
    border: 0;
    color: #fff;
    background: linear-gradient(90deg, var(--p1), var(--p2));
    box-shadow: 0 16px 40px rgba(20,184,166,.18);
}
.nd-wpd-action-primary i[b-4c8ul86jca]{ color: rgba(255,255,255,.95); }
.nd-wpd-action-primary:hover[b-4c8ul86jca]{ filter: saturate(1.12); }

.nd-wpd-action-danger[b-4c8ul86jca]{
    border-color: rgba(255, 91, 91, 0.35);
    background: rgba(255, 91, 91, 0.06);
    color: rgba(255, 91, 91, 0.95);
}
.nd-wpd-action-danger i[b-4c8ul86jca]{ color: rgba(255, 91, 91, 0.95); }
.nd-wpd-action-danger:hover[b-4c8ul86jca]{
    background: rgba(255, 91, 91, 0.1);
    border-color: rgba(255, 91, 91, 0.48);
}

.nd-wpd-soon[b-4c8ul86jca]{
    margin-left: auto;
    font-size: 10px;
    font-weight: 1000;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(17,18,20,.06);
    border: 1px solid rgba(17,18,20,.08);
    color: rgba(17,18,20,.55);
}

.nd-wpd-divider[b-4c8ul86jca]{
    height: 1px;
    background: rgba(17,18,20,.08);
    margin: 4px 0;
}

.nd-wpd-back[b-4c8ul86jca]{
    margin-top: 6px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(17,18,20,.10);
    background: rgba(17,18,20,.03);
    cursor:pointer;
    font-weight: 1000;
    color: rgba(17,18,20,.70);
}

.nd-wpd-btn-primary[b-4c8ul86jca]{
    height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    border: 0;
    cursor: pointer;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(90deg, var(--p1), var(--p2));
    box-shadow: 0 16px 40px rgba(20,184,166,.22);
}
.nd-wpd-btn-primary:hover[b-4c8ul86jca]{ transform: translateY(-1px); }
.nd-wpd-btn-primary:active[b-4c8ul86jca]{ transform: translateY(0); }


/* ===== Edit helpers (reuse from profile look) ===== */
.nd-auth-dob2[b-4c8ul86jca]{
    display:grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 10px;
}
.nd-auth-age[b-4c8ul86jca]{
    display:grid;
    grid-template-columns: auto 1fr auto 1fr;
    gap: 10px;
    align-items:center;
}
.nd-auth-age-cap[b-4c8ul86jca]{ font-weight: 1000; font-size: 12px; color: rgba(17,18,20,.55); }

/* ===== Responsive ===== */
@media (max-width: 980px){
    .nd-wpd-grid[b-4c8ul86jca]{ grid-template-columns: 1fr; }
    .nd-wpd-top[b-4c8ul86jca]{ grid-template-columns: 1fr; justify-items:center; text-align:center; }
    .nd-wpd-meta[b-4c8ul86jca]{ justify-content:center; }
    .nd-wpd-meta2[b-4c8ul86jca]{ justify-items:center; }
}
@media (max-width: 560px){
    .nd-auth-dob2[b-4c8ul86jca]{ grid-template-columns: 1fr 1fr; }
    .nd-auth-dob2 input:last-child[b-4c8ul86jca]{ grid-column: 1 / -1; }
    .nd-auth-age[b-4c8ul86jca]{ grid-template-columns: auto 1fr; }
}

.nd-wpd-qgroups[b-4c8ul86jca]{ display:flex; flex-direction:column; gap:12px; margin-top: 10px; }

.nd-wpd-qgroup[b-4c8ul86jca]{
    border: 1px solid rgba(17,18,20,.08);
    border-radius: 16px;
    background: rgba(255,255,255,.7);
    padding: 12px;
}

.nd-wpd-qgtitle[b-4c8ul86jca]{
    font-weight: 1000;
    margin-bottom: 8px;
}

.nd-wpd-qrow[b-4c8ul86jca]{
    display:grid;
    grid-template-columns: 160px 1fr;
    gap: 10px;
    padding: 6px 0;
    border-top: 1px solid rgba(17,18,20,.06);
}
.nd-wpd-qrow:first-of-type[b-4c8ul86jca]{ border-top: 0; }

.nd-wpd-ql[b-4c8ul86jca]{
    font-size: 12px;
    font-weight: 900;
    color: rgba(17,18,20,.55);
}
.nd-wpd-qv[b-4c8ul86jca]{
    font-weight: 900;
    color: rgba(17,18,20,.78);
}
.nd-wpd-qtext[b-4c8ul86jca]{
    font-weight: 900;
    color: rgba(17,18,20,.72);
    line-height: 1.4;
}
@media (max-width: 720px){
    .nd-wpd-qrow[b-4c8ul86jca]{ grid-template-columns: 1fr; }
}
.nd-bc-modal-wrap[b-4c8ul86jca] {
    width: min(760px, 92vw);
    max-height: calc(100vh - 36px);
    max-height: calc(100dvh - 36px);
}

.nd-bc-modal[b-4c8ul86jca] {
    width: 100%;
    padding: 24px;
}

.nd-bc-stats[b-4c8ul86jca] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 10px 0 14px;
}

.nd-bc-stat[b-4c8ul86jca] {
    border: 1px solid rgba(17, 18, 20, .10);
    border-radius: 14px;
    background: rgba(17, 18, 20, .03);
    padding: 10px 12px;
}

.nd-bc-stat-v[b-4c8ul86jca] {
    font-size: 22px;
    font-weight: 1000;
    color: rgba(17, 18, 20, .88);
}

.nd-bc-stat-l[b-4c8ul86jca] {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 800;
    color: rgba(17, 18, 20, .56);
}

.nd-bc-emoji-row[b-4c8ul86jca] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.nd-bc-emoji[b-4c8ul86jca] {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(17, 18, 20, .12);
    background: rgba(255, 255, 255, .92);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.nd-bc-emoji:hover[b-4c8ul86jca] {
    background: rgba(91, 108, 255, .10);
    border-color: rgba(91, 108, 255, .25);
}

.nd-bc-progress[b-4c8ul86jca] {
    border: 1px solid rgba(17, 18, 20, .10);
    border-radius: 14px;
    padding: 12px;
    margin: 10px 0 6px;
    background: rgba(255, 255, 255, .72);
}

.nd-bc-progress-top[b-4c8ul86jca] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 900;
    color: rgba(17, 18, 20, .62);
}

.nd-bc-progress-track[b-4c8ul86jca] {
    margin-top: 8px;
    height: 10px;
    border-radius: 999px;
    background: rgba(17, 18, 20, .08);
    overflow: hidden;
}

.nd-bc-progress-fill[b-4c8ul86jca] {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--p1), var(--p2));
    transition: width .2s ease;
}

.nd-bc-progress-meta[b-4c8ul86jca] {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    font-weight: 800;
    color: rgba(17, 18, 20, .58);
}

.nd-bc-done[b-4c8ul86jca] {
    margin-top: 10px;
    border: 1px solid rgba(38, 177, 95, .30);
    background: rgba(38, 177, 95, .10);
    color: rgba(17, 18, 20, .78);
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 800;
}

@media (max-width: 760px) {
    .nd-bc-stats[b-4c8ul86jca] {
        grid-template-columns: 1fr;
    }
}
/* _content/Dating.Admin.BlazorUI/Components/Pages/HireManager/WorkerProfiles.razor.rz.scp.css */
.nd-worker-top-actions[b-9vajy22ts2]{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.nd-hmw-filters[b-9vajy22ts2]{
    margin-top: 16px;
    border: 1px solid rgba(17,18,20,.10);
    border-radius: 18px;
    background: rgba(255,255,255,.72);
    padding: 14px;
    display: grid;
    gap: 12px;
}

.nd-hmw-filters-title[b-9vajy22ts2]{
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(17,18,20,.50);
    padding-left: 2px;
}

.nd-hmw-filters-grid[b-9vajy22ts2]{
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) auto;
    gap: 12px;
    align-items: end;
}

.nd-hmw-field[b-9vajy22ts2]{
    display: grid;
    gap: 6px;
}

.nd-hmw-label[b-9vajy22ts2]{
    font-size: 12px;
    font-weight: 800;
    color: rgba(17,18,20,.52);
    padding-left: 2px;
}

.nd-hmw-actions[b-9vajy22ts2]{
    display: flex;
    justify-content: flex-end;
}

.nd-hmw-apply[b-9vajy22ts2]{
    min-width: 150px;
    width: 150px;
}

.nd-dob3[b-9vajy22ts2]{
    display:grid;
    grid-template-columns: 1fr auto 1fr auto 1.2fr;
    gap: 8px;
    align-items:center;
}

.nd-dob-sep[b-9vajy22ts2]{
    font-weight: 900;
    color: rgba(17,18,20,.35);
    text-align:center;
}

@media (max-width: 560px){
    .nd-hmw-filters-grid[b-9vajy22ts2]{
        grid-template-columns: 1fr;
    }

    .nd-hmw-actions[b-9vajy22ts2]{
        justify-content: flex-start;
    }

    .nd-hmw-apply[b-9vajy22ts2]{
        width: min(260px, 100%);
    }

    .nd-dob3[b-9vajy22ts2]{
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto auto;
    }
    .nd-dob3 input:nth-child(5)[b-9vajy22ts2]{
        grid-column: 1 / -1;
    }
}
/* _content/Dating.Admin.BlazorUI/Components/Pages/HireManager/Workers.razor.rz.scp.css */
.nd-hmw-top[b-0vflggbps7]{
    margin-top: 8px;
    display: flex;
    justify-content: flex-start;
}

.nd-hmw-create[b-0vflggbps7]{
    width: auto;
    min-width: 200px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.nd-hmw-toolbar[b-0vflggbps7]{
    margin-top: 14px;
    display: grid;
    gap: 14px;
}

.nd-hmw-filters[b-0vflggbps7]{
    border: 1px solid rgba(17,18,20,.10);
    border-radius: 18px;
    background: rgba(255,255,255,.72);
    padding: 14px;
    display: grid;
    gap: 12px;
}

.nd-hmw-filters-title[b-0vflggbps7]{
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(17,18,20,.50);
    padding-left: 2px;
}

.nd-hmw-filters-grid[b-0vflggbps7]{
    display: grid;
    grid-template-columns: minmax(260px, 1.6fr) minmax(170px, 1fr) minmax(120px, auto);
    gap: 12px;
    align-items: end;
}

.nd-hmw-field[b-0vflggbps7]{
    display: grid;
    gap: 6px;
    min-width: 0;
}

.nd-hmw-label[b-0vflggbps7]{
    font-size: 12px;
    font-weight: 800;
    color: rgba(17,18,20,.52);
    padding-left: 2px;
}

.nd-hmw-select[b-0vflggbps7]{
    height: 48px;
}

.nd-hmw-field-pagesize[b-0vflggbps7]{
    max-width: 120px;
}

.nd-key-toast[b-0vflggbps7]{
    margin-top: 8px;
    font-size: 12px;
    font-weight: 900;
    color: rgba(38,177,95,.95);
}

@media (max-width: 760px){
    .nd-hmw-filters-grid[b-0vflggbps7]{
        grid-template-columns: 1fr;
    }

    .nd-hmw-field-pagesize[b-0vflggbps7]{
        max-width: 100%;
    }

    .nd-hmw-create[b-0vflggbps7]{
        width: min(260px, 100%);
    }
}
/* _content/Dating.Admin.BlazorUI/Components/Pages/Home.razor.rz.scp.css */
.nd-admin-hero[b-ik9ru1lrqk]{
    min-height: calc(100vh - 110px);
    display:grid;
    place-items:center;
    padding: 24px 0 40px;
}

.nd-admin-welcome[b-ik9ru1lrqk]{
    width: min(520px, 100%);
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(17,18,20,.10);
    box-shadow: var(--shadow-2);
    padding: 20px;
    text-align:center;
}

.nd-admin-kicker[b-ik9ru1lrqk]{
    display:inline-flex;
    align-items:center;
    gap: 8px;
    font-weight: 900;
    font-size: 12px;
    color: rgba(20,184,166,.95);
    background: rgba(20,184,166,.10);
    border: 1px solid rgba(20,184,166,.18);
    padding: 6px 10px;
    border-radius: 999px;
}

.nd-admin-title[b-ik9ru1lrqk]{
    margin-top: 12px;
    font-weight: 900;
    font-size: 22px;
    color: rgba(17,18,20,.88);
}
.nd-admin-sub[b-ik9ru1lrqk]{
    margin-top: 6px;
    font-weight: 800;
    font-size: 13px;
    color: rgba(17,18,20,.52);
}

.nd-admin-enter[b-ik9ru1lrqk]{
    margin-top: 16px;
    height: 48px;
    width: min(340px, 100%);
    border-radius: 14px;
    border: 0;
    cursor:pointer;
    color: white;
    font-weight: 900;
    letter-spacing: .12em;
    background: linear-gradient(90deg, var(--p1), var(--p2));
    box-shadow: 0 16px 40px rgba(20,184,166,.22);
}
/* _content/Dating.Admin.BlazorUI/Components/Pages/Worker/Account.razor.rz.scp.css */
/* Worker My Account */
.nd-wm-grid[b-lgzslge6bb]{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
}

.nd-wm-card[b-lgzslge6bb]{
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(17,18,20,.10);
    box-shadow: var(--shadow-2);
    padding: 16px;
}

.nd-wm-card-span[b-lgzslge6bb]{ grid-column: 1 / -1; }

.nd-wm-card-title[b-lgzslge6bb]{
    font-weight: 900;
    color: rgba(17,18,20,.86);
    margin-bottom: 12px;
}

.nd-wm-kv[b-lgzslge6bb]{
    display:grid;
    grid-template-columns: 120px 1fr;
    gap: 10px 12px;
    align-items:center;
}

.nd-wm-k[b-lgzslge6bb]{
    font-size: 12px;
    font-weight: 900;
    color: rgba(17,18,20,.45);
}

.nd-wm-v[b-lgzslge6bb]{
    font-weight: 800;
    color: rgba(17,18,20,.78);
}

.nd-wm-tokens[b-lgzslge6bb]{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.nd-wm-tokens-val[b-lgzslge6bb]{
    font-weight: 900;
    font-size: 18px;
    color: rgba(17,18,20,.86);
}

.nd-wm-withdraw[b-lgzslge6bb]{
    height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    background: linear-gradient(90deg, var(--p1), var(--p2));
    color: #fff;
    font-weight: 900;
    display:flex;
    align-items:center;
    gap: 8px;
    box-shadow: var(--shadow-soft);
}
.nd-wm-withdraw:hover[b-lgzslge6bb]{ transform: translateY(-1px); }
.nd-wm-withdraw:active[b-lgzslge6bb]{ transform: translateY(0px); }
.nd-wm-withdraw:disabled[b-lgzslge6bb]{ opacity: .55; cursor:not-allowed; transform:none; }

/* Stats */
.nd-wm-stats[b-lgzslge6bb]{
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.nd-wm-stat[b-lgzslge6bb]{
    border-radius: 16px;
    border: 1px solid rgba(17,18,20,.10);
    background: rgba(17,18,20,.03);
    padding: 12px;
}

.nd-wm-stat-k[b-lgzslge6bb]{
    font-size: 12px;
    font-weight: 900;
    color: rgba(17,18,20,.55);
}

.nd-wm-stat-v[b-lgzslge6bb]{
    margin-top: 6px;
    font-weight: 900;
    font-size: 18px;
    color: rgba(17,18,20,.86);
}

.nd-admin-muted[b-lgzslge6bb]{
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(17,18,20,.55);
}

@media (max-width: 980px){
    .nd-wm-grid[b-lgzslge6bb]{ grid-template-columns: 1fr; }
    .nd-wm-stats[b-lgzslge6bb]{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px){
    .nd-wm-stats[b-lgzslge6bb]{ grid-template-columns: 1fr; }
    .nd-wm-kv[b-lgzslge6bb]{ grid-template-columns: 1fr; }
    .nd-wm-k[b-lgzslge6bb]{ margin-top: 6px; }
}

/* ===== Locked/Coming soon overlay ===== */
.nd-locked-card[b-lgzslge6bb]{
    position: relative;
    overflow: hidden;
    pointer-events: none;
    user-select: none;
}
.nd-locked-card > *:not(.nd-locked-overlay)[b-lgzslge6bb]{
    filter: blur(2px);
    opacity: .4;
}
.nd-locked-overlay[b-lgzslge6bb]{
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 950;
    font-size: 14px;
    color: rgba(17,18,20,.60);
    letter-spacing: .06em;
}
.nd-locked-overlay i[b-lgzslge6bb]{
    font-size: 22px;
    color: rgba(17,18,20,.35);
}

/* ===== Reward progress (improved) ===== */
.nd-rew-card[b-lgzslge6bb]{
    padding: 16px 16px 14px;
}

.nd-rew-head[b-lgzslge6bb]{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.nd-rew-title[b-lgzslge6bb]{
    font-weight: 950;
    font-size: 16px;
    color: rgba(17,18,20,.86);
}

.nd-rew-right[b-lgzslge6bb]{
    display:flex;
    gap: 8px;
    align-items:center;
    flex-wrap: wrap;
    justify-content:flex-end;
}

/* pills look more "button-like" */
.nd-rew-pill[b-lgzslge6bb]{
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    display:inline-flex;
    align-items:center;
    gap: 8px;
    font-weight: 950;
    font-size: 12px;
    border: 1px solid rgba(17,18,20,.10);
    box-shadow: 0 10px 24px rgba(17,18,20,.08);
    background: rgba(255,255,255,.92);
    user-select:none;
}
.nd-rew-pill i[b-lgzslge6bb]{ font-size: 12px; }

.nd-rew-pill-gold[b-lgzslge6bb]{
    background: rgba(255, 196, 0, .12);
    border-color: rgba(255, 196, 0, .28);
}
.nd-rew-pill-gold i[b-lgzslge6bb]{ color: rgba(255, 170, 0, .95); }
.nd-rew-pill-gold span[b-lgzslge6bb]{ color: rgba(17,18,20,.82); }

.nd-rew-pill-green[b-lgzslge6bb]{
    background: rgba(38, 177, 95, .12);
    border-color: rgba(38, 177, 95, .28);
}
.nd-rew-pill-green i[b-lgzslge6bb]{ color: rgba(38,177,95,.95); }
.nd-rew-pill-green span[b-lgzslge6bb]{ color: rgba(17,18,20,.82); }

.nd-rew-row[b-lgzslge6bb]{
    display:flex;
    align-items:center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.nd-rew-goal[b-lgzslge6bb]{
    display:flex;
    align-items:center;
    gap: 10px;
    font-weight: 950;
    color: rgba(17,18,20,.70);
}

/* "ring dot" like in your screenshot */
.nd-rew-dot[b-lgzslge6bb]{
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 2px solid rgba(20,184,166,.65);
    box-shadow: 0 0 0 5px rgba(20,184,166,.10);
    position: relative;
}
.nd-rew-dot[b-lgzslge6bb]::after{
    content:"";
    position:absolute;
    inset: 4px;
    border-radius: 999px;
    background: rgba(20,184,166,.95);
}

/* bar thicker + clearer */
.nd-rew-bar[b-lgzslge6bb]{
    position: relative;
    height: 16px;
    border-radius: 999px;
    overflow:hidden;
}

.nd-rew-bar-track[b-lgzslge6bb]{
    position:absolute;
    inset:0;
    background: rgba(17,18,20,.06);
    border: 1px solid rgba(17,18,20,.10);
    border-radius: 999px;
}

.nd-rew-bar-fill[b-lgzslge6bb]{
    position:absolute;
    left:0; top:0; bottom:0;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(20,184,166,.95), rgba(249,115,22,.95));
    box-shadow: 0 14px 32px rgba(20,184,166,.16);
    transition: width .35s ease;
}

/* subtle glossy shine */
.nd-rew-bar-shine[b-lgzslge6bb]{
    position:absolute;
    inset:0;
    pointer-events:none;
    opacity:.7;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.28),
            transparent
    );
    transform: translateX(-65%);
}

/* keep the shine very subtle and calm */
@media (prefers-reduced-motion: no-preference){
    .nd-rew-bar-shine[b-lgzslge6bb]{
        animation: nd-rew-shine-b-lgzslge6bb 2.8s ease-in-out infinite;
    }
    @keyframes nd-rew-shine-b-lgzslge6bb{
        0%{ transform: translateX(-65%); }
        50%{ transform: translateX(35%); }
        100%{ transform: translateX(165%); }
    }
}

.nd-rew-foot[b-lgzslge6bb]{
    margin-top: 10px;
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 10px;
}

.nd-rew-hint[b-lgzslge6bb]{
    font-size: 12px;
    font-weight: 900;
    color: rgba(17,18,20,.45);
}

/* CTA like a compact pill on the right */
.nd-rew-cta[b-lgzslge6bb]{
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    display:flex;
    align-items:center;
    gap: 8px;
    background: rgba(20,184,166,.08);
    border: 1px solid rgba(20,184,166,.20);
    box-shadow: 0 10px 24px rgba(20,184,166,.10);
}
.nd-rew-cta-t[b-lgzslge6bb]{
    font-weight: 950;
    color: rgba(20,184,166,.95);
}
.nd-rew-cta-b[b-lgzslge6bb]{
    font-size: 12px;
    font-weight: 950;
    color: rgba(249,115,22,.95);
}

@media (max-width: 560px){
    .nd-rew-head[b-lgzslge6bb]{
        align-items:flex-start;
        flex-direction: column;
    }
    .nd-rew-right[b-lgzslge6bb]{
        justify-content:flex-start;
    }
    .nd-rew-foot[b-lgzslge6bb]{
        flex-direction: column;
        align-items:flex-start;
    }
}


/* _content/Dating.Admin.BlazorUI/Components/Pages/Worker/Payouts.razor.rz.scp.css */
.nd-admin-toolbar[b-k5eyiw3zw9]{
    display: grid;
    gap: 14px;
    margin-top: 6px;
    margin-bottom: 14px;
}

.nd-ap-filters[b-k5eyiw3zw9]{
    width: min(280px, 100%);
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(17,18,20,.10);
    background: rgba(255,255,255,.72);
}

.nd-ap-wallet[b-k5eyiw3zw9]{
    max-width: 180px;
    font-family: "Consolas", "Courier New", monospace;
    font-size: 12px;
    color: rgba(17,18,20,.72);
}

.nd-ap-status[b-k5eyiw3zw9]{
    border: none;
    font-weight: 900;
}

.nd-ap-status-pending[b-k5eyiw3zw9]{
    background: rgba(255,171,53,.18);
    color: #9c5e00;
}

.nd-ap-status-approved[b-k5eyiw3zw9]{
    background: rgba(76,186,115,.18);
    color: #236d3e;
}

.nd-ap-status-rejected[b-k5eyiw3zw9]{
    background: rgba(232,86,86,.18);
    color: #972d2d;
}

.nd-ap-status-paid[b-k5eyiw3zw9]{
    background: rgba(20,184,166,.16);
    color: #3649c4;
}

@media (max-width: 760px){
    .nd-admin-table[b-k5eyiw3zw9]{
        min-width: 640px;
    }

    .nd-ap-filters[b-k5eyiw3zw9]{
        width: 100%;
    }
}
/* _content/Dating.Admin.BlazorUI/Components/Pages/Worker/Profiles.razor.rz.scp.css */
/* ===== Accordion ===== */
.nd-acc[b-xv83bk99qm]{ display:grid; gap: 10px; }

.nd-acc-item[b-xv83bk99qm]{
    border-radius: 18px;
    border: 1px solid rgba(17,18,20,.10);
    background: rgba(255,255,255,.86);
    box-shadow: var(--shadow-2);
    overflow: hidden;
}

.nd-acc-head[b-xv83bk99qm]{
    width: 100%;
    border: 0;
    background: transparent;
    padding: 14px 14px;
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 12px;
    cursor:pointer;
    text-align:left;
}

.nd-acc-left[b-xv83bk99qm]{ min-width:0; }
.nd-acc-title[b-xv83bk99qm]{
    font-weight: 950;
    color: rgba(17,18,20,.86);
    font-size: 16px;
    line-height: 1.2;
}
.nd-acc-sub[b-xv83bk99qm]{
    margin-top: 4px;
    font-size: 12px;
    font-weight: 900;
    color: rgba(17,18,20,.45);
}

.nd-acc-right[b-xv83bk99qm]{
    display:flex;
    align-items:center;
    gap: 8px;
    flex-shrink: 0;
}

.nd-mini[b-xv83bk99qm]{
    height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    display:inline-flex;
    align-items:center;
    gap: 8px;
    font-size: 12px;
    font-weight: 950;
    border: 1px solid rgba(17,18,20,.10);
    white-space: nowrap;
}
.nd-mini i[b-xv83bk99qm]{ opacity:.9; }

.nd-mini-soft[b-xv83bk99qm]{
    background: rgba(17,18,20,.04);
    color: rgba(17,18,20,.72);
}
.nd-mini-hot[b-xv83bk99qm]{
    background: rgba(249,115,22,.10);
    border-color: rgba(249,115,22,.22);
    color: rgba(249,115,22,.95);
}

.nd-acc-chevron[b-xv83bk99qm]{
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display:grid;
    place-items:center;
    background: rgba(20,184,166,.08);
    border: 1px solid rgba(20,184,166,.18);
    color: rgba(20,184,166,.95);
}
.nd-acc-item .nd-acc-chevron i[b-xv83bk99qm]{
    transition: transform .25s ease;
}
.nd-acc-item.is-open .nd-acc-chevron i[b-xv83bk99qm]{
    transform: rotate(180deg);
}

.nd-acc-body[b-xv83bk99qm]{
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    border-top: 1px solid rgba(17,18,20,.06);
}
.nd-acc-item.is-open .nd-acc-body[b-xv83bk99qm]{
    max-height: 1200px; /* достаточно для анкеты */
}

.nd-acc-body-inner[b-xv83bk99qm]{
    padding: 14px;
    display:grid;
    gap: 12px;
}

.nd-readonly-multi[b-xv83bk99qm]{
    height: auto;
    padding: 12px 14px;
    align-items: flex-start;
    line-height: 1.35;
}

.nd-acc-stats[b-xv83bk99qm]{
    display:grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 10px;
    margin-top: 4px;
}

.nd-stat[b-xv83bk99qm]{
    border-radius: 16px;
    border: 1px solid rgba(17,18,20,.10);
    background: rgba(247,248,252,.80);
    padding: 10px 12px;
}
.nd-stat-cap[b-xv83bk99qm]{
    font-size: 12px;
    font-weight: 900;
    color: rgba(17,18,20,.45);
}
.nd-stat-val[b-xv83bk99qm]{
    margin-top: 4px;
    font-weight: 950;
    font-size: 18px;
    color: rgba(17,18,20,.82);
}

.nd-acc-actions[b-xv83bk99qm]{
    display:flex;
    justify-content:flex-end;
    padding-top: 4px;
    gap: 14px;
}

.nd-auth-btn i[b-xv83bk99qm]{
    margin-right: 8px;
}

@media (max-width: 560px){
    .nd-acc-right[b-xv83bk99qm]{ gap: 6px; }
    .nd-mini[b-xv83bk99qm]{ height: 28px; padding: 0 8px; gap: 6px; }
    .nd-acc-stats[b-xv83bk99qm]{ grid-template-columns: 1fr; }
}

/* ===== Accordion header avatar + photos ===== */
.nd-acc-headrow[b-xv83bk99qm]{
    display:flex;
    align-items:flex-start;
    gap: 12px;
}

.nd-acc-avatar[b-xv83bk99qm]{
    width: 88px;
    height: 88px;
    border-radius: 999px;
    overflow:hidden;
    border: 1px solid rgba(17,18,20,.10);
    background: rgba(17,18,20,.05);
    display:grid;
    place-items:center;
    flex: 0 0 auto;
    margin-top: 2px;
}
.nd-acc-avatar img[b-xv83bk99qm]{
    width:100%;
    height:100%;
    object-fit: cover;
    display:block;
}
.nd-acc-avatar-ph[b-xv83bk99qm]{
    width:100%;
    height:100%;
    display:grid;
    place-items:center;
    color: rgba(17,18,20,.35);
    font-size: 16px;
}

.nd-acc-meta[b-xv83bk99qm]{ min-width:0; }

.nd-acc-photos[b-xv83bk99qm]{
    margin-top: 10px;
    display:flex;
    gap: 8px;
    flex-wrap: wrap;
}

.nd-acc-ph[b-xv83bk99qm]{
    width: 34px;
    height: 34px;
    border-radius: 12px;
    overflow:hidden;
    border: 1px solid rgba(17,18,20,.10);
    background: rgba(17,18,20,.05);
}
.nd-acc-ph img[b-xv83bk99qm]{
    width:100%;
    height:100%;
    object-fit: cover;
    display:block;
}

/* body photos (optional) */
.nd-acc-body-photos[b-xv83bk99qm]{
    display:flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-bottom: 4px;
}
.nd-acc-body-ph[b-xv83bk99qm]{
    width: 84px;
    height: 84px;
    border-radius: 16px;
    border: 1px solid rgba(17,18,20,.10);
    background: rgba(17,18,20,.05);
    overflow:hidden;
    padding: 0;
    cursor: pointer;
}
.nd-acc-body-ph img[b-xv83bk99qm]{
    width:100%;
    height:100%;
    object-fit: cover;
    display:block;
}

@media (max-width: 560px){
    .nd-acc-avatar[b-xv83bk99qm]{ width: 50px; height: 50px; }
    .nd-acc-ph[b-xv83bk99qm]{ width: 30px; height: 30px; border-radius: 10px; }
    .nd-acc-body-ph[b-xv83bk99qm]{ width: 72px; height: 72px; }
}

.nd-qpill[b-xv83bk99qm]{
    margin-left: 10px;
    display:inline-flex;
    align-items:center;
    height: 22px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    color: rgba(17,18,20,.70);
    background: rgba(17,18,20,.06);
    border: 1px solid rgba(17,18,20,.10);
}

.nd-chips[b-xv83bk99qm]{
    display:flex;
    flex-wrap: wrap;
    gap: 8px;
}
.nd-chip[b-xv83bk99qm]{
    display:inline-flex;
    align-items:center;
    height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    color: rgba(20,184,166,.95);
    background: rgba(20,184,166,.10);
    border: 1px solid rgba(20,184,166,.18);
}

/* ===== Survey modal: scrollable + nice layout ===== */
.nd-surv-modal .nd-surv-inner[b-xv83bk99qm]{
    max-height: min(78vh, 740px);
    overflow: auto;
    padding-right: 6px;
}

.nd-surv-loading[b-xv83bk99qm]{
    padding: 18px 0 6px;
    display:grid;
    justify-items:center;
    gap: 10px;
}

.nd-surv[b-xv83bk99qm]{ display:grid; gap: 14px; padding-top: 8px; }
.nd-surv-block[b-xv83bk99qm]{
    border-radius: 18px;
    border: 1px solid rgba(17,18,20,.10);
    background: rgba(255,255,255,.82);
    padding: 12px 12px;
}
.nd-surv-h[b-xv83bk99qm]{
    font-weight: 1000;
    color: rgba(17,18,20,.80);
    margin-bottom: 10px;
    display:flex;
    align-items:center;
    gap: 10px;
}
.nd-surv-h[b-xv83bk99qm]::before{
    content:"";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--p1), var(--p2));
    box-shadow: 0 10px 22px rgba(20,184,166,.22);
}

.nd-surv-grid[b-xv83bk99qm]{
    display:grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.nd-surv-q[b-xv83bk99qm]{
    font-size: 12px;
    font-weight: 950;
    color: rgba(17,18,20,.58);
}
.nd-surv-a[b-xv83bk99qm]{
    border-radius: 14px;
    border: 1px solid rgba(17,18,20,.10);
    background: rgba(17,18,20,.03);
    padding: 10px 12px;
    font-weight: 850;
    color: rgba(17,18,20,.76);
    line-height: 1.35;
}

.nd-surv-actions[b-xv83bk99qm]{
    display:flex;
    justify-content:center;
    padding-top: 10px;
}

/* Button variant */
.nd-auth-btn-soft[b-xv83bk99qm]{
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(17,18,20,.12);
    color: rgba(17,18,20,.78);
}
.nd-auth-btn-soft:hover[b-xv83bk99qm]{
    background: rgba(20,184,166,.06);
    border-color: rgba(20,184,166,.18);
}

/* Keep modal comfy on mobile */
@media (max-width: 560px){
    .nd-surv-modal .nd-surv-inner[b-xv83bk99qm]{
        max-height: 76vh;
    }
}
/* _content/Dating.Admin.BlazorUI/Components/Shared/FakeSessionSidebar.razor.rz.scp.css */
.nd-ps-card-fake[b-blwree6yev] {
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    position: sticky;
    top: 76px;
}

.nd-ps-card-fake .nd-ps-avatar[b-blwree6yev] {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 0, 0, .06);
    background: #f1f5f9;
    box-shadow:
        0 0 0 4px rgba(255,255,255,.8),
        0 4px 12px rgba(0,0,0,.06);
}

.nd-ps-card-fake .nd-ps-avatar img[b-blwree6yev] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nd-ps-card-fake .nd-ps-avatar-ph[b-blwree6yev] {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: 26px;
    color: #cbd5e1;
}

.nd-ps-card-fake .nd-ps-nav[b-blwree6yev] {
    display: grid;
    gap: 4px;
}

.nd-ps-card-fake .nd-ps-link[b-blwree6yev] {
    min-height: 40px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s ease;
}

.nd-ps-card-fake .nd-ps-link i[b-blwree6yev] {
    width: 18px;
    text-align: center;
    font-size: 14px;
    opacity: .7;
}

.nd-ps-card-fake .nd-ps-link:hover[b-blwree6yev] {
    background: rgba(0, 0, 0, .04);
    color: #1e293b;
}

.nd-ps-card-fake .nd-ps-link.is-active[b-blwree6yev] {
    background: color-mix(in srgb, var(--sb-c1, #6366f1) 10%, transparent);
    color: var(--sb-c1, #6366f1);
    font-weight: 700;
}

.nd-ps-card-fake .nd-ps-link.is-active i[b-blwree6yev] {
    opacity: 1;
}

/* --- Mobile: horizontal nav strip --- */
@media (max-width: 760px) {
    .nd-ps-card-fake[b-blwree6yev] {
        border: none;
        border-radius: 0;
        padding: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        position: static;
    }

    .nd-ps-card-fake .nd-ps-avatar[b-blwree6yev] {
        display: none;
    }

    .nd-ps-card-fake .nd-ps-nav[b-blwree6yev] {
        display: flex;
        gap: 2px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 6px 16px;
    }

    .nd-ps-card-fake .nd-ps-nav[b-blwree6yev]::-webkit-scrollbar {
        display: none;
    }

    .nd-ps-card-fake .nd-ps-link[b-blwree6yev] {
        min-height: 36px;
        padding: 0 12px;
        font-size: 12.5px;
        white-space: nowrap;
        border-radius: 8px;
        gap: 6px;
        flex-shrink: 0;
    }

    .nd-ps-card-fake .nd-ps-link i[b-blwree6yev] {
        font-size: 13px;
        width: 16px;
    }

    .nd-ps-card-fake .nd-ps-link span[b-blwree6yev] {
        display: inline;
    }
}

@media (max-width: 480px) {
    .nd-ps-card-fake .nd-ps-nav[b-blwree6yev] {
        padding: 4px 10px;
    }

    .nd-ps-card-fake .nd-ps-link[b-blwree6yev] {
        min-height: 34px;
        padding: 0 10px;
        font-size: 12px;
    }
}
/* _content/Dating.Admin.BlazorUI/Components/Shared/PresencePinger.razor.rz.scp.css */
