/* /Components/Common/PersianDatePicker.razor.rz.scp.css */
.persian-datepicker-container[b-jzw5wx25vk] {
    position: relative;
    display: block;
}

.persian-datepicker-overlay[b-jzw5wx25vk] {
    position: fixed;
    inset: 0;
    z-index: 10001;
}

.persian-datepicker-popup[b-jzw5wx25vk] {
    position: fixed;
    z-index: 10002;
    background: var(--neo-bg-card);
    border: 1px solid var(--neo-border);
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
    padding: 10px;
    width: 280px;
}

/* ── Toolbar ── */

.persian-datepicker-toolbar[b-jzw5wx25vk] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.persian-datepicker-nav[b-jzw5wx25vk] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--neo-text-secondary);
    cursor: pointer;
    border-radius: 4px;
    padding: 4px 6px;
    transition: background .15s;
}

.persian-datepicker-nav:hover[b-jzw5wx25vk] {
    background: var(--neo-bg-subtle);
    color: var(--neo-text-primary);
}

.persian-datepicker-today[b-jzw5wx25vk] {
    border: none;
    background: transparent;
    color: var(--neo-text-secondary);
    cursor: pointer;
    border-radius: 4px;
    padding: 2px 10px;
    font-size: .85rem;
    transition: background .15s;
}

.persian-datepicker-today:hover[b-jzw5wx25vk] {
    background: var(--neo-bg-subtle);
    color: var(--neo-text-primary);
}

.persian-datepicker-title-group[b-jzw5wx25vk] {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ── Title (clickable zoom-out) ── */

.persian-datepicker-title[b-jzw5wx25vk] {
    font-size: .92rem;
    font-weight: 600;
    margin-bottom: 6px;
    text-align: center;
    color: var(--neo-primary);
    border: none;
    background: transparent;
    width: 100%;
    padding: 4px 0;
    border-radius: 4px;
    display: block;
}

.persian-datepicker-title-clickable[b-jzw5wx25vk] {
    cursor: pointer;
    transition: background .15s;
}

.persian-datepicker-title-clickable:hover[b-jzw5wx25vk] {
    background: var(--neo-primary-bg);
}

/* ── Days grid ── */

.persian-datepicker-grid[b-jzw5wx25vk] {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.persian-datepicker-grid th[b-jzw5wx25vk] {
    text-align: center;
    color: var(--neo-text-muted);
    font-weight: 500;
    padding: 4px 0;
    font-size: .82rem;
}

.persian-datepicker-grid td[b-jzw5wx25vk] {
    text-align: center;
    padding: 1px;
}

.persian-datepicker-day[b-jzw5wx25vk] {
    width: 100%;
    aspect-ratio: 1 / 1;
    border: none;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    color: var(--neo-text-primary);
    font-size: .85rem;
    transition: background .12s;
}

.persian-datepicker-day:hover[b-jzw5wx25vk] {
    background: var(--neo-bg-subtle);
}

.persian-datepicker-day-muted[b-jzw5wx25vk] {
    color: var(--neo-text-muted);
}

.persian-datepicker-day-selected[b-jzw5wx25vk] {
    background: var(--neo-primary);
    color: var(--neo-text-inverse);
    font-weight: 600;
}

.persian-datepicker-day-selected:hover[b-jzw5wx25vk] {
    background: var(--neo-primary-dark);
}

.persian-datepicker-day-today[b-jzw5wx25vk] {
    outline: 2px solid var(--neo-primary);
    outline-offset: -2px;
}

/* ── Zoom grid (months / years) ── */

.persian-datepicker-zoom-grid[b-jzw5wx25vk] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 4px 0;
}

.persian-datepicker-zoom-grid-4[b-jzw5wx25vk] {
    grid-template-columns: repeat(4, 1fr);
}

.persian-datepicker-zoom-cell[b-jzw5wx25vk] {
    border: none;
    background: transparent;
    border-radius: 6px;
    padding: 10px 4px;
    font-size: .85rem;
    cursor: pointer;
    color: var(--neo-text-primary);
    text-align: center;
    transition: background .12s;
}

.persian-datepicker-zoom-cell:hover[b-jzw5wx25vk] {
    background: var(--neo-bg-subtle);
}

.persian-datepicker-zoom-selected[b-jzw5wx25vk] {
    background: var(--neo-primary);
    color: var(--neo-text-inverse);
    font-weight: 600;
}

.persian-datepicker-zoom-selected:hover[b-jzw5wx25vk] {
    background: var(--neo-primary-dark);
}

/* ── Calendar icon in button ── */

.pdp-icon[b-jzw5wx25vk] {
    display: block;
}

/* ── Disabled state ── */

.persian-datepicker-disabled[b-jzw5wx25vk] {
    opacity: 0.6;
    pointer-events: none;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════
   MAIN LAYOUT — Modern v3.0 (Enhanced)
   ═══════════════════════════════════════════════════════ */

.page[b-e8p1kdista] {
    min-height: 100vh;
    display: flex;
    flex-direction: row;
}

.main-content[b-e8p1kdista] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* ── Sidebar ── */
.sidebar[b-e8p1kdista] {
    width: var(--neo-sidebar-width);
    background: var(--neo-sidebar-bg);
    color: #fff;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    flex-shrink: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform var(--neo-transition-slow), box-shadow 0.3s ease;
    z-index: 300;
}

/* ── Content Area ── */
.content[b-e8p1kdista] {
    flex: 1;
    padding: 0;
}

/* ── Topbar Start (hamburger + tenant + fiscal year) ── */
.neo-topbar-start[b-e8p1kdista] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
}

/* ── Topbar User Dropdown ── */
.neo-topbar-user-dropdown[b-e8p1kdista] {
    position: relative;
}

.neo-topbar-user-trigger[b-e8p1kdista] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 1px solid transparent;
    border-radius: var(--neo-radius-sm);
    padding: 0.35rem 0.7rem;
    cursor: pointer;
    font-family: inherit;
    transition: all var(--neo-transition-fast);
}

.neo-topbar-user-trigger:hover[b-e8p1kdista] {
    background: var(--neo-bg-subtle);
    border-color: var(--neo-border);
    transform: translateY(-1px);
}

.neo-topbar-avatar[b-e8p1kdista] {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neo-primary-bg), rgba(99, 102, 241, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neo-primary);
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.neo-topbar-user-trigger:hover .neo-topbar-avatar[b-e8p1kdista] {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}

.neo-topbar-chevron[b-e8p1kdista]  svg {
    width: 15px;
    height: 15px;
    color: var(--neo-text-muted);
    transition: transform 0.2s ease;
}

.neo-topbar-chevron-open[b-e8p1kdista]  svg {
    transform: rotate(180deg);
}

/* ── User Menu ── */
.neo-user-menu[b-e8p1kdista] {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 230px;
    background: var(--neo-bg-card);
    border: 1px solid var(--neo-border);
    border-radius: var(--neo-radius-md);
    box-shadow: var(--neo-shadow-xl);
    z-index: 200;
    padding: 0.6rem 0;
    animation: neo-menu-fade-in-b-e8p1kdista 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes neo-menu-fade-in-b-e8p1kdista {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.neo-user-menu-header[b-e8p1kdista] {
    padding: 0.7rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.neo-user-menu-name[b-e8p1kdista] {
    font-weight: 700;
    font-size: var(--neo-font-base);
    color: var(--neo-text-primary);
}

.neo-user-menu-tenant[b-e8p1kdista] {
    font-size: var(--neo-font-xs);
    color: var(--neo-text-muted);
}

.neo-user-menu-divider[b-e8p1kdista] {
    height: 1px;
    background: var(--neo-border);
    margin: 0.4rem 0;
}

.neo-user-menu-item[b-e8p1kdista] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.6rem 1.1rem;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    font-size: var(--neo-font-sm);
    color: var(--neo-text-secondary);
    transition: all var(--neo-transition-fast);
    text-align: right;
}

.neo-user-menu-item:hover[b-e8p1kdista] {
    background: var(--neo-bg-subtle);
    color: var(--neo-text-primary);
    transform: translateX(-2px);
}

.neo-user-menu-item[b-e8p1kdista]  svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.neo-user-menu-item:hover[b-e8p1kdista]  svg {
    transform: scale(1.1);
}

.neo-user-menu-item-danger[b-e8p1kdista] {
    color: var(--neo-danger);
}

.neo-user-menu-item-danger:hover[b-e8p1kdista] {
    background: var(--neo-danger-bg);
    color: var(--neo-danger);
}

/* ── Responsive: Off-canvas sidebar ── */
@media (max-width: 991.98px) {
    .page[b-e8p1kdista] {
        flex-direction: column;
    }

    .sidebar[b-e8p1kdista] {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: var(--neo-sidebar-width);
        height: 100vh;
        transform: translateX(100%);
        border-left: none;
        box-shadow: none;
    }

    .sidebar-open[b-e8p1kdista] {
        transform: translateX(0);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.25);
    }

    .main-content[b-e8p1kdista] {
        min-height: 100vh;
    }
}

@media (max-width: 768px) {
    .neo-topbar-start[b-e8p1kdista] {
        gap: 0.4rem;
    }

    /* چیپِ سال مالی به این ناحیه منتقل شد و اینجا برخلافِ .neo-topbar-actions قاعدهٔ
       flex-wrap ندارد؛ ارتفاعِ نوار هم ثابت است (۵۶px، و زیرِ ۴۸۰px مقدارِ ۵۰px). پس
       متنِ بلندِ «سال مالی: ۱۴۰۵» روی گوشی نوار را افقی بیرون می‌زد.
       فقط متن مخفی می‌شود نه خودِ چیپ: آیکنِ تقویم می‌ماند، لینک کار می‌کند، و صفتِ
       title مقصد را با نگه‌داشتنِ انگشت نشان می‌دهد. */
    .neo-fy-chip-text[b-e8p1kdista] {
        display: none;
    }
}

@media (max-width: 480px) {
    .sidebar[b-e8p1kdista] {
        width: 85vw;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .sidebar[b-e8p1kdista] {
        max-height: 45vh;
    }

    .neo-topbar[b-e8p1kdista] {
        padding: 0 0.6rem;
        height: 50px;
    }
}

/* ── Error Boundary ── */
[b-e8p1kdista] .neo-error-boundary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--neo-text-muted);
}

[b-e8p1kdista] .neo-error-boundary-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    animation: neo-error-pulse-b-e8p1kdista 2s ease-in-out infinite;
}

@keyframes neo-error-pulse-b-e8p1kdista {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

[b-e8p1kdista] .neo-error-boundary h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--neo-text);
    margin-bottom: 0.6rem;
}

[b-e8p1kdista] .neo-error-boundary p {
    margin-bottom: 1.5rem;
    font-size: 0.92rem;
}

/* ── Blazor Error UI ── */
#blazor-error-ui[b-e8p1kdista] {
    color-scheme: light only;
    background: var(--neo-warning-bg);
    border-top: 2px solid var(--neo-warning);
    bottom: 0;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.8rem 1.6rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    animation: neo-slide-up-b-e8p1kdista 0.3s ease;
}

@keyframes neo-slide-up-b-e8p1kdista {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

#blazor-error-ui .dismiss[b-e8p1kdista] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

#blazor-error-ui .dismiss:hover[b-e8p1kdista] {
    transform: scale(1.2) rotate(90deg);
}

/* ── Sidebar backdrop for mobile ── */
.neo-sidebar-backdrop[b-e8p1kdista] {
    display: none;
}

@media (max-width: 991.98px) {
    .neo-sidebar-backdrop[b-e8p1kdista] {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0);
        z-index: 250;
        pointer-events: none;
        transition: background 0.3s ease;
    }

    .neo-sidebar-backdrop.open[b-e8p1kdista] {
        background: rgba(0, 0, 0, 0.5);
        pointer-events: auto;
    }
}

/* ── Smooth scroll behavior ── */
.content[b-e8p1kdista] {
    scroll-behavior: smooth;
}

/* ── Skip link for accessibility ── */
.neo-skip-link[b-e8p1kdista] {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--neo-primary);
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 0 0 var(--neo-radius-sm) 0;
    z-index: 10000;
    transition: top 0.2s ease;
}

.neo-skip-link:focus[b-e8p1kdista] {
    top: 0;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════
   NAV MENU — Modern v3.0 (Redesigned)
   ═══════════════════════════════════════════════════════ */

/* ──── Brand ──── */
/* ⚠ قاعده‌های .neo-brand-icon* و .neo-brand-info/name/subtitle حذف شدند: از ۲۰۲۶-۰۸-۱۹ که
   نشانِ مربع و دو خطِ متن با یک فایلِ لوگو جایگزین شدند، هیچ مصرف‌کننده‌ای نداشتند. این فایل
   scoped است، پس جای دیگری هم به آن‌ها وابسته نیست (بررسی شد).
   row-reverse و gap و direction هم رفتند — ظرف تک‌فرزند است. */
.neo-sidebar-brand[b-t94jojibf1] {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0.5rem;
}

/* عرض سیال تا روی سایدبارِ باریک‌تر هم له نشود؛ نسبت با height:auto حفظ می‌شود. */
.neo-brand-logo[b-t94jojibf1] {
    display: block;
    width: 100%;
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}

/* ──── Section Label ──── */
.neo-nav-section-label[b-t94jojibf1] {
    padding: 1.1rem 1.2rem 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(226, 232, 255, 0.95);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ──── Scrollable area ──── */
.neo-nav-scrollable[b-t94jojibf1] {
    height: calc(100vh - 80px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.15) transparent;
    padding-bottom: 1.5rem;
}

.neo-nav-scrollable[b-t94jojibf1]::-webkit-scrollbar {
    width: 5px;
}

.neo-nav-scrollable[b-t94jojibf1]::-webkit-scrollbar-track {
    background: transparent;
}

.neo-nav-scrollable[b-t94jojibf1]::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.18);
    border-radius: 10px;
    transition: background 0.2s ease;
}

.neo-nav-scrollable[b-t94jojibf1]::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.28);
}

.neo-nav[b-t94jojibf1] {
    padding: 0.5rem 0 1rem;
}

/* ──── SVG icon baseline ──── */
.neo-nav-icon[b-t94jojibf1],
:deep .neo-nav-icon.k-svg-icon[b-t94jojibf1] {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.neo-nav-icon svg[b-t94jojibf1] {
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ──── Dashboard / top-level flat items ──── */
[b-t94jojibf1] .neo-nav-home {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 1.2rem;
    color: var(--neo-sidebar-text);
    text-decoration: none;
    font-size: 0.89rem;
    font-weight: 500;
    border-radius: 10px;
    margin: 3px 10px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

[b-t94jojibf1] .neo-nav-home::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--neo-primary-lighter);
    opacity: 0;
    transition: opacity 0.2s ease;
}

[b-t94jojibf1] .neo-nav-home:hover {
    background: var(--neo-sidebar-hover);
    color: #fff;
    transform: translateX(-2px);
}

[b-t94jojibf1] .neo-nav-home:hover .neo-nav-icon,
[b-t94jojibf1] .neo-nav-home:hover .neo-nav-icon.k-svg-icon {
    opacity: 1;
    transform: scale(1.1);
}

[b-t94jojibf1] .neo-nav-home.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.28), rgba(129, 140, 248, 0.18));
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}

[b-t94jojibf1] .neo-nav-home.active::before {
    opacity: 1;
}

[b-t94jojibf1] .neo-nav-home.active .neo-nav-icon,
[b-t94jojibf1] .neo-nav-home.active .neo-nav-icon.k-svg-icon {
    opacity: 1;
    color: var(--neo-sidebar-group);
}

.neo-nav-group[b-t94jojibf1] {
    margin-bottom: 7px;
}

.neo-nav-group > summary[b-t94jojibf1] {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    /* عنوانِ گروه کمی جلوتر (به سمت لبهٔ راستِ RTL) تا زیرمنوها نسبت به آن تورفته و متمایز شوند */
    padding: 0.6rem 0.65rem 0.6rem 1.2rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--neo-sidebar-group);
    letter-spacing: 0.02em;
    cursor: pointer;
    user-select: none;
    border-radius: 10px;
    margin: 0 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.neo-nav-group > summary[b-t94jojibf1]::-webkit-details-marker {
    display: none;
}

.neo-nav-group > summary:hover[b-t94jojibf1] {
    background: rgba(255,255,255,0.07);
    color: var(--neo-sidebar-text);
    transform: translateX(-2px);
}

/* Chevron — swap closed/open icons */
.neo-nav-chevron[b-t94jojibf1],
:deep .neo-nav-chevron.k-svg-icon[b-t94jojibf1] {
    width: 15px;
    height: 15px;
    margin-right: auto;
    margin-left: 0;
    opacity: 0.6;
    flex-shrink: 0;
    transition: opacity 0.2s ease, color 0.2s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[b-t94jojibf1] .neo-nav-chevron-open { 
    display: none; 
}

.neo-nav-group[open] > summary[b-t94jojibf1]  .neo-nav-chevron-closed { 
    display: none; 
}

.neo-nav-group[open] > summary[b-t94jojibf1]  .neo-nav-chevron-open { 
    display: inline-flex;
    transform: rotate(180deg);
}

.neo-nav-group[open] > summary[b-t94jojibf1],
.neo-nav-group[open] > summary:hover[b-t94jojibf1] {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.22), rgba(129, 140, 248, 0.12));
    color: #fff;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.15);
}

.neo-nav-group[open] > summary[b-t94jojibf1]::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--neo-primary-lighter);
    border-radius: 0 2px 2px 0;
}

.neo-nav-group[open] > summary[b-t94jojibf1]  .neo-nav-chevron {
    opacity: 1;
    color: var(--neo-primary-lighter);
}

/* ════════════════════════════════════════════════════════════
   Hierarchical Palette for Level Distinction
   ════════════════════════════════════════════════════════════ */

.neo-nav-group > summary[b-t94jojibf1] {
    color: var(--neo-primary-lighter);
}

/* ── Level 2: nested summary ── */
.neo-nav-group-nested > summary[b-t94jojibf1] {
    padding-right: 2.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 14px 8px;
    color: rgba(165, 180, 252, 0.65);
    background: rgba(165, 180, 252, 0.05);
    opacity: 1;
}

.neo-nav-group-nested > summary:hover[b-t94jojibf1] {
    background: rgba(165, 180, 252, 0.12);
    color: rgba(199, 210, 254, 1);
}

.neo-nav-group-nested[open] > summary[b-t94jojibf1] {
    color: #fff;
}

.neo-nav-group-nested > summary[b-t94jojibf1]  .neo-nav-chevron {
    width: 13px;
    height: 13px;
}

/* ── Level 3: children inside nested details ── */
.neo-nav-group-nested[b-t94jojibf1]  .neo-nav-item-child {
    padding-right: 5rem;
    color: rgba(199, 210, 254, 0.75);
    font-size: 0.83rem;
}

    .neo-nav-group-nested[b-t94jojibf1]  .neo-nav-item-child:hover {
        color: #fff;
        width: 100%;
    }

/* ──── Child nav items ──── */
[b-t94jojibf1] .neo-nav-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 2.2rem 0.5rem 1.2rem;
    color: var(--neo-sidebar-text);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 470;
    border-radius: 10px;
    margin: 10px 10px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

[b-t94jojibf1] .neo-nav-item-child {
    padding-right: 2.2rem;
    width:100%;
}

[b-t94jojibf1] .neo-nav-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--neo-primary-lighter);
    opacity: 0;
    transition: opacity 0.2s ease;
    border-radius: 0 2px 2px 0;
}

[b-t94jojibf1] .neo-nav-item:hover {
    background: var(--neo-sidebar-hover);
    color: #fff;
    transform: translateX(-2px);
}

[b-t94jojibf1] .neo-nav-item.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.28), rgba(129, 140, 248, 0.18));
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
    width:100%;
}

[b-t94jojibf1] .neo-nav-item.active::before {
    opacity: 1;
}

/* ──── Separator ──── */
.neo-nav-separator[b-t94jojibf1] {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin: 8px 1.5rem 8px 1rem;
}

/* ──── Sub-label ──── */
.neo-nav-sublabel[b-t94jojibf1] {
    display: block;
    padding: 0.5rem 2.9rem 0.2rem;
    font-size: 0.76rem;
    font-weight: 700;
    color: rgba(226, 232, 255, 0.8);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ──── Collapsible sub-group ──── */
.neo-nav-subgroup[b-t94jojibf1] {
    margin: 0;
    border: none;
}

.neo-nav-subgroup > summary.neo-nav-sublabel[b-t94jojibf1] {
    cursor: pointer;
    list-style: none;
    user-select: none;
    padding: 0.55rem 2.9rem 0.25rem;
    transition: color 0.2s ease;
}

.neo-nav-subgroup > summary.neo-nav-sublabel:hover[b-t94jojibf1] {
    color: rgba(226, 232, 255, 1);
}

.neo-nav-subgroup > summary.neo-nav-sublabel[b-t94jojibf1]::-webkit-details-marker {
    display: none;
}

.neo-nav-subgroup > summary.neo-nav-sublabel[b-t94jojibf1]::before {
    content: "◂";
    margin-left: 0.45rem;
    font-size: 0.65rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.neo-nav-subgroup[open] > summary.neo-nav-sublabel[b-t94jojibf1]::before {
    transform: rotate(-90deg);
}

/* ──── Disabled items ──── */
[b-t94jojibf1] .neo-nav-item-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* ──── Responsive ──── */
@media (max-width: 991.98px) {
    .neo-nav-scrollable[b-t94jojibf1] {
        height: auto;
        max-height: 65vh;
    }
}

/* ── Favorite star toggle ── */
.neo-nav-fav-row[b-t94jojibf1] {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    position: relative;
    justify-content:space-between;
}

.neo-nav-fav-row > .neo-nav-item[b-t94jojibf1] {
    flex: 1 1 auto;
    min-width: 0;
}

.neo-nav-fav-toggle[b-t94jojibf1] {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    border-radius: 6px;
    font-size: 1.05rem;
    line-height: 1;
    padding: 0;
    margin-left: 0.2rem;
    opacity: 0;
    transition: opacity 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.neo-nav-fav-row:hover .neo-nav-fav-toggle[b-t94jojibf1],
.neo-nav-fav-toggle.active[b-t94jojibf1],
.neo-nav-fav-toggle:focus[b-t94jojibf1] {
    opacity: 1;
}

.neo-nav-fav-toggle:hover[b-t94jojibf1] {
    background: rgba(255, 255, 255, 0.1);
    color: #ffd166;
    transform: scale(1.15);
}

.neo-nav-fav-toggle.active[b-t94jojibf1] {
    color: #ffd166;
}

.neo-nav-item-fav[b-t94jojibf1] {
    background: linear-gradient(90deg, rgba(255, 209, 102, 0.08), transparent);
    border-left: 2px solid rgba(255, 209, 102, 0.4);
}

/* Legacy toggles for mobile */
.navbar-toggler[b-t94jojibf1] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

/* ──── Smooth animations for opening/closing groups ──── */
.neo-nav-group[open][b-t94jojibf1] {
    animation: neo-expand-b-t94jojibf1 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #35326e;
}

@keyframes neo-expand-b-t94jojibf1 {
    from {
        opacity: 0.8;
    }
    to {
        opacity: 1;
    }
}
/* /Components/Layout/PublicLayout.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════
   PUBLIC LAYOUT — Scoped Styles (Modern 2025)
   ═══════════════════════════════════════════════════════ */

.neo-public-shell[b-q9tbe4d6if] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, #0f0c29 0%, #1a1440 30%, #302b63 60%, #24243e 100%);
    position: relative;
}

.neo-public-shell[b-q9tbe4d6if]::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 800px 600px at 20% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 600px 500px at 80% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.neo-public-header[b-q9tbe4d6if] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 1.5rem;
    position: relative;
    z-index: 1;
}

.neo-public-brand[b-q9tbe4d6if] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
    direction: ltr;
}

.neo-public-brand:hover[b-q9tbe4d6if] {
    color: #a5b4fc;
}

.neo-public-brand-icon[b-q9tbe4d6if] {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: white;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
}

/* ArsenNeo SVG variant — transparent container, SVG has its own rounded face */
.neo-public-brand-icon--arsen[b-q9tbe4d6if] {
    background: transparent;
    box-shadow: none;
    padding: 0;
    object-fit: cover;
    display: block;
}

.neo-public-nav[b-q9tbe4d6if] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.neo-public-content[b-q9tbe4d6if] {
    flex: 1;
    position: relative;
    z-index: 1;
}

.neo-public-footer[b-q9tbe4d6if] {
    padding: 1rem 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    letter-spacing: 0.02em;
    color:#fff;
}

@media (max-width: 480px) {
    .neo-public-header[b-q9tbe4d6if] {
        padding: 0.75rem 1rem;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-a1kdhqxo8f],
.components-reconnect-repeated-attempt-visible[b-a1kdhqxo8f],
.components-reconnect-failed-visible[b-a1kdhqxo8f],
.components-pause-visible[b-a1kdhqxo8f],
.components-resume-failed-visible[b-a1kdhqxo8f],
.components-rejoining-animation[b-a1kdhqxo8f] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-a1kdhqxo8f],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-a1kdhqxo8f],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-a1kdhqxo8f],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-a1kdhqxo8f],
#components-reconnect-modal.components-reconnect-retrying[b-a1kdhqxo8f],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-a1kdhqxo8f],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-a1kdhqxo8f],
#components-reconnect-modal.components-reconnect-failed[b-a1kdhqxo8f],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-a1kdhqxo8f] {
    display: block;
}


#components-reconnect-modal[b-a1kdhqxo8f] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-a1kdhqxo8f 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-a1kdhqxo8f 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-a1kdhqxo8f 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-a1kdhqxo8f]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-a1kdhqxo8f 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-a1kdhqxo8f {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-a1kdhqxo8f {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-a1kdhqxo8f {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-a1kdhqxo8f] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-a1kdhqxo8f] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-a1kdhqxo8f] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-a1kdhqxo8f] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-a1kdhqxo8f] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-a1kdhqxo8f] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-a1kdhqxo8f] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-a1kdhqxo8f 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-a1kdhqxo8f] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-a1kdhqxo8f {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Cheques/ChequeList.razor.rz.scp.css */
/* CS2 / E20 (۲۰۲۶-۰۸-۲۸) — کارت‌های وضعیتِ چک کلیک‌پذیر شدند.

   چرا scoped و نه app.css: این قاعده فقط یک صفحه لازمش دارد. (در CS1 برعکس بود —
   آنجا چهار صفحه یک قاعدهٔ مشترک می‌خواستند، پس به app.css رفت.)

   ⚠ کارتِ «سررسید نزدیک» عمداً اینجا نیست: از قبل کلیک‌پذیر بود و حالتِ فعالش را با
   style درون‌خطی نشان می‌دهد. دست‌نزدن به آن قیدِ صریحِ CS2 است، پس روی همان صفحه دو
   مکانیزمِ متفاوت برای یک مفهوم می‌ماند — یک ناهماهنگیِ کوچکِ آگاهانه، نه سهو. */

.cheque-stat-toggle[b-t8liicpcgz] {
    cursor: pointer;
    border-radius: 8px;
    outline: 2px solid transparent;
    transition: outline-color 0.15s ease;
}

.cheque-stat-toggle:hover[b-t8liicpcgz] {
    outline-color: var(--neo-border, #cbd5e1);
}

.cheque-stat-toggle--active[b-t8liicpcgz] {
    outline-color: var(--neo-primary, #6366f1);
}
/* /Components/Pages/Commerce/PaymentResult.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════
   PAYMENT RESULT — Scoped Styles
   Design System: Neo Accounting v2.0
   ═══════════════════════════════════════════════════════ */

/* ── Wrapper ── */
.pr-wrapper[b-7dsex9lnqw] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1E1B4B 0%, #312E81 45%, #4338CA 100%);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

/* ── Background orbs ── */
.pr-bg-orb[b-7dsex9lnqw] {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: pr-orb-pulse-b-7dsex9lnqw 8s ease-in-out infinite;
}

.pr-bg-orb-1[b-7dsex9lnqw] {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.pr-bg-orb-2[b-7dsex9lnqw] {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: 3s;
}

.pr-bg-orb-3[b-7dsex9lnqw] {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.06) 0%, transparent 70%);
    top: 50%;
    left: 30%;
    animation-delay: 6s;
}

@keyframes pr-orb-pulse-b-7dsex9lnqw {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

/* ── Card ── */
.pr-card[b-7dsex9lnqw] {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 24px;
    padding: 2.75rem 2.5rem 2rem;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    animation: pr-slide-up-b-7dsex9lnqw 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
    text-align: center;
}

@keyframes pr-slide-up-b-7dsex9lnqw {
    from { opacity: 0; transform: translateY(32px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ══════════════════════════════════════
   LOADING STATE
══════════════════════════════════════ */
.pr-loading[b-7dsex9lnqw] {
    padding: 1.5rem 0 2rem;
}

.pr-spinner[b-7dsex9lnqw] {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
}

.pr-spinner-ring[b-7dsex9lnqw] {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--neo-primary);
    animation: pr-spin-b-7dsex9lnqw 0.9s linear infinite;
}

.pr-spinner-ring-2[b-7dsex9lnqw] {
    inset: 8px;
    border-top-color: var(--neo-primary-lighter);
    animation-duration: 1.3s;
    animation-direction: reverse;
}

@keyframes pr-spin-b-7dsex9lnqw {
    to { transform: rotate(360deg); }
}

.pr-loading-text[b-7dsex9lnqw] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neo-text-primary);
    margin: 0 0 0.4rem;
}

.pr-loading-sub[b-7dsex9lnqw] {
    font-size: 0.82rem;
    color: var(--neo-text-muted);
    margin: 0;
}

/* ══════════════════════════════════════
   ICON AREA (success / fail / error)
══════════════════════════════════════ */
.pr-icon-wrap[b-7dsex9lnqw] {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pulsing ring behind icon */
.pr-icon-ring[b-7dsex9lnqw] {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    animation: pr-ring-pulse-b-7dsex9lnqw 2.5s ease-out infinite;
}

.pr-icon-success .pr-icon-ring[b-7dsex9lnqw] { background: radial-gradient(circle, rgba(5, 150, 105, 0.12) 0%, transparent 70%); }
.pr-icon-fail    .pr-icon-ring[b-7dsex9lnqw] { background: radial-gradient(circle, rgba(220, 38, 38, 0.12) 0%, transparent 70%); }
.pr-icon-error   .pr-icon-ring[b-7dsex9lnqw] { background: radial-gradient(circle, rgba(217, 119, 6, 0.12) 0%, transparent 70%); }

@keyframes pr-ring-pulse-b-7dsex9lnqw {
    0%   { transform: scale(1);    opacity: 1; }
    70%  { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
}

/* ── Animated SVG checkmark ── */
.pr-check-svg[b-7dsex9lnqw],
.pr-x-svg[b-7dsex9lnqw] {
    width: 88px;
    height: 88px;
}

.pr-check-circle[b-7dsex9lnqw] {
    stroke: var(--neo-success);
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-linecap: round;
    animation: pr-circle-draw-b-7dsex9lnqw 0.7s cubic-bezier(0.65, 0, 0.45, 1) 0.2s forwards;
}

.pr-check-mark[b-7dsex9lnqw] {
    stroke: var(--neo-success);
    stroke-width: 3;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: pr-mark-draw-b-7dsex9lnqw 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.75s forwards;
}

.pr-x-circle[b-7dsex9lnqw] {
    stroke: var(--neo-danger);
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-linecap: round;
    animation: pr-circle-draw-b-7dsex9lnqw 0.7s cubic-bezier(0.65, 0, 0.45, 1) 0.2s forwards;
}

.pr-x-mark[b-7dsex9lnqw] {
    stroke: var(--neo-danger);
    stroke-width: 3;
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    stroke-linecap: round;
    animation: pr-mark-draw-b-7dsex9lnqw 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.75s forwards;
}

/* Error icon (Telerik SVG) */
.pr-icon-error[b-7dsex9lnqw]  svg {
    width: 56px;
    height: 56px;
    color: var(--neo-warning);
}

@keyframes pr-circle-draw-b-7dsex9lnqw {
    to { stroke-dashoffset: 0; }
}

@keyframes pr-mark-draw-b-7dsex9lnqw {
    to { stroke-dashoffset: 0; }
}

/* ══════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════ */
.pr-status-title[b-7dsex9lnqw] {
    font-size: 1.55rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.pr-state-success .pr-status-title[b-7dsex9lnqw] { color: var(--neo-success); }
.pr-state-fail    .pr-status-title[b-7dsex9lnqw] { color: var(--neo-danger); }
.pr-state-error   .pr-status-title[b-7dsex9lnqw] { color: var(--neo-warning); }

.pr-status-desc[b-7dsex9lnqw] {
    font-size: 0.9rem;
    color: var(--neo-text-secondary);
    margin: 0 0 1.5rem;
    line-height: 1.7;
}

/* ══════════════════════════════════════
   DETAIL ROWS
══════════════════════════════════════ */
.pr-details[b-7dsex9lnqw] {
    background: var(--neo-bg-subtle);
    border-radius: 14px;
    padding: 0.25rem 0;
    margin-bottom: 1.25rem;
    text-align: right;
    overflow: hidden;
    border: 1px solid var(--neo-border-light);
}

.pr-detail-row[b-7dsex9lnqw] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 1rem;
    font-size: 0.875rem;
    transition: background var(--neo-transition-fast);
}

.pr-detail-row:not(:last-child)[b-7dsex9lnqw] {
    border-bottom: 1px solid var(--neo-border-light);
}

.pr-detail-row:hover[b-7dsex9lnqw] {
    background: rgba(79, 70, 229, 0.03);
}

.pr-detail-icon[b-7dsex9lnqw] {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.pr-detail-icon[b-7dsex9lnqw]  svg {
    width: 15px;
    height: 15px;
    color: var(--neo-text-muted);
}

.pr-detail-label[b-7dsex9lnqw] {
    color: var(--neo-text-muted);
    font-weight: 500;
    flex: 1;
}

.pr-detail-value[b-7dsex9lnqw] {
    color: var(--neo-text-primary);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    direction: ltr;
}

.pr-detail-ref[b-7dsex9lnqw] {
    font-size: 0.82rem;
    background: var(--neo-primary-bg);
    color: var(--neo-primary);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    letter-spacing: 0.03em;
}

/* ══════════════════════════════════════
   NOTICE BANNERS
══════════════════════════════════════ */
.pr-notice[b-7dsex9lnqw] {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 0.83rem;
    line-height: 1.65;
    text-align: right;
    margin-bottom: 1.5rem;
}

.pr-notice[b-7dsex9lnqw]  svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pr-notice-success[b-7dsex9lnqw] {
    background: var(--neo-success-bg);
    border: 1px solid var(--neo-success-border);
    color: var(--neo-success);
}

.pr-notice-warning[b-7dsex9lnqw] {
    background: var(--neo-warning-bg);
    border: 1px solid var(--neo-warning-border);
    color: var(--neo-warning);
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.pr-actions[b-7dsex9lnqw] {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 0.25rem;
}

.pr-btn[b-7dsex9lnqw] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-size: 0.93rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--neo-transition-base);
    cursor: pointer;
    border: none;
    margin-bottom: 0.65rem;
}

.pr-btn[b-7dsex9lnqw]  svg {
    width: 18px;
    height: 18px;
}

.pr-btn-primary[b-7dsex9lnqw] {
    background: linear-gradient(135deg, var(--neo-primary) 0%, var(--neo-primary-light) 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}

.pr-btn-primary:hover[b-7dsex9lnqw] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.45);
    color: #fff;
}

.pr-btn-primary:active[b-7dsex9lnqw] {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

.pr-btn-secondary[b-7dsex9lnqw] {
    background: var(--neo-bg-subtle);
    color: var(--neo-text-secondary);
    border: 1px solid var(--neo-border);
}

.pr-btn-secondary:hover[b-7dsex9lnqw] {
    background: var(--neo-border-light);
    color: var(--neo-text-primary);
    transform: translateY(-1px);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.pr-footer[b-7dsex9lnqw] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--neo-text-muted);
    padding-top: 1.25rem;
    border-top: 1px solid var(--neo-border-light);
    margin-top: 0.5rem;
}

.pr-footer[b-7dsex9lnqw]  svg {
    width: 13px;
    height: 13px;
    color: var(--neo-text-muted);
}

.pr-footer-link[b-7dsex9lnqw] {
    color: var(--neo-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--neo-transition-fast);
}

.pr-footer-link:hover[b-7dsex9lnqw] {
    color: var(--neo-primary-dark);
    text-decoration: underline;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 520px) {
    .pr-card[b-7dsex9lnqw] {
        padding: 2rem 1.5rem 1.5rem;
        border-radius: 20px;
    }

    .pr-status-title[b-7dsex9lnqw] {
        font-size: 1.3rem;
    }
}
/* /Components/Pages/Commerce/Pricing.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════
   PRICING PAGE — Scoped Styles
   ═══════════════════════════════════════════════════════ */

/* ── Hero ── */
.pricing-hero[b-75ns00ubfx] {
    text-align: center;
    padding: 2rem 1rem 1.5rem;
}

.pricing-hero h1[b-75ns00ubfx] {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    color: var(--neo-text);
}

.pricing-hero p[b-75ns00ubfx] {
    font-size: 1rem;
    color: var(--neo-text-muted);
    margin: 0;
}

/* ── Plan Grid ── */
.pricing-grid[b-75ns00ubfx] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

/* ── Plan Card ── */
.pricing-card[b-75ns00ubfx] {
    background: var(--neo-surface);
    border: 1px solid var(--neo-border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.pricing-card:hover[b-75ns00ubfx] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ── Popular Badge ── */
.pricing-card--popular[b-75ns00ubfx] {
    border-color: var(--neo-primary);
    border-width: 2px;
}

.pricing-popular-badge[b-75ns00ubfx] {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neo-primary);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

/* ── Card Header ── */
.pricing-card-header[b-75ns00ubfx] {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-card-name[b-75ns00ubfx] {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: var(--neo-text);
}

.pricing-card-desc[b-75ns00ubfx] {
    font-size: 0.85rem;
    color: var(--neo-text-muted);
    margin: 0;
}

/* ── Price ── */
.pricing-price[b-75ns00ubfx] {
    text-align: center;
    margin-bottom: 1.25rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--neo-border);
}

.pricing-amount[b-75ns00ubfx] {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--neo-primary);
}

.pricing-currency[b-75ns00ubfx] {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--neo-text-muted);
}

.pricing-duration[b-75ns00ubfx] {
    display: block;
    font-size: 0.82rem;
    color: var(--neo-text-muted);
    margin-top: 0.15rem;
}

/* ── Specs ── */
.pricing-specs[b-75ns00ubfx] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pricing-spec[b-75ns00ubfx] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--neo-text);
}

.pricing-spec[b-75ns00ubfx]  svg {
    width: 16px;
    height: 16px;
    color: var(--neo-primary);
    flex-shrink: 0;
}

/* ── Feature List ── */
.pricing-features[b-75ns00ubfx] {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    flex: 1;
}

.pricing-features li[b-75ns00ubfx] {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 0.3rem 0;
    font-size: 0.85rem;
    color: var(--neo-text);
    line-height: 1.5;
}

.pricing-features li[b-75ns00ubfx]::before {
    content: "✓";
    color: var(--neo-success);
    font-weight: 700;
    flex-shrink: 0;
}

/* ── CTA Button ── */
.pricing-cta[b-75ns00ubfx] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-cta:hover[b-75ns00ubfx] {
    background: var(--neo-primary);
    color: #fff;
}

.pricing-cta--primary[b-75ns00ubfx] {
    background: var(--neo-primary);
    color: #fff;
    border-color: var(--neo-primary);
}

.pricing-cta--primary:hover[b-75ns00ubfx] {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

/* ── Demo CTA Section ── */
.pricing-demo-cta[b-75ns00ubfx] {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--neo-surface);
    border: 2px dashed var(--neo-border);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.pricing-demo-cta h3[b-75ns00ubfx] {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--neo-text);
}

.pricing-demo-cta p[b-75ns00ubfx] {
    font-size: 0.9rem;
    color: var(--neo-text-muted);
    margin: 0 0 1rem;
}

/* ── Free Price ── */
.pricing-free[b-75ns00ubfx] {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neo-success);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .pricing-grid[b-75ns00ubfx] {
        grid-template-columns: 1fr;
    }

    .pricing-specs[b-75ns00ubfx] {
        grid-template-columns: 1fr;
    }

    .pricing-hero h1[b-75ns00ubfx] {
        font-size: 1.4rem;
    }
}
/* /Components/Pages/Commerce/Signup.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════
   SIGNUP PAGE — ArsenNeo Split Layout (Scoped)
   ═══════════════════════════════════════════════════════ */

/* ── ArsenNeo logo icon (replaces gradient-bg person avatar) ── */
.signup-logo--arsen[b-bsb85tee9i] {
    background: transparent;
    box-shadow: none;
    overflow: hidden;
}

.signup-logo--arsen img[b-bsb85tee9i] {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: inherit;
    object-fit: cover;
}

.neo-an-split[b-bsb85tee9i] {
    --an-navy: #1A1B3A;
    --an-navy-deep: #13142E;
    --an-indigo: #4F46E5;
    --an-indigo-bright: #6366F1;
    --an-violet: #8B7FFF;
    --an-violet-soft: #E0DCFF;
    --an-cream: #F4F2FF;

    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: calc(100vh - 64px - 48px);
    align-items: stretch;
}

/* Transparentize inherited full-viewport wrapper so split bg wins */
.neo-an-split .signup-wrapper[b-bsb85tee9i] {
    background: transparent;
    min-height: 0;
    flex: 1;
    padding: 2.5rem 1.25rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.neo-an-split .signup-wrapper[b-bsb85tee9i]::before,
.neo-an-split .signup-wrapper[b-bsb85tee9i]::after {
    display: none;
}
.neo-an-split[b-bsb85tee9i] {
    display: flex;
    min-height: 95vh;
}

.neo-an-split-brand[b-bsb85tee9i],
.neo-an-split-form[b-bsb85tee9i] {
    height: 95vh;
}
/* ── Right (brand) panel ─────────────────────────── */
.neo-an-split-brand[b-bsb85tee9i] {
    flex: 1.1;
    position: relative;
    overflow: hidden;
    padding: 3.5rem 3rem;
    color: #fff;
    background: linear-gradient(160deg, var(--an-navy) 0%, var(--an-indigo-bright) 130%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.neo-an-brand-grid[b-bsb85tee9i] {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.9;
    transition: background-image 0.05s ease;
}

.neo-an-brand-grid[b-bsb85tee9i] {
    --hover-col: 0;
    --hover-row: 0;
}

    .neo-an-brand-grid:hover[b-bsb85tee9i] {
        background-image: linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px);
    }

.neo-an-brand-blob[b-bsb85tee9i] {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: var(--an-violet);
    opacity: 0.3;
    filter: blur(60px);
    top: -60px;
    inset-inline-start: -60px;
    pointer-events: none;
}

/* Logo (Latin lockup — always LTR, icon-left / wordmark-right) */
.neo-an-brand-logo[b-bsb85tee9i] {
    position: relative;
    display: flex;
    flex-direction:row-reverse;
    align-items: center;
    gap: 0.75rem;
    direction: ltr;
}

.neo-an-brand-logo img[b-bsb85tee9i] {
    display: block;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.25));
}

.neo-an-brand-wordmark[b-bsb85tee9i] {
    /* ⚠ margin-bottom تزئینی نیست، هم‌ترازی است — قرینهٔ دقیقِ Login.razor.css.
       فایلِ لوگو در رندرِ ۲۲۲×۶۳ دو نوار دارد: «arsen neo» در بالا (ارتفاع ۳۸٫۷px،
       مرکز روی ۱۹٫۲px) و شعارِ فارسی پایین (مرکز ۵۱٫۳px). والدْ align-items: center
       است، پس نشانواره وسطِ *کلِ* ۶۳px می‌نشست (۳۱٫۵px) و ~۱۲px پایین‌تر از خطِ
       لاتینِ کنارش می‌افتاد. این ۲۴px جعبهٔ متن را بلندتر می‌کند، مرکزِ دیداری‌اش
       ۱۲px بالا می‌رود و روی ۱۹٫۳px — یعنی مرکزِ خطِ لاتین — می‌نشیند.
       ⚠ اگر روزی در Login عوض شد، اینجا هم باید عوض شود؛ دو فایلِ CSS جدا هستند. */
    margin-bottom: 24px;
    font-size: 2.15rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #fff;
}

.neo-an-brand-wordmark em[b-bsb85tee9i] {
    color: var(--an-violet);
    font-style: normal;
    font-weight: 800;
}

/* Body */
.neo-an-brand-body[b-bsb85tee9i] {
    position: relative;
}

.neo-an-brand-badge[b-bsb85tee9i] {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--an-violet-soft);
    background: rgba(139, 127, 255, 0.15);
    border: 1px solid rgba(139, 127, 255, 0.35);
    margin-bottom: 1.25rem;
    direction: rtl;
}

    .neo-an-brand-badge[b-bsb85tee9i]::before {
        content: '✦';
        font-size: 0.85rem;
        color: gold;
        text-shadow: 0 0 4px gold;
        animation: twinkle-b-bsb85tee9i 1.2s ease-in-out infinite;
        display: inline-block;
        margin-left: 0.2rem;
    }

@keyframes twinkle-b-bsb85tee9i {
    0% {
        opacity: 0.3;
        text-shadow: 0 0 0px gold;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 8px gold, 0 0 4px orange;
        transform: scale(1.2);
    }

    100% {
        opacity: 0.3;
        text-shadow: 0 0 0px gold;
        transform: scale(0.8);
    }
}

.neo-an-brand-headline[b-bsb85tee9i] {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.025em;
    margin: 0 0 1rem;
    color: #fff;
}

.neo-an-brand-accent[b-bsb85tee9i] {
    color: var(--an-violet);
}

.neo-an-brand-sub[b-bsb85tee9i] {
    font-size: 0.95rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 1.5rem;
    max-width: 420px;
}

.neo-an-brand-chips[b-bsb85tee9i] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.neo-an-chip[b-bsb85tee9i] {
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

/* Credit */
.neo-an-brand-credit[b-bsb85tee9i] {
    position: relative;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.neo-an-brand-credit strong[b-bsb85tee9i] {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.neo-an-brand-credit:hover[b-bsb85tee9i] {
    color: var(--an-violet-soft);
}

/* ── Responsive (mobile) ─────────────────────────── */
@media (max-width: 900px) {
    .neo-an-split[b-bsb85tee9i] {
        flex-direction: column;
        min-height: 0;
    }

    .neo-an-split-brand[b-bsb85tee9i] {
        display:none;
    }

    .neo-an-brand-grid[b-bsb85tee9i],
    .neo-an-brand-blob[b-bsb85tee9i] {
        display: none;
    }

    .neo-an-brand-logo[b-bsb85tee9i] {
        margin-bottom: 1.25rem;
    }

    .neo-an-brand-logo img[b-bsb85tee9i] {
        width: 44px;
        height: 44px;
    }

    .neo-an-brand-wordmark[b-bsb85tee9i] {
        font-size: 1.4rem;
    }

    .neo-an-brand-headline[b-bsb85tee9i] {
        font-size: 1.5rem;
    }

    .neo-an-brand-sub[b-bsb85tee9i] {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .neo-an-brand-chips[b-bsb85tee9i] {
        display: none;
    }

    .neo-an-brand-credit[b-bsb85tee9i] {
        display: none;
    }

    .neo-an-split-form[b-bsb85tee9i] {
        padding: 1.25rem 0.75rem !important;
    }
}

/* ── Password Input Wrapper (دکمهٔ نمایش/مخفیِ رمز — داخلِ کادر) ── */
.password-wrapper[b-bsb85tee9i] {
    position: relative;
    display: flex;
    align-items: center;
}

    .password-wrapper[b-bsb85tee9i]  .k-textbox {
        padding-left: 3rem;
    }

.password-toggle-btn[b-bsb85tee9i] {
    position: absolute;
    left: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neo-text-muted);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--neo-radius-sm);
    transition: all 0.2s ease;
    z-index: 2;
}

    .password-toggle-btn:hover[b-bsb85tee9i] {
        background: var(--neo-bg-subtle);
        color: var(--neo-primary);
        transform: scale(1.1);
    }

    .password-toggle-btn[b-bsb85tee9i]  svg {
        width: 18px;
        height: 18px;
    }

    .password-toggle-btn:focus-visible[b-bsb85tee9i] {
        outline: 2px solid var(--neo-primary);
        outline-offset: 2px;
    }

    .password-toggle-btn:active[b-bsb85tee9i] {
        transform: scale(0.95);
    }

@media (max-width: 480px) {
    .neo-an-split-brand[b-bsb85tee9i] {
        display:none;
    }

    .neo-an-brand-badge[b-bsb85tee9i] {
        font-size: 0.65rem;
        padding: 0.3rem 0.7rem;
        margin-bottom: 0.75rem;
    }

    .neo-an-brand-headline[b-bsb85tee9i] {
        font-size: 1.25rem;
    }
}
/* /Components/Pages/Login.razor.rz.scp.css */
.neo-an-split[b-woohpk54ro] {
    display: flex;
    min-height: 95vh;
}

.neo-an-split-brand[b-woohpk54ro],
.neo-an-split-form[b-woohpk54ro] {
    height: 95vh; 
}

.neo-an-split-form[b-woohpk54ro] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.neo-login-card[b-woohpk54ro] {
  
    margin: auto;
}

.neo-login-logo--arsen[b-woohpk54ro] {
    background: transparent;
    box-shadow: none;
    overflow: hidden;
}

.neo-login-logo--arsen img[b-woohpk54ro] {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: inherit;
    object-fit: cover;
}

/* ── ArsenNeo Split Layout ─────────────────────────── */
.neo-an-split[b-woohpk54ro] {
    --an-navy: #1A1B3A;
    --an-navy-deep: #13142E;
    --an-indigo: #4F46E5;
    --an-indigo-bright: #6366F1;
    --an-violet: #8B7FFF;
    --an-violet-soft: #E0DCFF;
    --an-cream: #F4F2FF;

    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: calc(100vh - 64px - 48px);
    align-items: stretch;
}

/* Transparentize inherited full-viewport wrapper so split bg wins */
.neo-an-split .neo-login-wrapper[b-woohpk54ro] {
    background: transparent;
    min-height: 0;
    flex: 1;
    padding: 2.5rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.neo-an-split .neo-login-wrapper[b-woohpk54ro]::before,
.neo-an-split .neo-login-wrapper[b-woohpk54ro]::after {
    display: none;
}

/* ── Right (brand) panel ─────────────────────────── */
.neo-an-split-brand[b-woohpk54ro] {
    flex: 1.1;
    position: relative;
    overflow: hidden;
    padding: 3.5rem 3rem;
    color: #fff;
    background: linear-gradient(160deg, var(--an-navy) 0%, var(--an-indigo-bright) 130%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.neo-an-brand-grid[b-woohpk54ro] {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.9;
    transition: background-image 0.05s ease;
}

.neo-an-brand-grid[b-woohpk54ro] {
    --hover-col: 0;
    --hover-row: 0;
}

    .neo-an-brand-grid:hover[b-woohpk54ro] {
        background-image: linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px);
    }

.neo-an-brand-blob[b-woohpk54ro] {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: var(--an-violet);
    opacity: 0.3;
    filter: blur(60px);
    top: -60px;
    inset-inline-start: -60px;
    pointer-events: none;
}

/* ⚠ row-reverse و gap و direction برداشته شدند: از وقتی نشانوارهٔ متنیِ فارسی حذف شد
   (۲۰۲۶-۰۸-۱۹) این ظرف تک‌فرزند است و آن سه اعلان فقط خواننده را گمراه می‌کردند. */
.neo-an-brand-logo[b-woohpk54ro] {
    position: relative;
    display: flex;
    align-items: center;
}

.neo-an-brand-logo img[b-woohpk54ro] {
    display: block;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.25));
}

/* Body */
.neo-an-brand-body[b-woohpk54ro] {
    position: relative;
}

.neo-an-brand-badge[b-woohpk54ro] {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--an-violet-soft);
    background: rgba(139, 127, 255, 0.15);
    border: 1px solid rgba(139, 127, 255, 0.35);
    margin-bottom: 1.25rem;
    direction: rtl;
}

    .neo-an-brand-badge[b-woohpk54ro]::before {
        content: '✦';
        font-size: 0.85rem;
        color: gold;
        text-shadow: 0 0 4px gold;
        animation: twinkle-b-woohpk54ro 1.2s ease-in-out infinite;
        display: inline-block;
        margin-left: 0.2rem;
    }

@keyframes twinkle-b-woohpk54ro {
    0% {
        opacity: 0.3;
        text-shadow: 0 0 0px gold;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 8px gold, 0 0 4px orange;
        transform: scale(1.2);
    }

    100% {
        opacity: 0.3;
        text-shadow: 0 0 0px gold;
        transform: scale(0.8);
    }
}

.neo-an-brand-headline[b-woohpk54ro] {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.025em;
    margin: 0 0 1rem;
    color: #fff;
}

.neo-an-brand-accent[b-woohpk54ro] {
    color: var(--an-violet);
}

.neo-an-brand-sub[b-woohpk54ro] {
    font-size: 0.95rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 1.5rem;
    max-width: 420px;
}

.neo-an-brand-chips[b-woohpk54ro] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.neo-an-chip[b-woohpk54ro] {
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

/* Credit */
.neo-an-brand-credit[b-woohpk54ro] {
    position: relative;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.neo-an-brand-credit strong[b-woohpk54ro] {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.neo-an-brand-credit:hover[b-woohpk54ro] {
    color: var(--an-violet-soft);
}

/* ── Responsive (mobile) ─────────────────────────── */
@media (max-width: 900px) {
    .neo-an-split[b-woohpk54ro] {
        flex-direction: column;
        min-height: 0;
    }

    .neo-an-split-brand[b-woohpk54ro] {
         display:none;
    }

    .neo-an-brand-grid[b-woohpk54ro],
    .neo-an-brand-blob[b-woohpk54ro] {
        display: none;
    }

    .neo-an-brand-logo[b-woohpk54ro] {
        margin-bottom: 1.25rem;
    }

    .neo-an-brand-logo img[b-woohpk54ro] {
        width: 44px;
        height: 44px;
    }

    .neo-an-brand-headline[b-woohpk54ro] {
        font-size: 1.5rem;
    }

    .neo-an-brand-sub[b-woohpk54ro] {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .neo-an-brand-chips[b-woohpk54ro] {
        display: none;
    }

    .neo-an-brand-credit[b-woohpk54ro] {
        display: none;
    }

    .neo-an-split-form[b-woohpk54ro] {
        padding: 1.25rem 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .neo-an-split-brand[b-woohpk54ro] {
        display:none;
    }

    .neo-an-brand-badge[b-woohpk54ro] {
        font-size: 0.65rem;
        padding: 0.3rem 0.7rem;
        margin-bottom: 0.75rem;
    }

    .neo-an-brand-headline[b-woohpk54ro] {
        font-size: 1.25rem;
    }
}


/* ── Tab Switcher ── */
.neo-login-tabs[b-woohpk54ro] {
    display: flex;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 1.5rem;
    gap: 4px;
}

.neo-login-tab[b-woohpk54ro] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 0.75rem;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--neo-text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.neo-login-tab:hover:not(.active)[b-woohpk54ro] {
    color: var(--neo-text-secondary);
    background: rgba(0, 0, 0, 0.03);
}

.neo-login-tab.active[b-woohpk54ro] {
    background: white;
    color: var(--neo-primary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.neo-login-tab[b-woohpk54ro]  svg {
    width: 16px;
    height: 16px;
}

/* ── OTP Sent Notice ── */
.neo-login-otp-sent[b-woohpk54ro] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    font-size: 0.84rem;
    margin-bottom: 1rem;
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.15);
    color: var(--neo-text-secondary);
}

.neo-login-otp-sent[b-woohpk54ro]  svg {
    width: 18px;
    height: 18px;
    color: var(--neo-primary);
    flex-shrink: 0;
}

/* ── Signup Link ── */
.neo-login-signup-link[b-woohpk54ro] {
    display: block;
    width: 100%;
    padding: 0.6rem;
    border: 1.5px solid var(--neo-border);
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--neo-primary);
    background: transparent;
    transition: all 0.2s ease;
}

.neo-login-signup-link:hover[b-woohpk54ro] {
    background: rgba(99, 102, 241, 0.05);
    border-color: var(--neo-primary);
    color: var(--neo-primary);
}

/* ── Password Input Wrapper (برای دکمه نمایش/مخفی) ── */
.pwd-input-wrapper[b-woohpk54ro] {
    position: relative;
    display: flex;
    align-items: center;
}

    .pwd-input-wrapper[b-woohpk54ro]  .k-textbox {
        padding-left: 3rem;
    }

.pwd-toggle-btn[b-woohpk54ro] {
    position: absolute;
    left: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neo-text-muted);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--neo-radius-sm);
    transition: all 0.2s ease;
    z-index: 2;
}

    .pwd-toggle-btn:hover[b-woohpk54ro] {
        background: var(--neo-bg-subtle);
        color: var(--neo-primary);
        transform: scale(1.1);
    }

    .pwd-toggle-btn[b-woohpk54ro]  svg {
        width: 18px;
        height: 18px;
    }

    .pwd-toggle-btn:focus-visible[b-woohpk54ro] {
        outline: 2px solid var(--neo-primary);
        outline-offset: 2px;
    }

    .pwd-toggle-btn:active[b-woohpk54ro] {
        transform: scale(0.95);
    }
/* /Components/Pages/Settings/Profile.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════
   PROFILE PAGE — Scoped Styles
   Design System: Neo Accounting v2.0
   ═══════════════════════════════════════════════════════ */

/* ── Tab Strip ── */
[b-usf746dczb] .neo-profile-tabs {
    direction: rtl;
}

[b-usf746dczb] .neo-profile-tabs .k-tabstrip-items {
    border-bottom: 2px solid var(--neo-border);
    gap: 0;
    direction: rtl;
    background: var(--neo-bg-subtle);
    padding: 0 0.5rem;
    border-radius: var(--neo-radius-md) var(--neo-radius-md) 0 0;
}

[b-usf746dczb] .neo-profile-tabs .k-tabstrip-items .k-item {
    border: none;
    border-bottom: 3px solid transparent;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: var(--neo-font-md);
    color: var(--neo-text-muted);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: -2px;
    position: relative;
}

[b-usf746dczb] .neo-profile-tabs .k-tabstrip-items .k-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    border-radius: var(--neo-radius-sm) var(--neo-radius-sm) 0 0;
    transition: background 0.25s ease;
}

[b-usf746dczb] .neo-profile-tabs .k-tabstrip-items .k-item:hover::before {
    background: rgba(79, 70, 229, 0.04);
}

[b-usf746dczb] .neo-profile-tabs .k-tabstrip-items .k-item:hover {
    color: var(--neo-primary);
}

[b-usf746dczb] .neo-profile-tabs .k-tabstrip-items .k-item.k-active {
    border-bottom-color: var(--neo-primary);
    color: var(--neo-primary);
    background: var(--neo-bg-card);
    font-weight: 700;
}

[b-usf746dczb] .neo-profile-tabs .k-tabstrip-items .k-item.k-active::before {
    background: linear-gradient(180deg, rgba(79, 70, 229, 0.03) 0%, transparent 100%);
}

[b-usf746dczb] .neo-profile-tabs .k-content {
    border: none;
    padding: 0;
    background: transparent;
    direction: rtl;
}

/* ── Tab Content ── */
.profile-tab-content[b-usf746dczb] {
    padding-top: 1.5rem;
    direction: rtl;
    text-align: right;
    animation: profile-fade-in-b-usf746dczb 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes profile-fade-in-b-usf746dczb {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Section Header ── */
.profile-section-header[b-usf746dczb] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--neo-border-light);
    transition: all 0.2s ease;
}

.profile-section-header:hover[b-usf746dczb] {
    border-bottom-color: var(--neo-primary-lighter);
}

.profile-section-header h2[b-usf746dczb] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size:18px;
}

.profile-section-header h2[b-usf746dczb]  svg {
    width: 22px;
    height: 22px;
    color: var(--neo-primary);
}

/* ── Info Grid ── */
.profile-info-grid[b-usf746dczb] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 1.5rem;
}

.profile-info-item[b-usf746dczb] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: right;
    padding: 1rem;
    background: linear-gradient(135deg, var(--neo-bg-card) 0%, var(--neo-bg-subtle) 100%);
    border: 1px solid var(--neo-border);
    border-radius: var(--neo-radius-md);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.profile-info-item[b-usf746dczb]::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--neo-primary), var(--neo-primary-lighter));
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-info-item:hover[b-usf746dczb] {
    background: var(--neo-bg-card);
    border-color: var(--neo-primary-lighter);
    transform: translateY(-2px);
    box-shadow: var(--neo-shadow-md);
}

.profile-info-item:hover[b-usf746dczb]::before {
    height: 100%;
}

.profile-info-label[b-usf746dczb] {
    font-size: var(--neo-font-sm);
    font-weight: 500;
    color: var(--neo-text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.profile-info-value[b-usf746dczb] {
    font-size: var(--neo-font-md);
    font-weight: 700;
    color: var(--neo-text-primary);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    direction: rtl;
    unicode-bidi: plaintext;
    word-break: break-word;
    line-height: 1.5;
}

/* ── Edit Grid ── */
.profile-edit-grid[b-usf746dczb] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.profile-edit-field[b-usf746dczb] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    animation: field-slide-in-b-usf746dczb 0.3s ease-out backwards;
}

.profile-edit-field:nth-child(1)[b-usf746dczb] { animation-delay: 0.05s; }
.profile-edit-field:nth-child(2)[b-usf746dczb] { animation-delay: 0.1s; }
.profile-edit-field:nth-child(3)[b-usf746dczb] { animation-delay: 0.15s; }

@keyframes field-slide-in-b-usf746dczb {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.profile-edit-field label[b-usf746dczb] {
    font-weight: 600;
    color: var(--neo-text-secondary);
}

.profile-edit-field[b-usf746dczb]  .k-textbox {
    border-radius: var(--neo-radius-sm);
    border: 1.5px solid var(--neo-border);
    transition: all 0.2s ease;
}

.profile-edit-field[b-usf746dczb]  .k-textbox:hover {
    border-color: var(--neo-primary-lighter);
}

.profile-edit-field[b-usf746dczb]  .k-textbox:focus-within {
    border-color: var(--neo-primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    transform: translateY(-1px);
}

.profile-edit-actions[b-usf746dczb] {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--neo-border-light);
}

.profile-edit-actions[b-usf746dczb]  .neo-btn {
    min-width: 140px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-edit-actions[b-usf746dczb]  .neo-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--neo-shadow-md);
}

.profile-edit-actions[b-usf746dczb]  .neo-btn:active {
    transform: translateY(0);
}

/* ── Field Error ── */
[b-usf746dczb] .neo-field-error {
    font-size: var(--neo-font-xs);
    color: var(--neo-danger);
    font-weight: 600;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    animation: error-shake-b-usf746dczb 0.4s ease-out;
}

@keyframes error-shake-b-usf746dczb {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

[b-usf746dczb] .neo-field-error::before {
    content: "⚠";
    font-size: 1rem;
    animation: error-pulse-b-usf746dczb 1.5s ease-in-out infinite;
}

@keyframes error-pulse-b-usf746dczb {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ── Password Section (Modern) ── */
.pwd-change-panel[b-usf746dczb] {
    margin-top: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.02) 0%, rgba(99, 102, 241, 0.05) 100%);
    border: 1px solid rgba(79, 70, 229, 0.1);
    border-radius: var(--neo-radius-md);
    animation: panel-expand-b-usf746dczb 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes panel-expand-b-usf746dczb {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 1000px;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

.pwd-hint[b-usf746dczb] {
    font-size: var(--neo-font-sm);
    color: var(--neo-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    padding: 1rem 1.25rem;
    background: var(--neo-info-bg);
    border: 1px solid var(--neo-info-border);
    border-right: 4px solid var(--neo-info);
    border-radius: var(--neo-radius-sm);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pwd-hint[b-usf746dczb]  svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: var(--neo-info);
}

.pwd-fields[b-usf746dczb] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pwd-field-group[b-usf746dczb] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    animation: field-slide-in-b-usf746dczb 0.3s ease-out backwards;
}

.pwd-field-group:nth-child(1)[b-usf746dczb] { animation-delay: 0.1s; }
.pwd-field-group:nth-child(2)[b-usf746dczb] { animation-delay: 0.2s; }

.pwd-field-group[b-usf746dczb]  .k-textbox {
    border-radius: var(--neo-radius-sm);
    border: 1.5px solid var(--neo-border);
    transition: all 0.2s ease;
}

.pwd-field-group[b-usf746dczb]  .k-textbox:focus-within {
    border-color: var(--neo-primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.pwd-separator[b-usf746dczb] {
    height: 2px;
    background: linear-gradient(to left, transparent 0%, var(--neo-border) 20%, var(--neo-border) 80%, transparent 100%);
    margin: 1rem 0;
    position: relative;
}

.pwd-separator[b-usf746dczb]::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--neo-bg-card);
    padding: 0 1rem;
    color: var(--neo-text-muted);
    font-size: 0.7rem;
}

.pwd-new-row[b-usf746dczb] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.pwd-strength[b-usf746dczb] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: var(--neo-bg-card);
    border: 1px solid var(--neo-border);
    border-radius: var(--neo-radius-md);
    box-shadow: var(--neo-shadow-xs);
    animation: strength-fade-in-b-usf746dczb 0.4s ease-out;
}

@keyframes strength-fade-in-b-usf746dczb {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pwd-strength-bar[b-usf746dczb] {
    flex: 1;
    height: 10px;
    background: var(--neo-border-light);
    border-radius: var(--neo-radius-full);
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pwd-strength-fill[b-usf746dczb] {
    height: 100%;
    border-radius: var(--neo-radius-full);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.5s ease;
    position: relative;
    overflow: hidden;
}

.pwd-strength-fill[b-usf746dczb]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: strength-shimmer-b-usf746dczb 2s infinite;
}

@keyframes strength-shimmer-b-usf746dczb {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.pwd-str-weak[b-usf746dczb] {
    background: linear-gradient(90deg, var(--neo-danger), #f87171);
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.4);
}

.pwd-str-medium[b-usf746dczb] {
    background: linear-gradient(90deg, var(--neo-warning), #fbbf24);
    box-shadow: 0 0 10px rgba(217, 119, 6, 0.4);
}

.pwd-str-strong[b-usf746dczb] {
    background: linear-gradient(90deg, var(--neo-success), #34d399);
    box-shadow: 0 0 10px rgba(5, 150, 105, 0.4);
}

.pwd-strength-label[b-usf746dczb] {
    font-size: var(--neo-font-sm);
    font-weight: 600;
    color: var(--neo-text-secondary);
    min-width: 4.5rem;
    text-align: right;
}

.pwd-actions[b-usf746dczb] {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--neo-border-light);
}

.pwd-actions[b-usf746dczb]  .neo-btn {
    min-width: 160px;
}

/* ── Success Card ── */
.pwd-success-card[b-usf746dczb] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    gap: 1rem;
    animation: success-popup-b-usf746dczb 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes success-popup-b-usf746dczb {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.pwd-success-icon[b-usf746dczb] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neo-success-bg), rgba(52, 211, 153, 0.2));
    border: 3px solid var(--neo-success-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    animation: success-icon-bounce-b-usf746dczb 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

@keyframes success-icon-bounce-b-usf746dczb {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.pwd-success-icon[b-usf746dczb]::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.15) 0%, transparent 70%);
    animation: success-ripple-b-usf746dczb 2s ease-out infinite;
}

@keyframes success-ripple-b-usf746dczb {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.pwd-success-icon[b-usf746dczb]  svg {
    width: 40px;
    height: 40px;
    color: var(--neo-success);
}

.pwd-success-card h3[b-usf746dczb] {
    font-size: var(--neo-font-xl);
    font-weight: 800;
    color: var(--neo-text-primary);
    margin: 0;
    letter-spacing: -0.01em;
}

.pwd-success-card p[b-usf746dczb] {
    font-size: var(--neo-font-base);
    color: var(--neo-text-muted);
    margin: 0 0 1rem;
    line-height: 1.7;
    max-width: 420px;
}

/* ── Messages ── */
.profile-message[b-usf746dczb] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.15rem;
    border-radius: var(--neo-radius-md);
    font-size: var(--neo-font-sm);
    animation: message-slide-in-b-usf746dczb 0.4s ease-out;
}

@keyframes message-slide-in-b-usf746dczb {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.profile-message[b-usf746dczb]  svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.profile-message-success[b-usf746dczb] {
    background: linear-gradient(135deg, var(--neo-success-bg), rgba(5, 150, 105, 0.08));
    border: 1px solid var(--neo-success-border);
    border-right: 4px solid var(--neo-success);
    color: var(--neo-success);
}

.profile-message-error[b-usf746dczb] {
    background: linear-gradient(135deg, var(--neo-danger-bg), rgba(220, 38, 38, 0.08));
    border: 1px solid var(--neo-danger-border);
    border-right: 4px solid var(--neo-danger);
    color: var(--neo-danger);
}

.profile-message-info[b-usf746dczb] {
    background: linear-gradient(135deg, var(--neo-info-bg), rgba(37, 99, 235, 0.08));
    border: 1px solid var(--neo-info-border);
    border-right: 4px solid var(--neo-info);
    color: var(--neo-info);
}

/* ── Organization/Role Section ── */
.profile-org-section[b-usf746dczb] {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px dashed var(--neo-border);
    position: relative;
}

.profile-org-section[b-usf746dczb]::before {
    content: 'اطلاعات سازمانی';
    position: absolute;
    top: -0.6rem;
    right: 1rem;
    padding: 0 0.75rem;
    background: var(--neo-bg-card);
    color: var(--neo-text-muted);
    font-size: var(--neo-font-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.profile-roles-chips[b-usf746dczb] {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ── Badges Enhancement ── */
[b-usf746dczb] .neo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: var(--neo-radius-full);
    font-size: var(--neo-font-xs);
    font-weight: 700;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
}

[b-usf746dczb] .neo-badge:hover {
    transform: translateY(-1px);
    box-shadow: var(--neo-shadow-sm);
}

[b-usf746dczb] .neo-badge-success {
    background: linear-gradient(135deg, var(--neo-success-bg), rgba(5, 150, 105, 0.15));
    color: var(--neo-success);
    border: 1px solid var(--neo-success-border);
}

[b-usf746dczb] .neo-badge-warning {
    background: linear-gradient(135deg, var(--neo-warning-bg), rgba(217, 119, 6, 0.15));
    color: var(--neo-warning);
    border: 1px solid var(--neo-warning-border);
}

[b-usf746dczb] .neo-badge-primary {
    background: linear-gradient(135deg, var(--neo-primary-bg), rgba(79, 70, 229, 0.15));
    color: var(--neo-primary);
    border: 1px solid rgba(79, 70, 229, 0.25);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .profile-info-grid[b-usf746dczb],
    .profile-edit-grid[b-usf746dczb],
    .pwd-new-row[b-usf746dczb] {
        grid-template-columns: 1fr;
    }

    .profile-info-item[b-usf746dczb] {
        padding: 0.85rem;
    }

    .pwd-strength[b-usf746dczb] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .pwd-strength-bar[b-usf746dczb] {
        width: 100%;
    }

    .profile-edit-actions[b-usf746dczb],
    .pwd-actions[b-usf746dczb] {
        flex-direction: column;
    }

    .profile-edit-actions[b-usf746dczb]  .neo-btn,
    .pwd-actions[b-usf746dczb]  .neo-btn {
        width: 100%;
        justify-content: center;
    }

    [b-usf746dczb] .neo-profile-tabs .k-tabstrip-items {
        padding: 0 0.25rem;
    }

    [b-usf746dczb] .neo-profile-tabs .k-tabstrip-items .k-item {
        padding: 0.6rem 1rem;
        font-size: var(--neo-font-sm);
    }

    .pwd-change-panel[b-usf746dczb] {
        padding: 1.25rem 1rem;
    }

    .pwd-hint[b-usf746dczb] {
        padding: 0.85rem 1rem;
        font-size: var(--neo-font-xs);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .profile-info-grid[b-usf746dczb] {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Loading States ── */
[b-usf746dczb] .k-skeleton {
    animation: skeleton-shimmer-b-usf746dczb 1.5s ease-in-out infinite;
}

@keyframes skeleton-shimmer-b-usf746dczb {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}

/* ── Focus States ── */
.profile-edit-field[b-usf746dczb]  .k-textbox:focus-within,
.pwd-field-group[b-usf746dczb]  .k-textbox:focus-within {
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
    transform: translateY(-1px);
}

/* ── Accessibility ── */
.profile-section-header[style*="cursor:pointer"]:focus-visible[b-usf746dczb] {
    outline: 2px solid var(--neo-primary);
    outline-offset: 4px;
    border-radius: var(--neo-radius-sm);
}

/* ── Print Styles ── */
@media print {
    .profile-edit-actions[b-usf746dczb],
    .pwd-actions[b-usf746dczb],
    .profile-section-header button[b-usf746dczb] {
        display: none !important;
    }

    .profile-info-grid[b-usf746dczb] {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .profile-info-item[b-usf746dczb] {
        border: 1px solid #ccc !important;
        box-shadow: none !important;
        page-break-inside: avoid;
    }

    .pwd-change-panel[b-usf746dczb] {
        page-break-before: always;
    }
}

/* ── Password Input Wrapper (برای دکمه نمایش/مخفی) ── */
.pwd-input-wrapper[b-usf746dczb] {
    position: relative;
    display: flex;
    align-items: center;
}

    .pwd-input-wrapper[b-usf746dczb]  .k-textbox {
        padding-left: 3rem;
    }

.pwd-toggle-btn[b-usf746dczb] {
    position: absolute;
    left: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neo-text-muted);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--neo-radius-sm);
    transition: all 0.2s ease;
    z-index: 2;
}

    .pwd-toggle-btn:hover[b-usf746dczb] {
        background: var(--neo-bg-subtle);
        color: var(--neo-primary);
        transform: scale(1.1);
    }

    .pwd-toggle-btn[b-usf746dczb]  svg {
        width: 18px;
        height: 18px;
    }

    .pwd-toggle-btn:focus-visible[b-usf746dczb] {
        outline: 2px solid var(--neo-primary);
        outline-offset: 2px;
    }

    .pwd-toggle-btn:active[b-usf746dczb] {
        transform: scale(0.95);
    }
/* /Components/Pages/Workspace/BusinessManagement.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════
   BUSINESS MANAGEMENT PAGE — Scoped Styles
   Design System: Neo Accounting v2.0
   ═══════════════════════════════════════════════════════ */

/* ── Tab Strip (RTL) ── */
[b-nn3lnmxgq1] .neo-profile-tabs {
    direction: rtl;
}

[b-nn3lnmxgq1] .neo-profile-tabs .k-tabstrip-items {
    border-bottom: 2px solid var(--neo-border);
    gap: 0;
    direction: rtl;
    background: var(--neo-bg-subtle);
    padding: 0 0.5rem;
    border-radius: var(--neo-radius-md) var(--neo-radius-md) 0 0;
}

[b-nn3lnmxgq1] .neo-profile-tabs .k-tabstrip-items .k-item {
    border: none;
    border-bottom: 3px solid transparent;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: var(--neo-font-md);
    color: var(--neo-text-muted);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: -2px;
    position: relative;
}

[b-nn3lnmxgq1] .neo-profile-tabs .k-tabstrip-items .k-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    border-radius: var(--neo-radius-sm) var(--neo-radius-sm) 0 0;
    transition: background 0.25s ease;
}

[b-nn3lnmxgq1] .neo-profile-tabs .k-tabstrip-items .k-item:hover::before {
    background: rgba(79, 70, 229, 0.04);
}

[b-nn3lnmxgq1] .neo-profile-tabs .k-tabstrip-items .k-item:hover {
    color: var(--neo-primary);
}

[b-nn3lnmxgq1] .neo-profile-tabs .k-tabstrip-items .k-item.k-active {
    border-bottom-color: var(--neo-primary);
    color: var(--neo-primary);
    background: var(--neo-bg-card);
    font-weight: 700;
}

[b-nn3lnmxgq1] .neo-profile-tabs .k-tabstrip-items .k-item.k-active::before {
    background: linear-gradient(180deg, rgba(79, 70, 229, 0.03) 0%, transparent 100%);
}

[b-nn3lnmxgq1] .neo-profile-tabs .k-content {
    border: none;
    padding: 0;
    background: transparent;
    direction: rtl;
}

/* ── Tab Content Animation ── */
.profile-tab-content[b-nn3lnmxgq1] {
    animation: tab-fade-in-b-nn3lnmxgq1 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes tab-fade-in-b-nn3lnmxgq1 {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Info Grid ── */
.bm-info-grid[b-nn3lnmxgq1] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.bm-info-item[b-nn3lnmxgq1] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--neo-bg-card) 0%, var(--neo-bg-subtle) 100%);
    border: 1px solid var(--neo-border);
    border-radius: var(--neo-radius-md);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bm-info-item[b-nn3lnmxgq1]::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--neo-primary), var(--neo-primary-lighter));
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bm-info-item:hover[b-nn3lnmxgq1] {
    background: var(--neo-bg-card);
    border-color: var(--neo-primary-lighter);
    transform: translateY(-2px);
    box-shadow: var(--neo-shadow-md);
}

.bm-info-item:hover[b-nn3lnmxgq1]::before {
    height: 100%;
}

.bm-info-label[b-nn3lnmxgq1] {
    font-size: var(--neo-font-sm);
    font-weight: 500;
    color: var(--neo-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.bm-info-value[b-nn3lnmxgq1] {
    font-size: var(--neo-font-md);
    font-weight: 700;
    color: var(--neo-text-primary);
    line-height: 1.5;
}

/* ── Stats Row ── */
.bm-stats-row[b-nn3lnmxgq1] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.bm-stats-row .neo-stat-card[b-nn3lnmxgq1] {
    animation: stat-slide-in-b-nn3lnmxgq1 0.4s ease-out backwards;
}

.bm-stats-row .neo-stat-card:nth-child(1)[b-nn3lnmxgq1] { animation-delay: 0.1s; }
.bm-stats-row .neo-stat-card:nth-child(2)[b-nn3lnmxgq1] { animation-delay: 0.2s; }
.bm-stats-row .neo-stat-card:nth-child(3)[b-nn3lnmxgq1] { animation-delay: 0.3s; }

@keyframes stat-slide-in-b-nn3lnmxgq1 {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ── Quick Links ── */
.bm-quick-links[b-nn3lnmxgq1] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.bm-quick-links[b-nn3lnmxgq1]  .neo-btn {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.bm-quick-links[b-nn3lnmxgq1]  .neo-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--neo-shadow-md);
}

/* ── Messages ── */
.bm-message[b-nn3lnmxgq1] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.15rem;
    border-radius: var(--neo-radius-md);
    font-size: var(--neo-font-sm);
    margin-bottom: 1rem;
    animation: message-slide-in-b-nn3lnmxgq1 0.4s ease-out;
}

@keyframes message-slide-in-b-nn3lnmxgq1 {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bm-message[b-nn3lnmxgq1]  svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.bm-message-error[b-nn3lnmxgq1] {
    background: linear-gradient(135deg, var(--neo-danger-bg), rgba(220, 38, 38, 0.08));
    border: 1px solid var(--neo-danger-border);
    border-right: 4px solid var(--neo-danger);
    color: var(--neo-danger);
}

/* ── Subscription Usage ── */
.sub-usage-info[b-nn3lnmxgq1] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: var(--neo-font-base);
    color: var(--neo-text-secondary);
}

.sub-usage-percent[b-nn3lnmxgq1] {
    font-weight: 700;
    font-size: var(--neo-font-md);
    font-variant-numeric: tabular-nums;
}

.sub-progress-track[b-nn3lnmxgq1] {
    height: 12px;
    border-radius: var(--neo-radius-full);
    background: var(--neo-border-light);
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
}

.sub-progress-fill[b-nn3lnmxgq1] {
    height: 100%;
    border-radius: var(--neo-radius-full);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sub-progress-fill[b-nn3lnmxgq1]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progress-shimmer-b-nn3lnmxgq1 2s infinite;
}

@keyframes progress-shimmer-b-nn3lnmxgq1 {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.sub-progress-ok[b-nn3lnmxgq1] {
    background: linear-gradient(90deg, var(--neo-success), #34d399);
    box-shadow: 0 0 10px rgba(5, 150, 105, 0.3);
}

.sub-progress-warning[b-nn3lnmxgq1] {
    background: linear-gradient(90deg, var(--neo-warning), #fbbf24);
    box-shadow: 0 0 10px rgba(217, 119, 6, 0.3);
}

.sub-progress-danger[b-nn3lnmxgq1] {
    background: linear-gradient(90deg, var(--neo-danger), #f87171);
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.sub-actions[b-nn3lnmxgq1] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.sub-actions[b-nn3lnmxgq1]  .neo-btn {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.sub-actions[b-nn3lnmxgq1]  .neo-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--neo-shadow-md);
}

/* ── Invite Form Layout ── */
.bm-invite-form[b-nn3lnmxgq1] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-end;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.02) 0%, rgba(99, 102, 241, 0.04) 100%);
    border: 1px solid rgba(79, 70, 229, 0.1);
    border-radius: var(--neo-radius-md);
    animation: form-fade-in-b-nn3lnmxgq1 0.4s ease-out;
}

@keyframes form-fade-in-b-nn3lnmxgq1 {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.bm-invite-field[b-nn3lnmxgq1] {
    flex: 1;
    min-width: 220px;
}

.bm-invite-role[b-nn3lnmxgq1] {
    min-width: 160px;
}

.bm-invite-expiry[b-nn3lnmxgq1] {
    min-width: 280px;
}

.bm-invite-expiry-toggle[b-nn3lnmxgq1] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.bm-invite-form[b-nn3lnmxgq1]  .k-textbox,
.bm-invite-form[b-nn3lnmxgq1]  .k-dropdown {
    border-radius: var(--neo-radius-sm);
    border: 1.5px solid var(--neo-border);
    transition: all 0.2s ease;
}

.bm-invite-form[b-nn3lnmxgq1]  .k-textbox:focus-within,
.bm-invite-form[b-nn3lnmxgq1]  .k-dropdown:focus-within {
    border-color: var(--neo-primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

/* ── Invite Result ── */
.bm-invite-result[b-nn3lnmxgq1] {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-radius: var(--neo-radius-md);
    border: 1px solid var(--neo-primary-lighter);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.03), rgba(99, 102, 241, 0.06));
    animation: result-popup-b-nn3lnmxgq1 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

@keyframes result-popup-b-nn3lnmxgq1 {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.bm-invite-result[b-nn3lnmxgq1]::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neo-primary), var(--neo-primary-lighter));
    border-radius: var(--neo-radius-md) var(--neo-radius-md) 0 0;
}

.bm-invite-result-close[b-nn3lnmxgq1] {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: none;
    border: none;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    color: var(--neo-text-muted);
    padding: 0.2rem 0.4rem;
    border-radius: var(--neo-radius-sm);
    transition: all 0.2s ease;
}

.bm-invite-result-close:hover[b-nn3lnmxgq1] {
    background: var(--neo-danger-bg);
    color: var(--neo-danger);
    transform: rotate(90deg);
}

.bm-invite-result-row[b-nn3lnmxgq1] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.bm-invite-code-box[b-nn3lnmxgq1] {
    background: var(--neo-bg-card);
    padding: 1rem 1.25rem;
    border-radius: var(--neo-radius-md);
    border: 2px dashed var(--neo-primary-lighter);
    margin-top: 0.75rem;
    animation: code-glow-b-nn3lnmxgq1 2s ease-in-out infinite;
}

@keyframes code-glow-b-nn3lnmxgq1 {
    0%, 100% { border-color: var(--neo-primary-lighter); }
    50% { border-color: var(--neo-primary); }
}

.bm-invite-code-hint[b-nn3lnmxgq1] {
    font-size: var(--neo-font-sm);
    color: var(--neo-text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.bm-invite-code[b-nn3lnmxgq1] {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 6px;
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #fff 0%, var(--neo-bg-subtle) 100%);
    padding: 0.65rem 1.25rem;
    border-radius: var(--neo-radius-sm);
    border: 2px solid var(--neo-primary);
    color: var(--neo-primary);
    display: inline-block;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.bm-invite-code-alt[b-nn3lnmxgq1] {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 6px;
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, var(--neo-warning-bg), rgba(251, 191, 36, 0.15));
    padding: 0.65rem 1.25rem;
    border-radius: var(--neo-radius-sm);
    border: 2px solid var(--neo-warning);
    color: var(--neo-warning);
    display: inline-block;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2);
}

/* ── Member Grid Inline Code ── */
.bm-member-code[b-nn3lnmxgq1] {
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
    font-size: var(--neo-font-xs);
    background: linear-gradient(135deg, var(--neo-primary-bg), rgba(79, 70, 229, 0.08));
    padding: 0.3rem 0.6rem;
    border-radius: var(--neo-radius-sm);
    border: 1px solid var(--neo-primary-lighter);
    color: var(--neo-primary);
}

/* ── Member Actions Row ── */
.bm-member-actions[b-nn3lnmxgq1] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

/* ── Dialog Form ── */
.bm-dialog-form[b-nn3lnmxgq1] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 0.5rem;
}

.bm-dialog-form > div[b-nn3lnmxgq1] {
    animation: field-fade-in-b-nn3lnmxgq1 0.3s ease-out backwards;
}

.bm-dialog-form > div:nth-child(1)[b-nn3lnmxgq1] { animation-delay: 0.05s; }
.bm-dialog-form > div:nth-child(2)[b-nn3lnmxgq1] { animation-delay: 0.1s; }
.bm-dialog-form > div:nth-child(3)[b-nn3lnmxgq1] { animation-delay: 0.15s; }
.bm-dialog-form > div:nth-child(4)[b-nn3lnmxgq1] { animation-delay: 0.2s; }

@keyframes field-fade-in-b-nn3lnmxgq1 {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ── AI Remaining Info ── */
.bm-ai-remaining[b-nn3lnmxgq1] {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: var(--neo-font-sm);
    color: var(--neo-text-secondary);
    background: var(--neo-bg-card);
    border-radius: var(--neo-radius-sm);
    border: 1px solid var(--neo-border);
    font-weight: 600;
}

.bm-ai-remaining strong[b-nn3lnmxgq1] {
    color: var(--neo-primary);
    font-size: var(--neo-font-md);
}

/* ── Member Card List ── */
.bm-member-cards[b-nn3lnmxgq1] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bm-member-card[b-nn3lnmxgq1] {
    background: var(--neo-bg-card);
    border: 1px solid var(--neo-border);
    border-radius: var(--neo-radius-md);
    padding: 1rem 1.25rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: card-slide-in-b-nn3lnmxgq1 0.4s ease-out backwards;
}

.bm-member-card:nth-child(1)[b-nn3lnmxgq1] { animation-delay: 0.05s; }
.bm-member-card:nth-child(2)[b-nn3lnmxgq1] { animation-delay: 0.1s; }
.bm-member-card:nth-child(3)[b-nn3lnmxgq1] { animation-delay: 0.15s; }
.bm-member-card:nth-child(4)[b-nn3lnmxgq1] { animation-delay: 0.2s; }
.bm-member-card:nth-child(5)[b-nn3lnmxgq1] { animation-delay: 0.25s; }

@keyframes card-slide-in-b-nn3lnmxgq1 {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bm-member-card[b-nn3lnmxgq1]::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--neo-primary), var(--neo-primary-lighter));
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bm-member-card:hover[b-nn3lnmxgq1] {
    border-color: var(--neo-primary-lighter);
    box-shadow: var(--neo-shadow-md);
    transform: translateY(-2px);
}

.bm-member-card:hover[b-nn3lnmxgq1]::before {
    height: 100%;
}

.bm-member-card-main[b-nn3lnmxgq1] {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.bm-member-card-info[b-nn3lnmxgq1] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 160px;
}

.bm-member-card-name[b-nn3lnmxgq1] {
    font-weight: 700;
    font-size: var(--neo-font-md);
    color: var(--neo-text-primary);
}

.bm-member-card-mobile[b-nn3lnmxgq1] {
    font-size: var(--neo-font-sm);
    color: var(--neo-text-muted);
    font-family: 'Courier New', monospace;
    direction: ltr;
    text-align: right;
}

.bm-member-card-badges[b-nn3lnmxgq1] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
    flex: 1;
}

.bm-member-card-badges[b-nn3lnmxgq1]  .neo-badge {
    transition: all 0.2s ease;
}

.bm-member-card-badges[b-nn3lnmxgq1]  .neo-badge:hover {
    transform: translateY(-1px);
    box-shadow: var(--neo-shadow-sm);
}

.bm-member-card-actions[b-nn3lnmxgq1] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
    margin-right: auto;
}

/* ── Unified Detail Dialog ── */
.bm-detail-readonly[b-nn3lnmxgq1] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--neo-bg-subtle), rgba(241, 245, 249, 0.5));
    padding: 1rem 1.25rem;
    border-radius: var(--neo-radius-md);
    border: 1px solid var(--neo-border);
    margin-bottom: 1rem;
}

.bm-detail-row[b-nn3lnmxgq1] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--neo-border-light);
}

.bm-detail-row:last-child[b-nn3lnmxgq1] {
    border-bottom: none;
    padding-bottom: 0;
}

.bm-detail-label[b-nn3lnmxgq1] {
    font-size: var(--neo-font-sm);
    font-weight: 500;
    color: var(--neo-text-muted);
    min-width: 120px;
    flex-shrink: 0;
}

.bm-detail-value[b-nn3lnmxgq1] {
    font-size: var(--neo-font-base);
    font-weight: 600;
    color: var(--neo-text-primary);
}

.bm-detail-quick-actions[b-nn3lnmxgq1] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding-top: 0.75rem;
    border-top: 2px dashed var(--neo-border);
    margin-top: 0.5rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .bm-info-grid[b-nn3lnmxgq1],
    .bm-stats-row[b-nn3lnmxgq1] {
        grid-template-columns: 1fr;
    }

    .bm-member-card-main[b-nn3lnmxgq1] {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .bm-member-card-info[b-nn3lnmxgq1] {
        min-width: 100%;
    }

    .bm-member-card-badges[b-nn3lnmxgq1] {
        justify-content: flex-start;
    }

    .bm-member-card-actions[b-nn3lnmxgq1] {
        justify-content: flex-start;
        margin-right: 0;
    }

    .bm-invite-form[b-nn3lnmxgq1] {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
    }

    .bm-invite-field[b-nn3lnmxgq1],
    .bm-invite-role[b-nn3lnmxgq1],
    .bm-invite-expiry[b-nn3lnmxgq1] {
        min-width: 100%;
    }

    [b-nn3lnmxgq1] .neo-profile-tabs .k-tabstrip-items {
        padding: 0 0.25rem;
    }

    [b-nn3lnmxgq1] .neo-profile-tabs .k-tabstrip-items .k-item {
        padding: 0.6rem 1rem;
        font-size: var(--neo-font-sm);
    }

    .bm-invite-code[b-nn3lnmxgq1],
    .bm-invite-code-alt[b-nn3lnmxgq1] {
        font-size: 1.25rem;
        letter-spacing: 4px;
        padding: 0.5rem 0.85rem;
    }

    .bm-detail-row[b-nn3lnmxgq1] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .bm-detail-label[b-nn3lnmxgq1] {
        min-width: auto;
    }
}

/* ── Print Styles ── */
@media print {
    .bm-member-card-actions[b-nn3lnmxgq1],
    .bm-detail-quick-actions[b-nn3lnmxgq1],
    .sub-actions[b-nn3lnmxgq1],
    .bm-quick-links[b-nn3lnmxgq1] {
        display: none !important;
    }

    .bm-member-card[b-nn3lnmxgq1] {
        border: 1px solid #ccc !important;
        box-shadow: none !important;
        page-break-inside: avoid;
    }

    .bm-info-grid[b-nn3lnmxgq1] {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Loading & Skeleton States ── */
[b-nn3lnmxgq1] .k-skeleton {
    animation: skeleton-pulse-b-nn3lnmxgq1 1.5s ease-in-out infinite;
}

@keyframes skeleton-pulse-b-nn3lnmxgq1 {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ── Accessibility ── */
.bm-invite-expiry-toggle:focus-within[b-nn3lnmxgq1] {
    outline: 2px solid var(--neo-primary);
    outline-offset: 2px;
    border-radius: var(--neo-radius-sm);
}

.bm-member-card:focus-within[b-nn3lnmxgq1] {
    border-color: var(--neo-primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
/* /Components/Pages/Workspace/WorkspaceSelector.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════
   WORKSPACE SELECTOR — Scoped Styles (Modern 2025)
   ═══════════════════════════════════════════════════════ */

/* ── Workspace List ── */
.ws-list[b-tfdz4c63c2] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

/* ── Workspace Item (card-like) ── */
.neo-workspace-item[b-tfdz4c63c2] {
    display: block;
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--neo-border);
    border-radius: 12px;
    background: var(--neo-surface);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: right;
    font-family: inherit;
    font-size: inherit;
    color: var(--neo-text);
}

.neo-workspace-item:hover:not(:disabled)[b-tfdz4c63c2] {
    border-color: var(--neo-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    transform: translateY(-1px);
}

/* رینگِ فوکوسِ صریح — چون :focus سراسری outline را حذف می‌کند و فوکوسِ برنامه‌ای (JS)
   معمولاً :focus-visible را فعال نمی‌کند، از box-shadow استفاده می‌کنیم تا فوکوسِ خودکارِ
   اولین کسب‌وکار همیشه دیده شود (کاربر مستقیم با Enter انتخاب می‌کند). */
.neo-workspace-item:focus:not(:disabled)[b-tfdz4c63c2] {
    outline: none;
    border-color: var(--neo-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.35);
}

.neo-workspace-item:disabled[b-tfdz4c63c2] {
    opacity: 0.5;
    cursor: not-allowed;
}

.neo-workspace-expired[b-tfdz4c63c2] {
    border-color: var(--neo-danger);
    background: rgba(220, 53, 69, 0.03);
}

.ws-item-row[b-tfdz4c63c2] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ws-item-icon[b-tfdz4c63c2] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ws-item-icon[b-tfdz4c63c2]  svg {
    width: 20px;
    height: 20px;
    color: var(--neo-primary);
}

.neo-workspace-expired .ws-item-icon[b-tfdz4c63c2] {
    background: rgba(220, 53, 69, 0.08);
}

.neo-workspace-expired .ws-item-icon[b-tfdz4c63c2]  svg {
    color: var(--neo-danger);
}

.ws-item-info[b-tfdz4c63c2] {
    flex: 1;
    min-width: 0;
}

.ws-item-info strong[b-tfdz4c63c2] {
    display: block;
    font-size: 0.9rem;
}

.ws-item-meta[b-tfdz4c63c2] {
    display: block;
    font-size: 0.78rem;
    color: var(--neo-text-muted);
    margin-top: 0.15rem;
}

.ws-item-status[b-tfdz4c63c2] {
    flex-shrink: 0;
}

/* ── Badges ── */
.ws-badge[b-tfdz4c63c2] {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.ws-badge-success[b-tfdz4c63c2] {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.ws-badge-danger[b-tfdz4c63c2] {
    background: rgba(220, 53, 69, 0.1);
    color: var(--neo-danger);
}

.ws-badge-muted[b-tfdz4c63c2] {
    background: rgba(0, 0, 0, 0.05);
    color: var(--neo-text-muted);
}

/* ── User Code ── */
.ws-user-code[b-tfdz4c63c2] {
    font-size: 0.82rem;
    background: rgba(99, 102, 241, 0.08);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    color: var(--neo-primary);
}

/* ── Loading ── */
.ws-loading[b-tfdz4c63c2] {
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--neo-text-muted);
    font-size: 0.85rem;
}

.ws-spinner-dark[b-tfdz4c63c2] {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--neo-primary);
}

/* ── Empty State ── */
.ws-empty[b-tfdz4c63c2] {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--neo-text-muted);
}

.ws-empty-icon[b-tfdz4c63c2] {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(99, 102, 241, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.ws-empty-icon[b-tfdz4c63c2]  svg {
    width: 28px;
    height: 28px;
    color: var(--neo-primary);
    opacity: 0.6;
}

.ws-empty p[b-tfdz4c63c2] {
    margin: 0;
}

.ws-empty-hint[b-tfdz4c63c2] {
    font-size: 0.83rem;
    margin-top: 0.3rem !important;
    opacity: 0.7;
}

/* ── Invitations ── */
.ws-invitations[b-tfdz4c63c2] {
    margin-top: 1.25rem;
    border: 1.5px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    padding: 0.85rem;
    background: rgba(255, 251, 235, 0.6);
}

.ws-invitations-title[b-tfdz4c63c2] {
    margin: 0 0 0.65rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #d97706;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.ws-invitations-title[b-tfdz4c63c2]  svg {
    width: 18px;
    height: 18px;
}

.ws-invitations-list[b-tfdz4c63c2] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ws-invitation-card[b-tfdz4c63c2] {
    padding: 0.7rem;
    background: white;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
}

.ws-invitation-header[b-tfdz4c63c2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.ws-invitation-header strong[b-tfdz4c63c2] {
    font-size: 0.88rem;
}

.ws-invitation-role[b-tfdz4c63c2] {
    font-size: 0.78rem;
    color: var(--neo-text-muted);
    margin-top: 0.1rem;
}

.ws-invitation-actions[b-tfdz4c63c2] {
    display: flex;
    gap: 0.35rem;
    align-items: center;
    margin-top: 0.35rem;
}

.ws-invitation-hint[b-tfdz4c63c2] {
    font-size: 0.78rem;
    color: var(--neo-text-muted);
    flex: 1;
}

.ws-invitation-code-hint[b-tfdz4c63c2] {
    margin-top: 0.4rem;
    padding: 0.4rem 0;
    font-size: 0.8rem;
    color: var(--neo-text-muted);
}

.ws-inline-input[b-tfdz4c63c2] {
    flex: 1;
    padding: 0.35rem 0.55rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.84rem;
    text-align: center;
    font-family: inherit;
    transition: border-color 0.2s;
}

.ws-inline-input:focus[b-tfdz4c63c2] {
    outline: none;
    border-color: var(--neo-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.ws-inline-msg[b-tfdz4c63c2] {
    margin-top: 0.35rem;
    padding: 0.35rem 0.55rem;
    border-radius: 8px;
    font-size: 0.8rem;
}

.ws-inline-msg-success[b-tfdz4c63c2] {
    background: #e8f5e9;
    color: #2e7d32;
}

.ws-inline-msg-error[b-tfdz4c63c2] {
    background: #ffebee;
    color: #c62828;
}

/* ── Footer Actions ── */
.ws-footer-actions[b-tfdz4c63c2] {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
/* /Components/Shared/Breadcrumb.razor.rz.scp.css */
.neo-breadcrumb-current[b-2un7ljg3si] {
    font-weight: 600;
    color: var(--neo-text);
}
/* /Components/Shared/EditPageHeader.razor.rz.scp.css */
.editheader-btn-save[b-0viikcgayl],
.editheader-btn-cancel[b-0viikcgayl] {
    min-width: 5.5rem;
}
/* /Components/Shared/EmptyState.razor.rz.scp.css */
/* ── EmptyState scoped styles ── */

.neo-empty-state-container[b-v03xcol8y0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 3rem 1.5rem;
    text-align: center;
    color: var(--neo-text-muted, #888);
}

.neo-empty-state-icon[b-v03xcol8y0] {
    opacity: 0.4;
    margin-bottom: 0.25rem;
}

.neo-empty-state-title[b-v03xcol8y0] {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--neo-text-secondary, #666);
    margin: 0;
}

.neo-empty-state-description[b-v03xcol8y0] {
    font-size: 0.875rem;
    max-width: 400px;
    margin: 0;
    line-height: 1.6;
}

.neo-empty-state-actions[b-v03xcol8y0] {
    margin-top: 0.5rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
/* /Components/Shared/ListPageHeader.razor.rz.scp.css */
.listheader-reports-dropdown[b-vmrnrxbrv1] {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 1000;
    min-width: 220px;
    padding: .5rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}
/* /Components/Shared/LoadingSkeleton.razor.rz.scp.css */
/* ── LoadingSkeleton scoped styles ── */

.neo-skeleton-container[b-91t9e5s1t6] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    width: 100%;
}

/* ── Shimmer animation ── */
@keyframes neo-shimmer-b-91t9e5s1t6 {
    0% {
        background-position: -400px 0;
    }

    100% {
        background-position: 400px 0;
    }
}

/* ── Shared placeholder base ── */
.neo-skeleton-line[b-91t9e5s1t6],
.neo-skeleton-line-wide[b-91t9e5s1t6],
.neo-skeleton-row[b-91t9e5s1t6],
.neo-skeleton-header[b-91t9e5s1t6],
.neo-skeleton-card[b-91t9e5s1t6] {
    background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
    background-size: 800px 100%;
    animation: neo-shimmer-b-91t9e5s1t6 1.6s ease-in-out infinite;
    border-radius: 6px;
}

/* ── Text variant ── */
.neo-skeleton-line[b-91t9e5s1t6] {
    height: 14px;
    width: 60%;
}

.neo-skeleton-line-wide[b-91t9e5s1t6] {
    height: 14px;
    width: 85%;
}

/* ── Table variant ── */
.neo-skeleton-header[b-91t9e5s1t6] {
    height: 40px;
    width: 100%;
    opacity: 0.7;
}

.neo-skeleton-row[b-91t9e5s1t6] {
    height: 32px;
    width: 100%;
}

/* ── Cards variant ── */
.neo-skeleton-card-grid[b-91t9e5s1t6] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    width: 100%;
}

.neo-skeleton-card[b-91t9e5s1t6] {
    height: 120px;
    width: 100%;
}
/* /Components/Shared/ReportPageHeader.razor.rz.scp.css */
.neo-report-page-header-toolbar[b-thsevbqsrl] {
    flex-wrap: nowrap;
    gap: 0.45rem;
    align-items: center;
    justify-content: flex-start;
    direction: ltr;
}

.rpt-btn-print[b-thsevbqsrl],
.rpt-btn-excel[b-thsevbqsrl],
.rpt-btn-csv[b-thsevbqsrl],
.rpt-btn-load[b-thsevbqsrl] {
    min-width: 6rem;
}
/* /Components/Shared/SubscriptionWarningBanner.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════
   SUBSCRIPTION WARNING BANNER — Scoped Styles
   ═══════════════════════════════════════════════════════ */

.sub-warn-banner[b-xa03fkflfh] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 1rem;
    border-radius: var(--neo-radius-sm, 6px);
    margin-bottom: 0.75rem;
    font-size: 0.88rem;
    gap: 0.75rem;
}

.sub-warn-content[b-xa03fkflfh] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.sub-warn-content[b-xa03fkflfh]  svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.sub-warn-danger[b-xa03fkflfh] {
    background: var(--neo-danger-bg, #fef2f2);
    border: 1px solid var(--neo-danger-border, #fecaca);
    color: var(--neo-danger, #ef4444);
}

.sub-warn-warning[b-xa03fkflfh] {
    background: var(--neo-warning-bg, #fffbeb);
    border: 1px solid var(--neo-warning-border, #fde68a);
    color: var(--neo-warning-text, #b45309);
}

.sub-warn-actions[b-xa03fkflfh] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.sub-warn-btn[b-xa03fkflfh] {
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.82rem;
    padding: 0.3rem 0.65rem;
    transition: opacity 0.15s ease;
}

.sub-warn-btn:hover[b-xa03fkflfh] {
    opacity: 0.85;
}

.sub-warn-btn-primary[b-xa03fkflfh] {
    background: var(--neo-primary, #3b82f6);
    color: #fff;
    font-weight: 600;
}

.sub-warn-btn-dismiss[b-xa03fkflfh] {
    background: transparent;
    color: inherit;
    font-size: 1.1rem;
    padding: 0.15rem 0.4rem;
    line-height: 1;
}
