/* /Components/Layout/SideBar/RightRailSidebar.razor.rz.scp.css */
/* ===== Right-rail RTL collapsible sidebar — palette: basalt / lotus / uruk / sumerian ===== */

.rrs-sidebar[b-jkazocnnif] {
    --rrs-width: 340px;
    --rrs-width-collapsed: 64px;
    --rrs-bg: #ffffff;
    --rrs-header-bg: #f5f6fa; /* lotus-bg-subtle */
    --rrs-fg: #1f3b4d; /* basalt */
    --rrs-fg-muted: rgba(16, 49, 107, 0.62);
    --rrs-border: #dee1ec; /* lotus */
    --rrs-hover-bg: #f5f6fa; /* lotus-bg-subtle */

    --rrs-active-bg: #d1f0e4; /* sumerian-bg-subtle */
    --rrs-active-fg: #2f6f60; /* sumerian */
    --rrs-active-border: #2f6f60; /* sumerian */

    --rrs-expand-hover-bg: #fdf6cc; /* uruk-bg-subtle */
    --rrs-expand-accent: #c9a950; /* uruk */

    --rrs-tooltip-bg: #1f3b4d; /* basalt */
    --rrs-tooltip-fg: #ffffff;
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    height: 100vh;
    z-index: 1000;
    width: var(--rrs-width);
    background: var(--rrs-bg);
    color: var(--rrs-fg);
    display: flex;
    flex-direction: column;
    border-inline-end: 1px solid var(--rrs-border);
    box-shadow: -2px 0 12px rgba(16, 49, 107, 0.06);
    transition: width 0.2s ease, transform 0.25s ease;
    border-bottom-left-radius: 0.75rem;
    border-top-left-radius: 0.75rem;
    font-family: inherit;
}

    .rrs-sidebar.rrs-collapsed[b-jkazocnnif] {
        width: var(--rrs-width-collapsed);
        overflow: visible;
    }

/* ---- header / toggle (rendered directly in RightRailSidebar.razor — no ::deep needed) ---- */
.rrs-header[b-jkazocnnif] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px;
    background: var(--rrs-header-bg);
    border-bottom: 1px solid var(--rrs-border);
    flex-shrink: 0;
}

.rrs-brand[b-jkazocnnif] {
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--rrs-fg);
    white-space: nowrap;
}

.rrs-toggle-btn[b-jkazocnnif] {
    background: #ffffff;
    border: 1px solid var(--rrs-border);
    color: var(--rrs-fg);
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

    .rrs-toggle-btn:hover[b-jkazocnnif],
    .rrs-toggle-btn:focus-visible[b-jkazocnnif] {
        background: var(--rrs-active-fg);
        border-color: var(--rrs-active-fg);
        color: #ffffff;
        outline: none;
        transform: translateY(-1px);
    }

    .rrs-toggle-btn:focus-visible[b-jkazocnnif] {
        outline: 2px solid var(--rrs-expand-accent);
        outline-offset: 1px;
    }

/* ---- floating mobile toggle (only exists in DOM while sidebar is collapsed) ---- */
.rrs-mobile-toggle[b-jkazocnnif] {
    display: none;
}

/* ---- search (also direct in RightRailSidebar.razor) ---- */
.rrs-search-wrap[b-jkazocnnif] {
    padding: 10px 12px;
    background: var(--rrs-header-bg);
    border-bottom: 1px solid var(--rrs-border);
    flex-shrink: 0;
}

.rrs-search-input[b-jkazocnnif] {
    width: 100%;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid var(--rrs-border);
    color: var(--rrs-fg);
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 0.9rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

    .rrs-search-input[b-jkazocnnif]::placeholder {
        color: rgba(16, 49, 107, 0.4);
    }

    .rrs-search-input:focus-visible[b-jkazocnnif] {
        outline: none;
        border-color: var(--rrs-active-fg);
        box-shadow: 0 0 0 3px rgba(11, 132, 87, 0.15);
    }

/* ---- scrollable nav shell (direct) ---- */
.rrs-nav[b-jkazocnnif] {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 6px 0;
}

    .rrs-nav[b-jkazocnnif]::-webkit-scrollbar {
        width: 6px;
    }

    .rrs-nav[b-jkazocnnif]::-webkit-scrollbar-thumb {
        background: var(--rrs-border);
        border-radius: 3px;
    }

.rrs-collapsed .rrs-nav[b-jkazocnnif] {
    overflow: visible;
}

.rrs-menu[b-jkazocnnif] {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ---- footer: avatar + username + logout (rendered directly, no ::deep needed) ---- */
.rrs-footer[b-jkazocnnif] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    border-top: 1px solid var(--rrs-border);
    background: var(--rrs-header-bg);
    flex-shrink: 0;
}

.rrs-footer-user[b-jkazocnnif] {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.rrs-avatar[b-jkazocnnif] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--rrs-active-bg);
    color: var(--rrs-active-fg);
    border: 2px solid var(--rrs-active-fg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    overflow: hidden;
}

    .rrs-avatar img[b-jkazocnnif] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.rrs-username[b-jkazocnnif] {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--rrs-fg);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rrs-logout-btn[b-jkazocnnif] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
    color: var(--rrs-fg-muted);
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

    .rrs-logout-btn:hover[b-jkazocnnif],
    .rrs-logout-btn:focus-visible[b-jkazocnnif] {
        background: var(--rrs-expand-hover-bg);
        color: var(--rrs-fg);
        outline: none;
    }

.rrs-collapsed .rrs-footer[b-jkazocnnif] {
    flex-direction: column;
    gap: 10px;
    padding: 10px 6px;
}

/* =====================================================================
   Everything below is rendered by the CHILD component
   (RightRailSidebarItem.razor), so scoped CSS never reaches it without
   ::deep.
   ===================================================================== */

/* accordion-style open/close — always in DOM, animated via max-height */
[b-jkazocnnif] .rrs-submenu {
    list-style: none;
    margin: 0;
    padding-inline-end: 10px;
    border-inline-end: 1px dashed var(--rrs-border);
    margin-inline-end: 18px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.22s ease;
}

    [b-jkazocnnif] .rrs-submenu.rrs-submenu-open {
        max-height: 3000px;
        opacity: 1;
    }

.rrs-collapsed[b-jkazocnnif]  .rrs-submenu {
    position: absolute;
    inset-inline-start: 100%;
    top: 0;
    margin-inline-start: 8px;
    min-width: 220px;
    background: var(--rrs-bg);
    border: 1px solid var(--rrs-border);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(16, 49, 107, 0.18);
    padding: 6px;
    z-index: 50;
/*    max-height: 80vh;*/
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease;
}

    .rrs-collapsed[b-jkazocnnif]  .rrs-submenu.rrs-submenu-open {
        opacity: 1;
        visibility: visible;
    }

.rrs-collapsed[b-jkazocnnif]  :has(.rrs-submenu-open) {
    overflow: visible;
}

[b-jkazocnnif] .rrs-item {
    position: relative;
}

[b-jkazocnnif] .rrs-link {
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    padding: 9px 13px;
    color: var(--rrs-fg-muted);
    text-decoration: none;
    background: transparent;
    border: none;
    font: inherit;
    text-align: right;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 8px;
    margin: 2px 6px;
    width: calc(100% - 12px);
    transition: background 0.15s ease, color 0.15s ease;
}

    [b-jkazocnnif] .rrs-link:hover,
    [b-jkazocnnif] .rrs-link:focus-visible {
        background: var(--rrs-hover-bg);
        color: var(--rrs-fg);
        outline: none;
    }

    [b-jkazocnnif] .rrs-link.rrs-parent-btn:hover,
    [b-jkazocnnif] .rrs-link.rrs-parent-btn:focus-visible {
        background: var(--rrs-expand-hover-bg);
        color: var(--rrs-fg);
    }

    [b-jkazocnnif] .rrs-link:focus-visible {
        outline: 2px solid var(--rrs-expand-accent);
        outline-offset: -2px;
    }

[b-jkazocnnif] .rrs-item.rrs-active > .rrs-link {
    background: var(--rrs-active-bg);
    color: var(--rrs-active-fg);
    font-weight: 700;
    border-inline-end: 3px solid var(--rrs-active-border);
}



[b-jkazocnnif] .rrs-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--uruk-color);
}

/* third level+ : shrink icon slightly, free up room for text */
[b-jkazocnnif] .rrs-link.rrs-depth-2 .rrs-icon,
[b-jkazocnnif] .rrs-link.rrs-depth-3 .rrs-icon {
    width: 16px;
    height: 16px;
}

[b-jkazocnnif] .rrs-item.rrs-active > .rrs-link .rrs-icon {
    color: var(--uruk-color);
}

[b-jkazocnnif] .rrs-text {
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.92rem;
}

[b-jkazocnnif] .rrs-link.rrs-depth-2 .rrs-text,
[b-jkazocnnif] .rrs-link.rrs-depth-3 .rrs-text {
    font-size: 0.87rem;
}

[b-jkazocnnif] .rrs-chevron {
    margin-inline-start: auto;
    transition: transform 0.15s ease, color 0.15s ease;
    color: var(--rrs-expand-accent);
}

[b-jkazocnnif] .rrs-chevron-open {
    transform: rotate(-90deg);
}

/* ---- collapsed / icon-only mode ---- */
.rrs-collapsed[b-jkazocnnif]  .rrs-link {
    justify-content: center;
    padding: 10px;
    margin: 2px 8px;
    width: calc(100% - 16px);
}

.rrs-collapsed[b-jkazocnnif]  .rrs-flyout .rrs-link {
    justify-content: flex-start;
    padding: 9px 13px;
    margin: 2px 6px;
    width: calc(100% - 12px);
}

[b-jkazocnnif] a.rrs-link.rrs-depth-1 {
    justify-content: flex-start;
}

[b-jkazocnnif] a.rrs-link.rrs-depth-2 {
    justify-content: flex-start;
}

[b-jkazocnnif] a.rrs-link.rrs-depth-3 {
    justify-content: start !important;
}

[b-jkazocnnif] .rrs-link.rrs-disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
}

/* ---- tooltip: shown when collapsed (icon-only), AND for depth 2+ links even
   when expanded, since deep-nested text runs out of room / gets truncated ---- */
[b-jkazocnnif] .rrs-tooltip {
    position: absolute;
    inset-inline-start: calc(100% + 8px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--rrs-tooltip-bg);
    color: var(--rrs-tooltip-fg);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    transform: translateY(-50%) translateX(-4px);
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(16, 49, 107, 0.25);
}

[b-jkazocnnif] .rrs-link:hover .rrs-tooltip,
[b-jkazocnnif] .rrs-link:focus-visible .rrs-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.rrs-sidebar:not(.rrs-collapsed)[b-jkazocnnif]  .rrs-link:not(.rrs-depth-2):not(.rrs-depth-3) .rrs-tooltip {
    display: none;
}


[b-jkazocnnif] .rrs-flyout {
    list-style: none;
    margin: 0;
    padding: 6px 0;
    position: absolute;
    inset-inline-end: calc(100% + 6px);
    top: 0;
    min-width: 220px;
    max-width: 280px;
    max-height: min(70vh, 480px);
    overflow-y: auto;
    overflow-x: visible;
    background: var(--rrs-bg);
    border: 1px solid var(--rrs-border);
    border-radius: 10px;
    box-shadow: -4px 4px 20px rgba(16, 49, 107, 0.14);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

    [b-jkazocnnif] .rrs-flyout.rrs-flyout-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

.rrs-collapsed[b-jkazocnnif]  .rrs-item.rrs-flyout-open-parent > .rrs-link.rrs-parent-btn {
    background: var(--rrs-active-bg);
    color: var(--rrs-active-fg);
}

[b-jkazocnnif] .rrs-flyout.rrs-flyout-open::before {
    content: "";
    position: absolute;
    inset-inline-start: 100%;
    top: 14px;
    border: 6px solid transparent;
    border-inline-start-color: var(--rrs-border);
}

[b-jkazocnnif] .rrs-flyout.rrs-flyout-open::after {
    content: "";
    position: absolute;
    inset-inline-start: 100%;
    top: 15px;
    border: 5px solid transparent;
    border-inline-start-color: var(--rrs-bg);
}

[b-jkazocnnif] .rrs-flyout::-webkit-scrollbar {
    width: 5px;
}

[b-jkazocnnif] .rrs-flyout::-webkit-scrollbar-thumb {
    background: var(--rrs-border);
    border-radius: 3px;
}

[b-jkazocnnif] .rrs-flyout .rrs-flyout {
    inset-inline-end: calc(100% + 4px);
    top: -6px;
    z-index: 2001;
}

.rrs-sidebar:not(.rrs-collapsed)[b-jkazocnnif]  .rrs-flyout {
    display: none !important;
}

/* ---- responsive: sidebar becomes off-canvas overlay, no reserved space ---- */
@media (max-width: 768px) {
    .rrs-sidebar[b-jkazocnnif] {
        width: min(80vw, 300px);
        transform: translateX(0);
        box-shadow: -6px 0 24px rgba(16, 49, 107, 0.18);
    }

        .rrs-sidebar.rrs-collapsed[b-jkazocnnif] {
            width: min(80vw, 300px);
            transform: translateX(100%);
            overflow: hidden;
        }

    .rrs-mobile-toggle[b-jkazocnnif] {
        display: flex;
        position: fixed;
        top: 12px;
        inset-inline-start: 12px;
        z-index: 1100;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        border: none;
        background: var(--rrs-active-fg, #0b8457);
        color: #fff;
        align-items: center;
        justify-content: center;
        box-shadow: 0 3px 12px rgba(16, 49, 107, 0.3);
        cursor: pointer;
    }

        .rrs-mobile-toggle:hover[b-jkazocnnif],
        .rrs-mobile-toggle:focus-visible[b-jkazocnnif] {
            filter: brightness(1.08);
            outline: none;
        }

    .rrs-collapsed[b-jkazocnnif]  .rrs-flyout {
        display: none !important;
    }
}
/* /Components/MyComs/AcceptDialog.razor.rz.scp.css */
[b-3rw457v1fp] .header-dialog-info {
    background: #6A9C89 !important;
    font: 700 !important;
    font-weight: 700 !important;
    color: #000 !important;
}

[b-3rw457v1fp] .header-dialog-warning {
    background: #ffc107 !important;
    font: 700 !important;
    font-weight: 700 !important;
    color: #000 !important;
}

[b-3rw457v1fp] .header-dialog-danger {
    background: #dc3545 !important;
    font: 700 !important;
    font-weight: 700 !important;
    color: #fff !important;
}
/* /Components/MyComs/FinancialYear.razor.rz.scp.css */
.financial-year-container[b-q4r6ihxhyj] {
    direction: rtl;
    margin: 0.75rem;
}
/* /Components/MyComs/ReportSearchBar.razor.rz.scp.css */
/* کاغذ فیلتر با افکت نرم و مدرن */
.modern-filter-card[b-d9sx6iucbi] {
    border-radius: 16px;
    margin: 12px;
/*    background: linear-gradient(135deg, #f8fdfc 0%, #ffffff 100%);*/
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.2s ease;
    max-width: 100%;
}

    .modern-filter-card:hover[b-d9sx6iucbi] {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.05);
        transform: translateY(-1px);
    }

/* گرید با فاصله نرم و یکنواخت */
.filter-grid[b-d9sx6iucbi] {
    padding: 12px 8px;
}

/* فیلدهای ورودی یکدست و زیبا */
.modern-input[b-d9sx6iucbi] {
    height: 44px !important;
    font-size: 0.875rem !important;
}

    .modern-input .mud-input-control[b-d9sx6iucbi] {
        margin-top: 0 !important;
    }

    .modern-input .mud-input-label[b-d9sx6iucbi] {
        font-weight: 500;
        color: #374151;
    }

    .modern-input .mud-input-outlined[b-d9sx6iucbi] {
        border-radius: 10px;
        background: #ffffff;
    }

.filter-action-btn[b-d9sx6iucbi] {
    height: 44px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: none;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
    transition: all 0.2s ease;
}

    .filter-action-btn:hover[b-d9sx6iucbi] {
        background: linear-gradient(135deg, #c9a950 0%, #c9a950 100%);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
        transform: translateY(-1px);
    }

/* آیکون جستجو با رنگ نرم */
.search-icon[b-d9sx6iucbi] {
    color: #6b7280;
}

.field-compact[b-d9sx6iucbi] {
    display: flex;
    align-items: flex-end; /* تراز دقیق با input ها */
}

[b-d9sx6iucbi](.modern-filter-card) {
    overflow: visible !important;
}

[b-d9sx6iucbi](.mud-popover) {
    z-index: 2000 !important;
    overflow: visible !important;
}
/* انیمیشن نرم برای لودینگ */
@@keyframes fadeIn {
    from[b-d9sx6iucbi] {
        opacity: 0;
        transform: translateY(4px);
    }

    to[b-d9sx6iucbi] {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in[b-d9sx6iucbi] {
    animation: fadeIn 0.3s ease-out;
}

.filter-action-btn[b-d9sx6iucbi] {
    height: 44px !important;
    padding: 0 12px;
}

.mud-popover[b-d9sx6iucbi] {
    z-index: 2000 !important;
}

/* تقویم قطع نشه */
.mud-popover[b-d9sx6iucbi] {
    z-index: 2000 !important;
}

.mud-dialog[b-d9sx6iucbi],
.mud-paper[b-d9sx6iucbi] {
    overflow: visible !important;
}

.compact-field .mud-input-control[b-d9sx6iucbi] {
    min-width: 0 !important;
    width: 100% !important;
}

.compact-field .mud-input-root[b-d9sx6iucbi] {
    min-width: 0 !important;
}

.compact-field .mud-picker[b-d9sx6iucbi] {
    min-width: 0 !important;
}

.rotate-180[b-d9sx6iucbi] {
    transform: rotate(180deg);
}

body.filter-scroll-lock[b-d9sx6iucbi] {
    overflow-y: scroll !important;
}

.filter-divider[b-d9sx6iucbi] {
    flex-grow: 1;
    height: 1px;
    background-color: #c0c0c0;
    margin-left: 8px;
}

.filter-header-wrapper:hover[b-d9sx6iucbi] {
    color: #0fb881;
}

.filter-container[b-d9sx6iucbi] {
    max-height: 60vh;
    overflow-y: auto;
}

:root[b-d9sx6iucbi] {
    scrollbar-gutter: stable;
}

.compact-select .mud-select[b-d9sx6iucbi] {
    height: 18px;
}

.compact-select .mud-input-root[b-d9sx6iucbi] {
    min-height: 36px;
}

.compact-select .mud-select[b-d9sx6iucbi] {
    height: 36px;
}

.compact-select .mud-input-root[b-d9sx6iucbi] {
    min-height: 36px;
}

[b-d9sx6iucbi] .mud-collapse-entered .mud-collapse-wrapper {
    overflow-y: hidden;
}
/* /Components/MyComs/TabBar.razor.rz.scp.css */
.custom-tabs-wrapper[b-44nrx2iscn] {
    display: flex;
    flex-direction: column;
}

.custom-tabs-nav[b-44nrx2iscn] {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .custom-tabs-nav[b-44nrx2iscn]::-webkit-scrollbar {
        display: none;
    }

    .custom-tabs-nav .nav-link.active[b-44nrx2iscn] {
        color: #10316b; 
        border-bottom-color: #10316b;
        font-weight: 600;
    }

    .custom-tabs-nav .nav-link:not(.active):not(.disabled):hover[b-44nrx2iscn] {
        color: #10316b;
        border-color: transparent transparent #dee1ec;
    }

    .custom-tabs-nav .nav-link .tab-icon[b-44nrx2iscn] {
        vertical-align: middle;
        opacity: 0.75;
    }

    .custom-tabs-nav .nav-link.active .tab-icon[b-44nrx2iscn] {
        opacity: 1;
        color: #c9a950;
    }

    .custom-tabs-nav .tab-badge[b-44nrx2iscn] {
        font-size: 0.7rem;
        vertical-align: middle;
    }

.custom-tabs-content[b-44nrx2iscn] {
    flex: 1;
}

.custom-tab-pane[b-44nrx2iscn] {
    display: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

    .custom-tab-pane.active[b-44nrx2iscn] {
        display: block;
    }

        .custom-tab-pane.active.show[b-44nrx2iscn] {
            opacity: 1;
            transform: translateY(0);
        }
/* /Components/Pages/Account/Components/NewLoginPage.razor.rz.scp.css */
[b-4v21ugms9o] {
    --brand-color: #16423C;
    --brand-color-hover: #0f2f2a;
}

.login-page[b-4v21ugms9o] {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    background-image: url('dist/img/login-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 30%;
}

    .login-page[b-4v21ugms9o]  .login-card {
        position: absolute;
        top: 16.2%;
        left: 62%;
        width: 30%;
        height: 67.9%;
        background: #ffffff;
        border-radius: 20px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        padding: 24px;
        min-height: 492px;
    }

    .login-page[b-4v21ugms9o]  .login-card-inner {
        width: 100%;
        max-width: 320px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    /* ---------- لوگو و عنوان ---------- */
    .login-page[b-4v21ugms9o]  .login-logo {
        width: 130px;
        height: 130px;
        margin-bottom: 4px;
    }

    .login-page[b-4v21ugms9o]  .login-title {
        text-align: center;
        margin: 0 0 8px 0;
        color: var(--brand-color);
        font-weight: 700;
    }

    .login-page[b-4v21ugms9o]  .login-error {
        width: 100%;
        text-align: center;
        background: #fdecea;
        color: #b3261e;
        border: 1px solid #f5c2c0;
        border-radius: 8px;
        padding: 8px 12px;
        font-size: 0.85rem;
        margin-bottom: 4px;
    }

    /* ---------- فرم و فیلدها ---------- */
    .login-page[b-4v21ugms9o]  .login-form {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px !important;
    }

    .login-page[b-4v21ugms9o]  .login-field {
        width: 100%;
    }

        .login-page[b-4v21ugms9o]  .login-field .mud-input-outlined:focus-within,
        .login-page[b-4v21ugms9o]  .login-field .mud-input-outlined.mud-shrink {
            box-shadow: 0 0 0 2px rgba(22, 66, 60, 0.18);
            border-radius: 8px;
        }

    .login-page[b-4v21ugms9o]  .login-timer {
        display: block;
        text-align: center;
        color: var(--brand-color) !important;
        font-size: 0.85rem;
    }

    .login-page[b-4v21ugms9o]  .login-submit-btn {
        width: 100%;
        background-color: var(--brand-color) !important;
        color: #fff !important;
        border-radius: 8px;
        transition: background-color 0.2s ease, transform 0.1s ease;
    }

        .login-page[b-4v21ugms9o]  .login-submit-btn:hover {
            background-color: var(--brand-color-hover) !important;
        }

        .login-page[b-4v21ugms9o]  .login-submit-btn:active {
            transform: scale(0.98);
        }

    .login-page[b-4v21ugms9o]  .login-back-link {
        display: block;
        text-align: center;
        color: var(--brand-color) !important;
        margin-top: 4px;
    }

    .login-page[b-4v21ugms9o]  .login-links-row {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .login-page[b-4v21ugms9o]  .login-social-row {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 4px;
        position: relative;
        bottom: 0;
    }

        .login-page[b-4v21ugms9o]  .login-social-row img {
            width: 28px;
            height: 28px;
            transition: transform 0.15s ease, opacity 0.15s ease;
        }

        .login-page[b-4v21ugms9o]  .login-social-row a:hover img {
            transform: translateY(-2px);
            opacity: 0.85;
        }

@media (max-width: 900px) {
    .login-page[b-4v21ugms9o] {
        background-position: 65% center;
        background-image: unset;
        display: flex;
    }

        .login-page[b-4v21ugms9o]  .login-card {
            position: relative;
            inset: unset;
            top: unset;
            left: unset;
            width: 90%;
            height: auto;
            max-height: 92vh;
            margin: auto;
            overflow-y: auto;
        }
}

@media (max-width: 480px) {
    .login-page[b-4v21ugms9o]  .login-card {
        width: 94%;
        padding: 18px;
        border-radius: 14px;
    }

    .login-page[b-4v21ugms9o]  .login-logo {
        width: 64px;
        height: 64px;
    }
}
/* /Components/Pages/AccReport/AccRepKolReport.razor.rz.scp.css */
body[b-3x24vz4r9m] {
    height: 100%;
}

.selected > td[b-3x24vz4r9m] {
    color: white !important;
}

    .selected > td .mud-input[b-3x24vz4r9m] {
        color: white !important;
    }

.mud-grid-spacing-xs-3[b-3x24vz4r9m] {
    width: 100%;
    margin: 0px;
}

.mud-grid-spacing-xs-6[b-3x24vz4r9m] {
    width: 100%;
    margin: 0;
}

.setting-grid[b-3x24vz4r9m] {
    padding-left: 0 !important;
    padding-top: 0 !important;
}

.header-color[b-3x24vz4r9m] {
    background-color: var(--sumerian-color) !important;
    min-width: 500px !important;
}

.mud-table-container[b-3x24vz4r9m] {
    width: 100% !important;
}

.mud-picker-inline.mud-picker-input-text[b-3x24vz4r9m] {
    direction: rtl;
}

.filtered-header[b-3x24vz4r9m] {
    background-color: #f3d250 !important;
    color: #000 !important;
    font-weight: bold;
}
/* /Components/Pages/AccReport/AccRepMandeMoeinTafsili.razor.rz.scp.css */
body[b-e5xk52dn4d] {
    height: 80%;
}

.selected > td[b-e5xk52dn4d] {
    color: white !important;
}

    .selected > td .mud-input[b-e5xk52dn4d] {
        color: white !important;
    }

.mud-grid-spacing-xs-3[b-e5xk52dn4d] {
    width: 100%;
    margin: 0px;
}

.mud-grid-spacing-xs-6[b-e5xk52dn4d] {
    width: 100%;
    margin: 0;
}

.setting-grid[b-e5xk52dn4d] {
    padding-left: 0 !important;
    padding-top: 0 !important;
}



.mud-table-container[b-e5xk52dn4d] {
    width: 100% !important;
}

.mud-picker-inline.mud-picker-input-text[b-e5xk52dn4d] {
    direction: rtl;
}
/* /Components/Pages/AccReport/AccRepMandeMoeinTafsili2.razor.rz.scp.css */
body[b-jzwefcvo5h] {
    height: 80%;
}

.selected > td[b-jzwefcvo5h] {
    color: white !important;
}

    .selected > td .mud-input[b-jzwefcvo5h] {
        color: white !important;
    }

.mud-grid-spacing-xs-3[b-jzwefcvo5h] {
    width: 100%;
    margin: 0px;
}

.mud-grid-spacing-xs-6[b-jzwefcvo5h] {
    width: 100%;
    margin: 0;
}

.setting-grid[b-jzwefcvo5h] {
    padding-left: 0 !important;
    padding-top: 0 !important;
}



.mud-table-container[b-jzwefcvo5h] {
    width: 100% !important;
}

.mud-picker-inline.mud-picker-input-text[b-jzwefcvo5h] {
    direction: rtl;
}
/* /Components/Pages/AccReport/AccRepSarfaslReport.razor.rz.scp.css */
.mud-table-container[b-ooordxgjrs] {
    width: 100% !important;
}
/* /Components/Pages/CADocument/CloseDocs.razor.rz.scp.css */
/* /Components/Pages/EmissionDocuments/DeletedDocs.razor.rz.scp.css */
[b-jecbsx6j3y] .mud-grid.mud-grid-spacing-xs-2.justify-start.d-flex.align-center.justify-end {
    justify-content: right !important;
    margin-left: 30px;
}
/* /Components/Pages/Purchases/PaymentVerify.razor.rz.scp.css */
[b-0xnskzvann].pv-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: linear-gradient(135deg, #f4f6fb 0%, #e9edf7 100%);
}

[b-0xnskzvann].pv-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    width: 100%;
    max-width: 440px;
    animation: pv-fade-in-b-0xnskzvann .4s ease-out;
}

@keyframes pv-fade-in-b-0xnskzvann {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Loading ---- */
[b-0xnskzvann].pv-spinner {
    width: 56px;
    height: 56px;
    margin: 0 auto;
    border: 4px solid #e2e6f0;
    border-top-color: #10316b;
    border-radius: 50%;
    animation: pv-spin-b-0xnskzvann 0.9s linear infinite;
}

@keyframes pv-spin-b-0xnskzvann {
    to {
        transform: rotate(360deg);
    }
}

/* ---- Icon circles ---- */
[b-0xnskzvann].pv-icon-circle {
    width: 96px;
    height: 96px;
    margin: 0 auto;
}

[b-0xnskzvann].pv-checkmark, [b-0xnskzvann].pv-cross {
    width: 100%;
    height: 100%;
}

[b-0xnskzvann].pv-checkmark-circle {
    stroke: #0b8457;
    stroke-width: 3;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: pv-circle-draw-b-0xnskzvann 0.5s ease-out forwards;
}

[b-0xnskzvann].pv-checkmark-check {
    stroke: #0b8457;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: pv-check-draw-b-0xnskzvann 0.35s 0.45s ease-out forwards;
}

[b-0xnskzvann].pv-cross-circle {
    stroke: #d64545;
    stroke-width: 3;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: pv-circle-draw-b-0xnskzvann 0.5s ease-out forwards;
}

[b-0xnskzvann].pv-cross-line1, [b-0xnskzvann].pv-cross-line2 {
    stroke: #d64545;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: pv-check-draw-b-0xnskzvann 0.3s 0.45s ease-out forwards;
}

[b-0xnskzvann].pv-cross-line2 {
    animation-delay: 0.6s;
}

@keyframes pv-circle-draw-b-0xnskzvann {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pv-check-draw-b-0xnskzvann {
    to {
        stroke-dashoffset: 0;
    }
}

/* ---- Details ---- */
[b-0xnskzvann].pv-details {
    background: #f7f8fc;
    border-radius: 16px;
    padding: 16px 18px;
}

[b-0xnskzvann].pv-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ebf3;
    font-size: 14px;
}

    [b-0xnskzvann].pv-detail-row:last-child {
        border-bottom: none;
    }

[b-0xnskzvann].pv-label {
    color: #6b7280;
}

[b-0xnskzvann].pv-value {
    font-weight: 600;
    color: #1f2937;
    direction: ltr;
}

[b-0xnskzvann].pv-copy-btn {
    color: #10316b;
    text-decoration: none;
}

/* ---- Buttons ---- */
[b-0xnskzvann].pv-btn-primary {
    background: #0b8457;
    color: #fff;
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
    border: none;
    transition: transform .15s ease, box-shadow .15s ease;
}

    [b-0xnskzvann].pv-btn-primary:hover {
        background: #096e48;
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(11,132,87,.25);
    }

[b-0xnskzvann].pv-btn-ghost {
    background: transparent;
    color: #10316b;
    border: 1px solid #dde1ec;
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
}

    [b-0xnskzvann].pv-btn-ghost:hover {
        background: #f4f6fb;
        color: #10316b;
    }
/* /Components/Pages/Purchases/Purchase.razor.rz.scp.css */
[b-3hbxz09rhl].pricing-page {
    --sumerian: #2f6f60;
    --uruk: #c9a950;
    --basalt: #1f3b4d;
    --lotus: #f7f6f2;
    --sumerian-bg: #edf5f3;
    --uruk-bg: #faf7ee;
    --basalt-bg: #eef2f4;
    --lotus-bg: #fdfdfc;
    --sumerian-border: #b8d4cd;
    --uruk-border: #e5d59b;
    --basalt-border: #b9c9d2;
    --radius: 1rem;
    --shadow: 0 4px 24px rgba(31, 59, 77, 0.06);
}

    [b-3hbxz09rhl].pricing-page .card-panel {
        background: #fff;
        border: 1px solid var(--basalt-border);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        height: 100%;
    }

    [b-3hbxz09rhl].pricing-page .section-label {
        background: var(--sumerian-bg);
        color: var(--sumerian);
        font-weight: 600;
        font-size: 0.95rem;
        border-radius: 0.75rem;
        padding: 0.55rem 1rem;
        text-align: center;
        margin-bottom: 0.75rem;
    }

    [b-3hbxz09rhl].pricing-page .qty-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }

    [b-3hbxz09rhl].pricing-page .qty-btn {
        width: 2.25rem;
        height: 2.25rem;
        border-radius: 0.65rem;
        border: 1px solid var(--sumerian-border);
        background: var(--sumerian-bg);
        color: var(--sumerian);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: background 0.15s, transform 0.1s;
    }

        [b-3hbxz09rhl].pricing-page .qty-btn:hover {
            background: var(--sumerian);
            color: #fff;
        }

        [b-3hbxz09rhl].pricing-page .qty-btn:active {
            transform: scale(0.95);
        }

    [b-3hbxz09rhl].pricing-page .qty-input {
        width: 4rem;
        text-align: center;
        font-weight: 700;
        color: var(--basalt);
        border: 1px solid var(--basalt-border);
        border-radius: 0.65rem;
        padding: 0.4rem 0.25rem;
        background: var(--lotus-bg);
    }

        [b-3hbxz09rhl].pricing-page .qty-input:focus {
            outline: none;
            border-color: var(--sumerian);
            box-shadow: 0 0 0 3px rgba(47, 111, 96, 0.15);
        }

    [b-3hbxz09rhl].pricing-page .product-card {
        border: 1px solid var(--basalt-border);
        border-radius: 0.85rem;
        padding: 1rem 1.15rem;
        transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
        cursor: pointer;
        background: #fff;
    }

        [b-3hbxz09rhl].pricing-page .product-card:hover {
            border-color: var(--sumerian-border);
            box-shadow: 0 2px 12px rgba(47, 111, 96, 0.08);
        }

        [b-3hbxz09rhl].pricing-page .product-card.is-selected {
            border-color: var(--sumerian);
            background: var(--sumerian-bg);
        }

        [b-3hbxz09rhl].pricing-page .product-card .form-check-input {
            width: 1.25rem;
            height: 1.25rem;
            border-color: var(--sumerian-border);
            cursor: pointer;
        }

            [b-3hbxz09rhl].pricing-page .product-card .form-check-input:checked {
                background-color: var(--sumerian);
                border-color: var(--sumerian);
            }

    [b-3hbxz09rhl].pricing-page .product-name {
        font-weight: 600;
        color: var(--basalt);
        font-size: 1rem;
    }

    [b-3hbxz09rhl].pricing-page .product-desc {
        color: rgba(31, 59, 77, 0.65);
        font-size: 0.85rem;
        margin-top: 0.25rem;
    }

    [b-3hbxz09rhl].pricing-page .product-price {
        color: var(--sumerian);
        font-weight: 700;
        font-size: 1.05rem;
        white-space: nowrap;
    }

    [b-3hbxz09rhl].pricing-page .form-select,
    [b-3hbxz09rhl].pricing-page .form-control {
        border-radius: 0.65rem;
        border-color: var(--basalt-border);
        color: var(--basalt);
    }

        [b-3hbxz09rhl].pricing-page .form-select:focus,
        [b-3hbxz09rhl].pricing-page .form-control:focus {
            border-color: var(--sumerian);
            box-shadow: 0 0 0 3px rgba(47, 111, 96, 0.15);
        }

    [b-3hbxz09rhl].pricing-page .price-row {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        padding: 0.35rem 0;
        color: var(--basalt);
        font-size: 0.95rem;
    }

        [b-3hbxz09rhl].pricing-page .price-row .value {
            font-weight: 600;
            font-variant-numeric: tabular-nums;
        }

        [b-3hbxz09rhl].pricing-page .price-row.discount .value {
            color: #c0392b;
        }

    [b-3hbxz09rhl].pricing-page .price-total {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.85rem 1rem;
        margin-top: 0.5rem;
        background: var(--uruk-bg);
        border: 1px solid var(--uruk-border);
        border-radius: 0.75rem;
        color: var(--basalt);
        font-weight: 700;
        font-size: 1.1rem;
    }

    [b-3hbxz09rhl].pricing-page .btn-pay {
        background: var(--sumerian);
        border: none;
        color: #fff;
        font-weight: 600;
        border-radius: 0.75rem;
        padding: 0.75rem 1rem;
        transition: background 0.15s, transform 0.1s;
    }

        [b-3hbxz09rhl].pricing-page .btn-pay:hover {
            background: #265a4e;
            color: #fff;
        }

        [b-3hbxz09rhl].pricing-page .btn-pay:active {
            transform: scale(0.98);
        }

    [b-3hbxz09rhl].pricing-page .hero-title {
        color: var(--basalt);
        font-weight: 700;
        font-size: 1.35rem;
    }

    [b-3hbxz09rhl].pricing-page .hero-sub {
        color: var(--sumerian);
        font-size: 0.95rem;
        font-weight: 500;
    }

    [b-3hbxz09rhl].pricing-page .badge-free {
        background: var(--uruk-bg);
        color: #8a7328;
        border: 1px solid var(--uruk-border);
        font-weight: 600;
        font-size: 0.8rem;
        border-radius: 2rem;
        padding: 0.25rem 0.75rem;
    }
/* /Components/Pages/SystemUsers/SystemUser.razor.rz.scp.css */


    .selected > td[b-hebx7atbz3] {
        color: white !important;
    }

        .selected > td .mud-input[b-hebx7atbz3] {
            color: white !important;
        }
/* /Components/Pages/SystemUsers/SystemUserUpsertDialog.razor.rz.scp.css */
/* /Components/Pages/Test/Test.razor.rz.scp.css */
[b-y81ub53w4i] {
    --brand-color: #16423C;
    --brand-color-hover: #0f2f2a;
}

.login-page[b-y81ub53w4i] {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    background-image: url('dist/img/login-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 30%;
}

    .login-page[b-y81ub53w4i]  .login-card {
        position: absolute;
        top: 16.2%;
        left: 62%;
        width: 30%;
        height: 67.9%;
        background: #ffffff;
        border-radius: 20px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        padding: 24px;
    }

    .login-page[b-y81ub53w4i]  .login-card-inner {
        width: 100%;
        max-width: 320px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    /* ---------- لوگو و عنوان ---------- */
    .login-page[b-y81ub53w4i]  .login-logo {
        width: 130px;
        height: 130px;
        margin-bottom: 4px;
    }

    .login-page[b-y81ub53w4i]  .login-title {
        text-align: center;
        margin: 0 0 8px 0;
        color: var(--brand-color);
        font-weight: 700;
    }

    .login-page[b-y81ub53w4i]  .login-error {
        width: 100%;
        text-align: center;
        background: #fdecea;
        color: #b3261e;
        border: 1px solid #f5c2c0;
        border-radius: 8px;
        padding: 8px 12px;
        font-size: 0.85rem;
        margin-bottom: 4px;
    }

    /* ---------- فرم و فیلدها ---------- */
    .login-page[b-y81ub53w4i]  .login-form {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px !important;
    }

    .login-page[b-y81ub53w4i]  .login-field {
        width: 100%;
    }

        .login-page[b-y81ub53w4i]  .login-field .mud-input-outlined:focus-within,
        .login-page[b-y81ub53w4i]  .login-field .mud-input-outlined.mud-shrink {
            box-shadow: 0 0 0 2px rgba(22, 66, 60, 0.18);
            border-radius: 8px;
        }

    .login-page[b-y81ub53w4i]  .login-timer {
        display: block;
        text-align: center;
        color: var(--brand-color) !important;
        font-size: 0.85rem;
    }

    .login-page[b-y81ub53w4i]  .login-submit-btn {
        width: 100%;
        background-color: var(--brand-color) !important;
        color: #fff !important;
        border-radius: 8px;
        transition: background-color 0.2s ease, transform 0.1s ease;
    }

        .login-page[b-y81ub53w4i]  .login-submit-btn:hover {
            background-color: var(--brand-color-hover) !important;
        }

        .login-page[b-y81ub53w4i]  .login-submit-btn:active {
            transform: scale(0.98);
        }

    .login-page[b-y81ub53w4i]  .login-back-link {
        display: block;
        text-align: center;
        color: var(--brand-color) !important;
        margin-top: 4px;
    }

    .login-page[b-y81ub53w4i]  .login-links-row {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .login-page[b-y81ub53w4i]  .login-social-row {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 4px;
        position: relative;
        bottom: 0;
    }

        .login-page[b-y81ub53w4i]  .login-social-row img {
            width: 28px;
            height: 28px;
            transition: transform 0.15s ease, opacity 0.15s ease;
        }

        .login-page[b-y81ub53w4i]  .login-social-row a:hover img {
            transform: translateY(-2px);
            opacity: 0.85;
        }

@media (max-width: 900px) {
    .login-page[b-y81ub53w4i] {
        background-position: 65% center;
        background-image: unset;
    }

        .login-page[b-y81ub53w4i]  .login-card {
            position: relative;
            inset: unset;
            top: unset;
            left: unset;
            width: 90%;
            height: auto;
            max-height: 92vh;
            margin: 4vh auto 0 auto;
            overflow-y: auto;
        }
}

@media (max-width: 480px) {
    .login-page[b-y81ub53w4i]  .login-card {
        width: 94%;
        padding: 18px;
        border-radius: 14px;
    }

    .login-page[b-y81ub53w4i]  .login-logo {
        width: 64px;
        height: 64px;
    }
}
