/* /Components/ConfirmDialog.razor.rz.scp.css */
.confirm-dialog-backdrop[b-2y227zuj4t] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.confirm-dialog[b-2y227zuj4t] {
    direction: rtl;
    background: #fff;
    width: min(420px, 100%);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.confirm-dialog-header[b-2y227zuj4t] {
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.95rem;
}

.confirm-dialog-body[b-2y227zuj4t] {
    padding: 0.85rem;
    font-size: 0.875rem;
    line-height: 1.45;
}

.confirm-dialog-footer[b-2y227zuj4t] {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}
/* /Components/DocumentViewerModal.razor.rz.scp.css */
.doc-viewer-modal-backdrop[b-qd5czh9slp] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.doc-viewer-modal[b-qd5czh9slp] {
    background: #fff;
    width: min(1200px, 100%);
    height: min(88vh, 900px);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.doc-viewer-modal-header[b-qd5czh9slp] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid #e9ecef;
}

.doc-viewer-modal-body[b-qd5czh9slp] {
    flex: 1;
    min-height: 0;
}

.doc-viewer-modal-loading[b-qd5czh9slp],
.doc-viewer-modal-error[b-qd5czh9slp] {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.doc-viewer-modal-frame[b-qd5czh9slp] {
    border: 0;
    width: 100%;
    height: 100%;
}
/* /Components/LoadingOverlay.razor.rz.scp.css */
.loading-overlay-container[b-v8ugk5aiy2] {
    position: relative;
}

.content-blurred[b-v8ugk5aiy2] {
    filter: blur(1.5px);
    opacity: 0.65;
    pointer-events: none;
    transition: filter 0.25s ease, opacity 0.25s ease;
}

.loading-spinner-overlay[b-v8ugk5aiy2] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 1rem 1.25rem;
}

.loading-spinner[b-v8ugk5aiy2] {
    width: 2rem;
    height: 2rem;
    border: 0.25rem solid var(--color-gray-200);
    border-top-color: var(--color-orange);
    border-radius: 50%;
    animation: loading-spin-b-v8ugk5aiy2 0.8s linear infinite;
}

.loading-text[b-v8ugk5aiy2] {
    color: var(--color-gray-600);
    font-size: var(--fs-sm);
    font-weight: 600;
    white-space: nowrap;
}

@keyframes loading-spin-b-v8ugk5aiy2 {
    to {
        transform: rotate(360deg);
    }
}
/* /Components/NotificationMessage.razor.rz.scp.css */
.notification-message[b-p7h29exa9d] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border: 1px solid;
    border-radius: var(--radius-md);
    padding: 0.72rem 0.85rem;
    box-shadow: var(--shadow-md);
    font-size: var(--fs-sm);
    line-height: 1.45;
}

.notification-message--floating[b-p7h29exa9d] {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2200;
    width: min(32rem, calc(100vw - 2rem));
}

.notification-message--inline[b-p7h29exa9d] {
    width: 100%;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.notification-message__marker[b-p7h29exa9d] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 1.45rem;
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 999px;
    color: var(--color-white);
    font-weight: 800;
    font-size: 0.78rem;
}

.notification-message__content[b-p7h29exa9d] {
    flex: 1;
    min-width: 0;
}

.notification-message__title[b-p7h29exa9d] {
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.notification-message__dismiss[b-p7h29exa9d] {
    border: 0;
    background: transparent;
    color: inherit;
    opacity: 0.65;
    line-height: 1;
    padding: 0;
    font-size: 1.15rem;
}

.notification-message__dismiss:hover[b-p7h29exa9d] {
    opacity: 1;
}

.notification-message--success[b-p7h29exa9d] {
    color: #0f5132;
    background: linear-gradient(180deg, #f0fff7 0%, #e8f7ef 100%);
    border-color: #9bd8b8;
}

.notification-message--success .notification-message__marker[b-p7h29exa9d] {
    background: var(--color-success);
}

.notification-message--error[b-p7h29exa9d] {
    color: #842029;
    background: linear-gradient(180deg, #fff5f5 0%, #f8e7e8 100%);
    border-color: #e6a5aa;
}

.notification-message--error .notification-message__marker[b-p7h29exa9d] {
    background: var(--color-danger);
}

.notification-message--warning[b-p7h29exa9d] {
    color: #664d03;
    background: linear-gradient(180deg, #fffaf0 0%, #fbf0d3 100%);
    border-color: #e6cc75;
}

.notification-message--warning .notification-message__marker[b-p7h29exa9d] {
    background: #b58100;
}

.notification-message--info[b-p7h29exa9d] {
    color: #1f4b6e;
    background: linear-gradient(180deg, #f4fbff 0%, #e6f2f8 100%);
    border-color: #9fc9df;
}

.notification-message--info .notification-message__marker[b-p7h29exa9d] {
    background: var(--color-navy-light);
}
/* /Components/PepPublicRoleFields.razor.rz.scp.css */
.pep-public-role-fields .cp-check-line[b-4i7yzu7a2o] {
    align-items: center;
}

.pep-public-role-fields .cp-check-line[b-4i7yzu7a2o]  input[type="radio"].form-check-input,
.pep-public-role-fields .cp-check-line[b-4i7yzu7a2o]  .form-check-input {
    align-self: center;
}
/* /Components/ScrollableDataTable.razor.rz.scp.css */
.scrollable-data-table[b-6hg9gr7dwg] {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
}

.scrollable-data-table table[b-6hg9gr7dwg] {
    min-width: max-content;
    margin-bottom: 0;
    border-radius: 6px;
    overflow: visible;
}

.scrollable-data-table[b-6hg9gr7dwg]  thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    background-color: var(--color-navy);
    color: var(--color-white);
}

.scrollable-data-table[b-6hg9gr7dwg]  thead th:first-child {
    border-top-right-radius: 6px;
}

.scrollable-data-table[b-6hg9gr7dwg]  thead th:last-child {
    border-top-left-radius: 6px;
}

.scrollable-data-table[b-6hg9gr7dwg]  tbody td {
    vertical-align: middle;
}

.scrollable-data-table[b-6hg9gr7dwg]  tbody tr:last-child td {
    padding-bottom: 1rem;
}

.scrollable-data-table[b-6hg9gr7dwg]  .sortable-column {
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    transition: background-color 0.12s ease;
}

.scrollable-data-table[b-6hg9gr7dwg]  .sortable-column:hover {
    background-color: var(--color-navy-mid);
}

.scrollable-data-table[b-6hg9gr7dwg]  .sortable-column-active {
    background-color: var(--color-navy-light);
    box-shadow: inset 0 -2px 0 var(--color-orange);
}

.scrollable-data-table[b-6hg9gr7dwg]  .sortable-column:focus {
    outline: none;
}

.scrollable-data-table[b-6hg9gr7dwg]  .sortable-column:focus-visible {
    outline: 2px solid var(--color-orange);
    outline-offset: -2px;
}

.scrollable-data-table[b-6hg9gr7dwg]  .sortable-column-label {
    margin-inline-end: 0.35rem;
}

.scrollable-data-table[b-6hg9gr7dwg]  .sortable-column-indicator {
    font-size: 0.7rem;
    opacity: 0.7;
}

.scrollable-data-table[b-6hg9gr7dwg]  .sortable-column-active .sortable-column-indicator {
    color: var(--color-orange);
    opacity: 1;
}

.scrollable-data-table[b-6hg9gr7dwg] .table-hover > tbody > tr:hover > * {
    --bs-table-bg-state: var(--color-gray-50);
    background-color: var(--color-gray-50);
}
/* /Layout/MainLayout.razor.rz.scp.css */
.nexus-layout[b-c3qkh3wlyn] {
    display: grid;
    grid-template-areas:
        "header header"
        "sidebar main";
    grid-template-rows: var(--header-h, 56px) 1fr;
    grid-template-columns: var(--sidebar-w, 235px) 1fr;
    height: 100vh;
    background-color: #f8f9fb;
}

.nexus-header[b-c3qkh3wlyn] {
    grid-area: header;
    display: flex;
    align-items: center;
    padding: 0 1.15rem;
    background: linear-gradient(180deg, var(--color-navy-light) 0%, var(--color-navy-mid) 55%, var(--color-navy) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 1px 10px rgba(13, 20, 33, 0.08);
    z-index: 20;
}

.nexus-header-inner[b-c3qkh3wlyn] {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.nexus-header-brand[b-c3qkh3wlyn] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nexus-brandbar[b-c3qkh3wlyn] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    min-width: 0;
}

.nexus-brandbar:hover[b-c3qkh3wlyn] {
    text-decoration: none;
    opacity: 0.94;
}

.brand-logo[b-c3qkh3wlyn] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #0d1421;
    font-size: var(--fs-base, 0.9rem);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -1px;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(13, 20, 33, 0.12);
}

.brand-text[b-c3qkh3wlyn] {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
    gap: 0.15rem;
}

.brand-name[b-c3qkh3wlyn] {
    color: #f7f9fc;
    font-size: var(--fs-sm, 0.82rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-sub[b-c3qkh3wlyn] {
    color: rgba(247, 249, 252, 0.8);
    font-size: var(--fs-xs, 0.7rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nexus-header-spacer[b-c3qkh3wlyn] {
    flex: 1;
}

.nexus-sidebar[b-c3qkh3wlyn] {
    grid-area: sidebar;
    background: linear-gradient(180deg, var(--color-navy-light) 0%, var(--color-navy-mid) 55%, var(--color-navy) 100%);
    box-shadow: 2px 0 16px rgba(13, 20, 33, 0.08);
    overflow-x: hidden;
    overflow-y: auto;
}

.nexus-body[b-c3qkh3wlyn] {
    grid-area: main;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.nexus-content[b-c3qkh3wlyn] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-width: 0;
    /* Single scroll boundary for all page content */
}

article.content[b-c3qkh3wlyn] {
    padding: 2rem 1.25rem;
    min-height: 0;
}

@media (max-width: 1512px) and (min-width: 1201px) {
    .nexus-layout[b-c3qkh3wlyn] {
        --header-h: 50px;
        --sidebar-w: 215px;
    }

    .brand-logo[b-c3qkh3wlyn] {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 1200px) {
    .nexus-layout[b-c3qkh3wlyn] {
        --header-h: 48px;
        --sidebar-w: 200px;
    }

    .brand-logo[b-c3qkh3wlyn] {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 992px) {
    .nexus-layout[b-c3qkh3wlyn] {
        --header-h: 48px;
        --sidebar-w: 185px;
    }
}

@media (max-width: 768px) {
    .nexus-layout[b-c3qkh3wlyn] {
        grid-template-areas:
            "header"
            "main";
        grid-template-columns: 1fr;
        grid-template-rows: var(--header-h, 48px) 1fr;
    }

    .nexus-sidebar[b-c3qkh3wlyn] {
        display: none;
    }

    article.content[b-c3qkh3wlyn] {
        padding: 0.75rem 0.85rem;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* ── Toggler ────────────────────────────────────────────── */
.navbar-toggler[b-n5fr9gcslp] {
    background-color: rgba(255,255,255,.1);
    border: none;
    border-radius: 4px;
    padding: 4px 8px;
}

/* ── Section label ──────────────────────────────────────── */
.nav-section-label[b-n5fr9gcslp] {
    font-size: var(--fs-xs, 0.68rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(247, 249, 252, 0.75);
    padding: 1.1rem 1.1rem 0.35rem;
}

/* ── Nav items ──────────────────────────────────────────── */
.nav-item[b-n5fr9gcslp] {
    padding-bottom: 0.15rem;
}

.nav-item[b-n5fr9gcslp]  a {
    color: #f7f9fc;
    border-radius: var(--radius-sm, 6px);
    height: 2.4rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0 0.65rem;
    text-decoration: none;
    font-size: var(--fs-base, 0.84rem);
    font-weight: 500;
    transition: background-color .15s, color .15s;
}

.nav-item[b-n5fr9gcslp]  a.active {
    background-color: #e05500;
    color: #ffffff;
    font-weight: 700;
}

.nav-item[b-n5fr9gcslp]  a:hover:not(.active) {
    background-color: rgba(247, 249, 252, 0.12);
    color: #ffffff;
}

.nav-icon[b-n5fr9gcslp] {
    font-size: var(--fs-md, 0.9rem);
    width: 1.15rem;
    text-align: center;
    flex-shrink: 0;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (min-width: 641px) {
    .navbar-toggler[b-n5fr9gcslp] { display: none; }
    .collapse[b-n5fr9gcslp] { display: block; }
    .nav-scrollable[b-n5fr9gcslp] {
        height: 100vh;
        overflow-y: auto;
    }
}
/* /Pages/Admin/UsersRoles.razor.rz.scp.css */
/* ── Permission badge ────────────────────────────── */
.perm-badge[b-51m46ovf7m] {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 700;
    padding: 0.18rem 0.5rem;
    border-radius: 20px;
}

.perm-yes[b-51m46ovf7m] {
    background-color: #d4edda;
    color: #0e7c4a;
}

.perm-no[b-51m46ovf7m] {
    background-color: #f0f2f5;
    color: #9aa5b4;
}

/* ── Role chip (assigned roles on a user row) ────── */
.role-chip[b-51m46ovf7m] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background-color: #e8edf5;
    color: #1a2744;
    font-size: var(--fs-xs);
    font-weight: 600;
    padding: 0.18rem 0.45rem 0.18rem 0.6rem;
    border-radius: 20px;
    transition: background-color var(--transition-fast);
}

.role-chip-remove[b-51m46ovf7m] {
    all: unset;
    cursor: pointer;
    color: #9aa5b4;
    font-size: var(--fs-base);
    line-height: 1;
    transition: color var(--transition-fast);
}

.role-chip-remove:hover[b-51m46ovf7m] {
    color: #c53030;
}
/* /Pages/Aml/AmlRuleList.razor.rz.scp.css */
.aml-rules-page[b-nomib8exfz] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - var(--header-h, 56px) - 4.75rem);
    min-height: 0;
    overflow: hidden;
}

.aml-rules-header[b-nomib8exfz] {
    flex: 0 0 auto;
    margin-bottom: 1rem;
}

.aml-rules-table-wrap[b-nomib8exfz] {
    width: 100%;
}

[b-nomib8exfz] .aml-rules-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
}

[b-nomib8exfz] .aml-rules-table th,
[b-nomib8exfz] .aml-rules-table td {
    vertical-align: top;
    text-align: start;
}

[b-nomib8exfz] .aml-rules-table th:nth-child(3),
[b-nomib8exfz] .aml-rules-table td:nth-child(3) {
    width: 10%;
}

[b-nomib8exfz] .aml-rules-table th:nth-child(8),
[b-nomib8exfz] .aml-rules-table td:nth-child(8) {
    width: 11rem;
}

.aml-rules-actions[b-nomib8exfz] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.aml-rule-dialog-backdrop[b-nomib8exfz] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.aml-rule-dialog[b-nomib8exfz] {
    direction: rtl;
    background: #fff;
    width: min(720px, 100%);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.aml-rule-dialog-header[b-nomib8exfz],
.aml-rule-dialog-footer[b-nomib8exfz] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid #e9ecef;
}

.aml-rule-dialog-footer[b-nomib8exfz] {
    border-bottom: 0;
    border-top: 1px solid #e9ecef;
    justify-content: flex-start;
    gap: 0.5rem;
}

.aml-rule-parameter-form[b-nomib8exfz] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.aml-rule-parameter-field .form-label[b-nomib8exfz] {
    margin-bottom: 0.25rem;
    font-size: var(--fs-sm);
}

.aml-rule-reason-codes[b-nomib8exfz] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.35rem 0.75rem;
}

.aml-rule-reason-option[b-nomib8exfz] {
    margin: 0;
    font-size: var(--fs-sm);
}

.aml-rule-dialog-body[b-nomib8exfz] {
    padding: 0.85rem;
    max-height: min(70vh, 640px);
    overflow: auto;
}

[b-nomib8exfz] .aml-rules-table th:nth-child(7),
[b-nomib8exfz] .aml-rules-table td:nth-child(7) {
    width: auto;
}

[b-nomib8exfz] .aml-rules-table th:nth-child(6),
[b-nomib8exfz] .aml-rules-table td:nth-child(6) {
    width: 5rem;
}

[b-nomib8exfz] .aml-rules-table th:nth-child(4),
[b-nomib8exfz] .aml-rules-table td:nth-child(4) {
    width: 8rem;
}

[b-nomib8exfz] .aml-rules-table th:nth-child(5),
[b-nomib8exfz] .aml-rules-table td:nth-child(5) {
    width: 4.25rem;
}

[b-nomib8exfz] .aml-rules-table th:nth-child(1),
[b-nomib8exfz] .aml-rules-table td:nth-child(1) {
    width: 5.5rem;
}

[b-nomib8exfz] .aml-rules-table th:nth-child(2),
[b-nomib8exfz] .aml-rules-table td:nth-child(2) {
    width: 16%;
}

.aml-rules-code[b-nomib8exfz] {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-navy);
    white-space: nowrap;
}

.aml-rules-name[b-nomib8exfz] {
    font-weight: 500;
    line-height: 1.35;
}

.aml-rules-params-cell[b-nomib8exfz] {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
}

.aml-rules-params[b-nomib8exfz] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.aml-rules-param-chip[b-nomib8exfz] {
    display: inline-flex;
    align-items: baseline;
    gap: 0.3rem;
    max-width: 100%;
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    background: var(--color-gray-100);
    border: 1px solid var(--color-gray-200);
    font-size: var(--fs-xs);
    line-height: 1.3;
}

.aml-rules-param-label[b-nomib8exfz] {
    color: var(--color-gray-600);
    white-space: nowrap;
}

.aml-rules-param-value[b-nomib8exfz] {
    color: var(--color-gray-900);
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.aml-rules-row[b-nomib8exfz] {
    transition: background 0.12s;
}

@media (max-width: 768px) {
    .aml-rules-page[b-nomib8exfz] {
        height: calc(100vh - var(--header-h, 48px) - 2.25rem);
    }
}
/* /Pages/Customers/CustomerFullProfile.razor.rz.scp.css */
.customer-profile .cfp-actions-under-tables[b-lx9ofp6z0j] {
    margin-top: 0.25rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--color-gray-200);
}

@media (max-width: 768px) {
    .customer-profile .cfp-actions-under-tables .d-flex[b-lx9ofp6z0j] {
        flex-direction: column;
    }

    .customer-profile .cfp-actions-under-tables .btn[b-lx9ofp6z0j] {
        width: 100%;
    }
}

.customer-profile.step1-quadrant-shell[b-lx9ofp6z0j] {
    direction: rtl;
    background-color: #e2e5ea;
    padding: 1rem 1rem 1.1rem;
    border-radius: 6px;
}

.customer-profile .step1-quadrant-grid[b-lx9ofp6z0j] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

.customer-profile .step1-panel[b-lx9ofp6z0j] {
    background: #fff;
    border: 1px solid #c5cad3;
    border-radius: 4px;
    padding: 0.75rem 0.85rem;
    min-width: 0;
    min-height: 0;
}

.customer-profile .step1-panel--full[b-lx9ofp6z0j] {
    grid-column: 1 / -1;
}

.customer-profile .step1-panel-caption[b-lx9ofp6z0j] {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-navy-mid);
    letter-spacing: 0.01em;
    margin-bottom: 0.75rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid var(--color-gray-200);
}

.customer-profile .cfp-kv-grid[b-lx9ofp6z0j] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem 1.25rem;
    align-items: start;
    width: 100%;
}

.customer-profile .cfp-kv[b-lx9ofp6z0j] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.customer-profile .cfp-kv--span[b-lx9ofp6z0j] {
    grid-column: 1 / -1;
}

.customer-profile .cfp-kv-label[b-lx9ofp6z0j] {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--color-gray-600);
    line-height: 1.25;
}

.customer-profile .cfp-kv-val[b-lx9ofp6z0j] {
    font-size: var(--fs-base);
    color: var(--color-gray-800);
    line-height: 1.45;
    word-break: break-word;
}

.customer-profile .cfp-kv-val--multiline[b-lx9ofp6z0j] {
    white-space: pre-wrap;
    line-height: 1.55;
}

.customer-profile .form-label[b-lx9ofp6z0j] {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--color-gray-600);
    margin-bottom: 0.25rem;
}

.customer-profile .form-check[b-lx9ofp6z0j] {
    display: flex;
    direction: ltr;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
    gap: 0.4rem;
    margin-bottom: 0.2rem;
}

.customer-profile .form-check .form-check-input[b-lx9ofp6z0j] {
    margin: 0;
}

.customer-profile .form-check .form-check-label[b-lx9ofp6z0j] {
    margin: 0;
    padding-right: 2rem;
    font-size: var(--fs-base);
}

@media (max-width: 1199.98px) {
    .customer-profile .cfp-kv-grid:not(.cfp-kv-grid--wide):not(.cfp-kv-grid--aml)[b-lx9ofp6z0j] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .customer-profile .cfp-kv-grid:not(.cfp-kv-grid--wide):not(.cfp-kv-grid--aml)[b-lx9ofp6z0j] {
        grid-template-columns: 1fr;
    }
}

.customer-profile .cfp-kv-grid.cfp-kv-grid--wide[b-lx9ofp6z0j] {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.customer-profile .cfp-kv-grid.cfp-kv-grid--aml[b-lx9ofp6z0j] {
    grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
}

@media (max-width: 1399.98px) {
    .customer-profile .cfp-kv-grid.cfp-kv-grid--wide[b-lx9ofp6z0j] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .customer-profile .cfp-kv-grid.cfp-kv-grid--wide[b-lx9ofp6z0j] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .customer-profile .cfp-kv-grid.cfp-kv-grid--wide[b-lx9ofp6z0j],
    .customer-profile .cfp-kv-grid.cfp-kv-grid--aml[b-lx9ofp6z0j] {
        grid-template-columns: 1fr;
    }
}

/* ── Profile tabs ─────────────────────────────────────────── */
.cfp-tabs[b-lx9ofp6z0j] {
    border-bottom: 2px solid var(--color-gray-200);
    margin-bottom: 1.25rem;
    gap: 0;
}

.cfp-tabs .nav-item[b-lx9ofp6z0j] {
    margin-bottom: -2px;
}

.cfp-tabs .nav-link[b-lx9ofp6z0j] {
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    padding: 0.55rem 1.1rem;
    font-size: var(--fs-sm, 0.875rem);
    font-weight: 600;
    color: var(--color-gray-600);
    background: transparent;
    transition: color 0.18s ease, border-color 0.18s ease;
}

.cfp-tabs .nav-link:hover[b-lx9ofp6z0j] {
    color: var(--color-orange);
    border-bottom-color: var(--color-orange-light);
    background: var(--color-orange-light);
}

.cfp-tabs .nav-link.active[b-lx9ofp6z0j] {
    color: var(--color-orange);
    border-bottom-color: var(--color-orange);
    background: transparent;
}

.customer-profile .cfp-panel-table-wrap[b-lx9ofp6z0j] {
    margin-inline: -0.85rem;
    margin-bottom: -0.75rem;
    margin-top: 0.35rem;
    overflow-x: auto;
}

.customer-profile .cfp-panel-table-wrap .table[b-lx9ofp6z0j] {
    font-size: var(--fs-sm);
}

.cfp-subsection-title[b-lx9ofp6z0j] {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-navy);
    margin: 0 0 0.5rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--color-gray-200);
}

@media (max-width: 991.98px) {
    .customer-profile .step1-quadrant-grid[b-lx9ofp6z0j] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Customers/CustomerList.razor.rz.scp.css */
.cl-customers-page[b-iwgzvxwdri] {
    position: relative;
    display: flex;
    flex-direction: column;
    height: calc(100vh - var(--header-h, 56px) - 4.75rem);
    min-height: 0;
    overflow: hidden;
}

.cl-page-header[b-iwgzvxwdri] {
    flex: 0 0 auto;
    margin-bottom: 1rem;
}

.cl-page-header-text[b-iwgzvxwdri] {
    min-width: 0;
}

@media (max-width: 768px) {
    .cl-page-header-text[b-iwgzvxwdri] {
        margin-inline-start: 0;
    }
}

/* ── Filter Card ──────────────────────────────────── */
.cl-filter-card[b-iwgzvxwdri] {
    flex: 0 0 auto;
    border: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-sm);
}

.cl-summary-row[b-iwgzvxwdri] {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.cl-badge[b-iwgzvxwdri] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.7rem;
    border-radius: 99px;
    font-size: var(--fs-xs);
    font-weight: 600;
}

.cl-badge-total[b-iwgzvxwdri]    { background: var(--color-gray-100); color: var(--color-gray-700); }
.cl-badge-filtered[b-iwgzvxwdri] { background: var(--color-gray-100); color: var(--color-gray-600); }
.cl-badge-corp[b-iwgzvxwdri]     { background: #e8f0ff; color: #3a5fc7; }
.cl-badge-indiv[b-iwgzvxwdri]    { background: #edfaf3; color: var(--color-success); }
.cl-badge-selected[b-iwgzvxwdri] { background: #fee2e2; color: #991b1b; }

.cl-table[b-iwgzvxwdri] {
    min-width: max-content;
}

.cl-row[b-iwgzvxwdri] {
    cursor: pointer;
}

/* ── Type Badges ─────────────────────────────────── */
.cl-type-badge[b-iwgzvxwdri] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.22rem 0.6rem;
    border-radius: 99px;
    font-size: var(--fs-xs);
    font-weight: 600;
}

.cl-type-corp[b-iwgzvxwdri]  { background: #e8f0ff; color: #3a5fc7; }
.cl-type-indiv[b-iwgzvxwdri] { background: #edfaf3; color: var(--color-success); }

/* ── Status Badges ───────────────────────────────── */
.cl-status-badge[b-iwgzvxwdri] {
    display: inline-block;
    padding: 0.22rem 0.6rem;
    border-radius: 99px;
    font-size: var(--fs-xs);
    font-weight: 600;
}

.cl-status-regular[b-iwgzvxwdri]   { background: #d1fae5; color: #065f46; }
.cl-status-occasional[b-iwgzvxwdri] { background: #fef3c7; color: #92400e; }
.cl-status-inactive[b-iwgzvxwdri]  { background: var(--color-gray-100); color: var(--color-gray-500); }

/* ── Table Helpers ───────────────────────────────── */
.cl-date[b-iwgzvxwdri] {
    color: var(--color-gray-500);
    font-size: var(--fs-sm);
    white-space: nowrap;
}

.cl-action-cell[b-iwgzvxwdri] {
    text-align: left;
    white-space: nowrap;
}

.cl-ledger-btn[b-iwgzvxwdri] {
    color: var(--color-navy-mid);
    border: 1px solid var(--color-navy-mid);
    background-color: #fff;
}

.cl-ledger-btn:hover[b-iwgzvxwdri],
.cl-ledger-btn:focus[b-iwgzvxwdri] {
    background-color: var(--color-navy-mid);
    border-color: var(--color-navy-mid);
    color: #fff;
}

.cl-select-cell[b-iwgzvxwdri] {
    width: 2.25rem;
    text-align: center;
    vertical-align: middle;
}

/* ── Empty State ─────────────────────────────────── */
.cl-empty-state[b-iwgzvxwdri] {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    text-align: center;
    padding: 3.5rem 1rem;
    color: var(--color-gray-500);
}

.cl-empty-icon[b-iwgzvxwdri] {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.cl-empty-state p[b-iwgzvxwdri] {
    font-size: var(--fs-base);
    margin-bottom: 1rem;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
    .cl-customers-page[b-iwgzvxwdri] {
        height: calc(100vh - var(--header-h, 48px) - 2.25rem);
    }

    .cl-summary-row[b-iwgzvxwdri] {
        font-size: 0.75rem;
    }
}
/* /Pages/Onboarding/OnboardingWizard.razor.rz.scp.css */
/* ── Page header ─────────────────────────────────────────── */
.wizard-page-header[b-d0sfgmha0a] {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.wz-title-row h2[b-d0sfgmha0a] {
    font-size: var(--fs-xl, 1.35rem);
    margin: 0;
}

/* ── Steps bar ───────────────────────────────────────────── */
.wz-steps-bar[b-d0sfgmha0a] {
    display: flex;
    align-items: flex-start;
    direction: rtl;
    gap: 0;
    width: 100%;
    margin-inline: auto;
    margin-top: 1.15rem;
    margin-bottom: 1.15rem;
}

/* connector line between steps */
.wz-connector[b-d0sfgmha0a] {
    flex: 1;
    height: 2px;
    background: var(--color-gray-300, #cdd3de);
    margin-top: 15px;
    transition: background 0.25s ease;
    min-width: 0.25rem;
}

.wz-connector--done[b-d0sfgmha0a] {
    background: var(--color-success, #0e7c4a);
}

/* individual step */
.wz-step[b-d0sfgmha0a] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    flex: 0 0 72px;
    width: 72px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    text-align: center;
}

.wz-step:focus-visible[b-d0sfgmha0a] {
    outline: 2px solid var(--color-orange, #e05500);
    outline-offset: 4px;
}

/* numbered / icon circle */
.wz-bubble[b-d0sfgmha0a] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    border: 2px solid var(--color-gray-300, #cdd3de);
    background: #fff;
    color: var(--color-gray-400, #9aa5b4);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    line-height: 1;
}

.wz-step--active .wz-bubble[b-d0sfgmha0a] {
    background: var(--color-orange, #e05500);
    border-color: var(--color-orange, #e05500);
    color: #fff;
    box-shadow: 0 2px 8px rgba(224, 85, 0, 0.35);
}

.wz-step--done .wz-bubble[b-d0sfgmha0a] {
    background: var(--color-success, #0e7c4a);
    border-color: var(--color-success, #0e7c4a);
    color: #fff;
}

/* step label */
.wz-label[b-d0sfgmha0a] {
    font-size: 0.68rem;
    font-weight: 600;
    white-space: normal;
    text-align: center;
    max-width: 72px;
    line-height: 1.2;
    color: var(--color-gray-400, #9aa5b4);
    transition: color 0.25s ease;
}

.wz-step--active .wz-label[b-d0sfgmha0a] {
    color: var(--color-orange, #e05500);
}

.wz-step--done .wz-label[b-d0sfgmha0a] {
    color: var(--color-success, #0e7c4a);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 480px) {
    .wz-label[b-d0sfgmha0a] {
        display: none;
    }

    .wz-bubble[b-d0sfgmha0a] {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .wz-connector[b-d0sfgmha0a] {
        margin-bottom: 0;
    }
}
/* /Pages/Onboarding/Steps/Step4CustomerProfile.razor.rz.scp.css */
.customer-profile .form-label[b-iv1jof3zgv] {
    margin-bottom: 0.2rem;
    font-size: var(--fs-sm);
}

.customer-profile .form-control[b-iv1jof3zgv] {
    padding: 0.42rem 0.75rem;
    font-size: var(--fs-base);
}

.customer-profile .cp-check-line[b-iv1jof3zgv] {
    width: 100%;
}

.customer-profile .alert[b-iv1jof3zgv] {
    margin-bottom: 0.5rem !important;
}

.customer-profile.step1-quadrant-shell[b-iv1jof3zgv] {
    direction: rtl;
    background-color: #e2e5ea;
    padding: 1rem 1rem 1.1rem;
    border-radius: 6px;
}

.customer-profile .step1-quadrant-heading[b-iv1jof3zgv] {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.85rem 0;
    padding-right: 0.15rem;
    color: var(--color-navy-mid, #1a2744);
}

.customer-profile .step1-quadrant-grid[b-iv1jof3zgv] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 1rem;
    align-items: start;
}

.customer-profile .step1-panel[b-iv1jof3zgv] {
    background: #fff;
    border: 1px solid #c5cad3;
    border-radius: 4px;
    padding: 0.75rem 0.85rem;
    min-width: 0;
}

.customer-profile .step1-panel--full[b-iv1jof3zgv] {
    grid-column: 1 / -1;
}

.customer-profile .step1-panel--declarations[b-iv1jof3zgv] {
    border-color: var(--bs-primary);
    background: var(--bs-light, #f8f9fa);
}

.customer-profile .step1-panel-caption[b-iv1jof3zgv] {
    font-size: 0.72rem;
    font-weight: 700;
    color: #495057;
    margin-bottom: 0.65rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #e9ecef;
}

.customer-profile .step1-panel-caption--follow[b-iv1jof3zgv] {
    margin-top: 0.85rem;
    margin-bottom: 0.65rem;
}

.customer-profile .cp-inline-error[b-iv1jof3zgv] {
    margin-top: -0.35rem;
    margin-bottom: 0.55rem;
    font-size: 0.72rem;
    line-height: 1.2;
    color: var(--bs-form-invalid-color, #dc3545);
}

.customer-profile .step1-panel--docs-contacts > .step1-panel-caption[b-iv1jof3zgv] {
    margin-bottom: 0.75rem;
}

.customer-profile .step1-panel-caption--sub[b-iv1jof3zgv] {
    font-size: 0.68rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.3rem;
}

.customer-profile .step1-panel--docs-contacts[b-iv1jof3zgv] {
    display: flex;
    flex-direction: column;
}

.customer-profile .step1-docs-contacts-stack[b-iv1jof3zgv] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
    min-width: 0;
    align-items: start;
}

.customer-profile .step1-docs-contacts-block[b-iv1jof3zgv] {
    min-width: 0;
}

.customer-profile .step1-panel--docs-contacts .table[b-iv1jof3zgv] {
    font-size: 0.75rem;
}

.customer-profile .cp-flag-section[b-iv1jof3zgv] {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.customer-profile .cp-flag-row-simple[b-iv1jof3zgv] {
    margin-bottom: 0.15rem;
}

.customer-profile .cp-flag-row-simple .cp-check-line[b-iv1jof3zgv] {
    align-items: center;
}

.customer-profile .cp-flag-bundle[b-iv1jof3zgv] {
    padding: 0.4rem 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    background: #f8f9fa;
}

.customer-profile .cp-flag-inline-row[b-iv1jof3zgv] {
    margin-bottom: 0;
}

.customer-profile .cp-flag-bundle .cp-check-line[b-iv1jof3zgv] {
    align-items: flex-start;
    margin-bottom: 0;
}

.customer-profile .cp-flag-bundle .cp-check-line .form-check-input[b-iv1jof3zgv] {
    margin-top: 0.2rem !important;
}

.customer-profile .cp-flag-check-valign[b-iv1jof3zgv] {
    padding-top: 0.15rem;
}

.customer-profile .cp-flag-fields-col[b-iv1jof3zgv] {
    min-width: 0;
}

@media (min-width: 768px) {
    .customer-profile .cp-flag-split-check[b-iv1jof3zgv] {
        flex: 0 0 auto;
        width: 30%;
        max-width: 36%;
        min-width: 12rem;
    }

    .customer-profile .cp-flag-split-fields[b-iv1jof3zgv] {
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
    }

    .customer-profile .cp-flag-split-check .cp-check-line .cp-check-text[b-iv1jof3zgv] {
        white-space: nowrap;
    }

    .customer-profile .cp-flag-split-check .cp-check-line[b-iv1jof3zgv] {
        align-items: center;
    }

    .customer-profile .cp-flag-split-check .cp-check-line .form-check-input[b-iv1jof3zgv] {
        margin-top: 0 !important;
    }

    .customer-profile .cp-flag-split-check .cp-flag-check-valign[b-iv1jof3zgv] {
        padding-top: 0;
    }
}

@media (max-width: 767.98px) {
    .customer-profile .cp-flag-split-check .cp-check-line .cp-check-text[b-iv1jof3zgv] {
        white-space: normal;
    }
}

@media (max-width: 991.98px) {
    .customer-profile .step1-quadrant-grid[b-iv1jof3zgv] {
        grid-template-columns: 1fr;
    }

    .customer-profile .step1-docs-contacts-stack[b-iv1jof3zgv] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Onboarding/Steps/Step5FinancialDocs.razor.rz.scp.css */
.financial-step.step1-quadrant-shell[b-acpqca7yd7] {
    direction: rtl;
    background-color: #e2e5ea;
    padding: 1rem 1rem 1.1rem;
    border-radius: 6px;
}

.financial-step .step1-quadrant-heading[b-acpqca7yd7] {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.85rem 0;
    padding-right: 0.15rem;
    color: var(--color-navy-mid, #1a2744);
}

.financial-step-intro[b-acpqca7yd7] {
    margin: -0.35rem 0 0.85rem 0;
    padding-right: 0.15rem;
    font-size: 0.8rem;
}

.financial-step-stack[b-acpqca7yd7] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}

.financial-step .step1-panel[b-acpqca7yd7] {
    background: #fff;
    border: 1px solid #c5cad3;
    border-radius: 4px;
    padding: 0.75rem 0.85rem;
    min-width: 0;
}

.financial-step .step1-panel-caption[b-acpqca7yd7] {
    font-size: 0.72rem;
    font-weight: 700;
    color: #495057;
    margin-bottom: 0.65rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #e9ecef;
}

.financial-step .step1-panel .table[b-acpqca7yd7] {
    font-size: 0.75rem;
    table-layout: fixed;
    width: 100%;
}

.financial-step .step1-panel .bank-target-accounts-table th[b-acpqca7yd7],
.financial-step .step1-panel .bank-target-accounts-table td[b-acpqca7yd7] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.financial-step .step1-panel .bank-target-accounts-table tbody tr:last-child td[b-acpqca7yd7],
.financial-step .step1-panel .financial-docs-table tbody tr:last-child td[b-acpqca7yd7] {
    white-space: normal;
    vertical-align: top;
}

.financial-step .step1-panel .financial-docs-table th:nth-child(1)[b-acpqca7yd7],
.financial-step .step1-panel .financial-docs-table td:nth-child(1)[b-acpqca7yd7] { width: 14%; min-width: 5.5rem; }

.financial-step .step1-panel .financial-docs-table th:nth-child(2)[b-acpqca7yd7],
.financial-step .step1-panel .financial-docs-table td:nth-child(2)[b-acpqca7yd7] { width: 12%; min-width: 4rem; }

.financial-step .step1-panel .financial-docs-table th:nth-child(3)[b-acpqca7yd7],
.financial-step .step1-panel .financial-docs-table td:nth-child(3)[b-acpqca7yd7] { width: 22%; min-width: 7rem; }

.financial-step .step1-panel .financial-docs-table th:nth-child(4)[b-acpqca7yd7],
.financial-step .step1-panel .financial-docs-table td:nth-child(4)[b-acpqca7yd7] { width: 32%; min-width: 9rem; }

.financial-step .step1-panel .financial-docs-table th:nth-child(5)[b-acpqca7yd7],
.financial-step .step1-panel .financial-docs-table td:nth-child(5)[b-acpqca7yd7] { width: 10%; min-width: 4rem; }

.financial-step .step1-panel .financial-docs-table tbody tr:not(:last-child) td:nth-child(4)[b-acpqca7yd7] {
    white-space: normal;
}

.financial-step .step1-panel .bank-target-accounts-table th:nth-child(1)[b-acpqca7yd7],
.financial-step .step1-panel .bank-target-accounts-table td:nth-child(1)[b-acpqca7yd7] { width: 22%; min-width: 7rem; }

.financial-step .step1-panel .bank-target-accounts-table th:nth-child(2)[b-acpqca7yd7],
.financial-step .step1-panel .bank-target-accounts-table td:nth-child(2)[b-acpqca7yd7] { width: 16%; min-width: 5.5rem; }

.financial-step .step1-panel .bank-target-accounts-table th:nth-child(3)[b-acpqca7yd7],
.financial-step .step1-panel .bank-target-accounts-table td:nth-child(3)[b-acpqca7yd7] { width: 16%; min-width: 5.5rem; }

.financial-step .step1-panel .bank-target-accounts-table th:nth-child(4)[b-acpqca7yd7],
.financial-step .step1-panel .bank-target-accounts-table td:nth-child(4)[b-acpqca7yd7] { width: 12%; min-width: 4.5rem; }

.financial-step .step1-panel .bank-target-accounts-table th:nth-child(5)[b-acpqca7yd7],
.financial-step .step1-panel .bank-target-accounts-table td:nth-child(5)[b-acpqca7yd7] { width: 14%; min-width: 4rem; }

.financial-step .step1-panel .bank-target-accounts-table th:nth-child(6)[b-acpqca7yd7],
.financial-step .step1-panel .bank-target-accounts-table td:nth-child(6)[b-acpqca7yd7] { width: 12%; min-width: 4.5rem; }

.financial-step .bank-target-check[b-acpqca7yd7] {
    display: flex;
    direction: ltr;
    flex-direction: row-reverse;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0;
}

.financial-step .bank-target-check .form-check-input[b-acpqca7yd7] {
    margin: 0;
}

.financial-step .bank-target-check .form-check-label[b-acpqca7yd7] {
    margin: 0;
    padding-right: 0;
    font-size: 0.72rem;
}

.financial-step .step1-panel .form-label[b-acpqca7yd7] {
    margin-bottom: 0.2rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #495057;
}

.financial-step-upload[b-acpqca7yd7] {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e9ecef;
}

.financial-step-check[b-acpqca7yd7] {
    padding-inline-start: 0.5rem;
}

.financial-step .step1-quadrant-actions[b-acpqca7yd7] {
    margin-top: 1rem;
    padding-top: 0.75rem;
}
/* /Pages/Onboarding/Steps/Step5Pricing.razor.rz.scp.css */
.pricing-step[b-lpvtzwh2nc] {
    direction: rtl;
}

.pricing-step .pricing-panel[b-lpvtzwh2nc] {
    background: #fff;
    border: 1px solid #c5cad3;
    border-radius: 4px;
    padding: 0.75rem 0.85rem;
    margin-bottom: 1rem;
}

.pricing-step .pricing-panel-caption[b-lpvtzwh2nc] {
    font-size: 0.72rem;
    font-weight: 700;
    color: #495057;
    margin-bottom: 0.65rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pricing-step .fee-row[b-lpvtzwh2nc] {
    background: var(--color-gray-50, #f8f9fb);
    border: 1px solid var(--color-gray-200, #e2e6ed);
    border-radius: 4px;
    padding: 0.65rem 0.75rem;
    margin-bottom: 0.6rem;
    position: relative;
}

.pricing-step .fee-row:last-child[b-lpvtzwh2nc] {
    margin-bottom: 0;
}

.pricing-step .fee-row-remove[b-lpvtzwh2nc] {
    position: absolute;
    top: 0.4rem;
    left: 0.5rem;
    opacity: 0.5;
    transition: opacity 0.15s;
}

.pricing-step .fee-row-remove:hover[b-lpvtzwh2nc] {
    opacity: 1;
}

.pricing-step .empty-fees[b-lpvtzwh2nc] {
    color: var(--color-gray-400, #9aa5b4);
    font-size: 0.82rem;
    padding: 0.5rem 0;
}
/* /Pages/Operations/AccountingJournalList.razor.rz.scp.css */
.accounting-journal-page[b-h4g637x6t7] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - var(--header-h, 56px) - 4.75rem);
    min-height: 0;
    overflow: hidden;
}

.accounting-journal-header[b-h4g637x6t7] {
    flex: 0 0 auto;
    margin-bottom: 1rem;
}

.accounting-journal-table[b-h4g637x6t7] {
    min-width: max-content;
}

.accounting-journal-row[b-h4g637x6t7] {
    transition: background 0.12s;
}
@media (max-width: 768px) {
    .accounting-journal-page[b-h4g637x6t7] {
        height: calc(100vh - var(--header-h, 48px) - 2.25rem);
    }
}
/* /Pages/Operations/ActualPaymentList.razor.rz.scp.css */
.actual-payments-page[b-5xhv8eqsf4] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - var(--header-h, 56px) - 4.75rem);
    min-height: 0;
    overflow: hidden;
}

.actual-payments-header[b-5xhv8eqsf4] {
    flex: 0 0 auto;
    margin-bottom: 1rem;
}

.actual-payments-table[b-5xhv8eqsf4] {
    min-width: max-content;
}

.actual-payments-row[b-5xhv8eqsf4] {
    transition: background 0.12s;
}
.form-dialog-backdrop[b-5xhv8eqsf4] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.form-dialog[b-5xhv8eqsf4] {
    direction: rtl;
    background: #fff;
    width: min(420px, 100%);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.form-dialog-lg[b-5xhv8eqsf4] {
    width: min(760px, 100%);
}

.form-dialog-header[b-5xhv8eqsf4] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.95rem;
}

.form-dialog-body[b-5xhv8eqsf4] {
    padding: 0.85rem;
    font-size: 0.875rem;
    line-height: 1.45;
    max-height: min(70vh, 640px);
    overflow: auto;
}

.form-dialog-footer[b-5xhv8eqsf4] {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .actual-payments-page[b-5xhv8eqsf4] {
        height: calc(100vh - var(--header-h, 48px) - 2.25rem);
    }
}
/* /Pages/Operations/AlertList.razor.rz.scp.css */
.alerts-page[b-zlogtpyr0z] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - var(--header-h, 56px) - 4.75rem);
    min-height: 0;
    overflow: hidden;
}

.alerts-page-header[b-zlogtpyr0z] {
    flex: 0 0 auto;
    margin-bottom: 1rem;
}

.alerts-table-wrap[b-zlogtpyr0z] {
    width: 100%;
}

[b-zlogtpyr0z] .alerts-table {
    width: 100%;
    min-width: 72rem;
    table-layout: fixed;
}

[b-zlogtpyr0z] .alerts-table th,
[b-zlogtpyr0z] .alerts-table td {
    vertical-align: middle;
}

[b-zlogtpyr0z] .alerts-table th:nth-child(1),
[b-zlogtpyr0z] .alerts-table td:nth-child(1) {
    width: 11%;
}

[b-zlogtpyr0z] .alerts-table th:nth-child(2),
[b-zlogtpyr0z] .alerts-table td:nth-child(2) {
    width: 8.5rem;
}

[b-zlogtpyr0z] .alerts-table th:nth-child(3),
[b-zlogtpyr0z] .alerts-table td:nth-child(3) {
    width: 4.5rem;
}

[b-zlogtpyr0z] .alerts-table th:nth-child(4),
[b-zlogtpyr0z] .alerts-table td:nth-child(4) {
    width: 4.5rem;
}

[b-zlogtpyr0z] .alerts-table th:nth-child(5),
[b-zlogtpyr0z] .alerts-table td:nth-child(5) {
    width: 18%;
}

[b-zlogtpyr0z] .alerts-table th:nth-child(6),
[b-zlogtpyr0z] .alerts-table td:nth-child(6) {
    width: 8.5rem;
}

[b-zlogtpyr0z] .alerts-table th:nth-child(7),
[b-zlogtpyr0z] .alerts-table td:nth-child(7) {
    width: 6.5rem;
}

[b-zlogtpyr0z] .alerts-table th:nth-child(8),
[b-zlogtpyr0z] .alerts-table td:nth-child(8) {
    width: 4.5rem;
}

[b-zlogtpyr0z] .alerts-table th:nth-child(9),
[b-zlogtpyr0z] .alerts-table td:nth-child(9) {
    width: 8rem;
}

[b-zlogtpyr0z] .alerts-table th:nth-child(10),
[b-zlogtpyr0z] .alerts-table td:nth-child(10) {
    width: 11rem;
}

[b-zlogtpyr0z] .alerts-table .alerts-col-type,
[b-zlogtpyr0z] .alerts-table .alerts-col-severity,
[b-zlogtpyr0z] .alerts-table .alerts-col-status,
[b-zlogtpyr0z] .alerts-table .alerts-col-date {
    white-space: nowrap;
}

[b-zlogtpyr0z] .alerts-table .alerts-col-description {
    overflow-wrap: break-word;
    line-height: 1.4;
}

[b-zlogtpyr0z] .alerts-table .alerts-col-customer {
    overflow-wrap: break-word;
}

.alerts-row[b-zlogtpyr0z] {
    transition: background 0.12s;
}
.form-dialog-backdrop[b-zlogtpyr0z] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.form-dialog[b-zlogtpyr0z] {
    direction: rtl;
    background: #fff;
    width: min(420px, 100%);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.form-dialog-lg[b-zlogtpyr0z] {
    width: min(960px, 100%);
}

.form-dialog-header[b-zlogtpyr0z] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.95rem;
}

.form-dialog-body[b-zlogtpyr0z] {
    padding: 0.85rem;
    font-size: 0.875rem;
    line-height: 1.45;
    max-height: min(70vh, 640px);
    overflow: auto;
}

.form-dialog-footer[b-zlogtpyr0z] {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .alerts-page[b-zlogtpyr0z] {
        height: calc(100vh - var(--header-h, 48px) - 2.25rem);
    }
}
/* /Pages/Operations/ClearingSettlementList.razor.rz.scp.css */
.clearing-settlements-page[b-s6iql6iq4w] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - var(--header-h, 56px) - 4.75rem);
    min-height: 0;
    overflow: hidden;
}

.clearing-settlements-header[b-s6iql6iq4w],
.clearing-settlements-filter-card[b-s6iql6iq4w] {
    flex: 0 0 auto;
}

.clearing-settlements-header[b-s6iql6iq4w] {
    margin-bottom: 1rem;
}

.clearing-settlements-table[b-s6iql6iq4w] {
    min-width: max-content;
}

.clearing-settlements-row[b-s6iql6iq4w] {
    transition: background 0.12s;
}
@media (max-width: 768px) {
    .clearing-settlements-page[b-s6iql6iq4w] {
        height: calc(100vh - var(--header-h, 48px) - 2.25rem);
    }
}
/* /Pages/Operations/CustomerTerminalList.razor.rz.scp.css */
.customer-terminals-page[b-34woh1jidp] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - var(--header-h, 56px) - 4.75rem);
    min-height: 0;
    overflow: hidden;
}

.customer-terminals-header[b-34woh1jidp],
.customer-terminals-filter-card[b-34woh1jidp],
.customer-terminals-edit-form[b-34woh1jidp] {
    flex: 0 0 auto;
}

.customer-terminals-header[b-34woh1jidp] {
    margin-bottom: 1rem;
}

.customer-terminals-table[b-34woh1jidp] {
    min-width: max-content;
}

.customer-terminals-row[b-34woh1jidp] {
    transition: background 0.12s;
}
@media (max-width: 768px) {
    .customer-terminals-page[b-34woh1jidp] {
        height: calc(100vh - var(--header-h, 48px) - 2.25rem);
    }
}
/* /Pages/Operations/FileIngestionList.razor.rz.scp.css */
.file-ingestion-page[b-jgcdakr6nf] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - var(--header-h, 56px) - 4.75rem);
    min-height: 0;
    overflow: hidden;
}

.file-ingestion-header[b-jgcdakr6nf] {
    flex: 0 0 auto;
    margin-bottom: 1rem;
}

.file-ingestion-table[b-jgcdakr6nf] {
    min-width: max-content;
}

.file-ingestion-row[b-jgcdakr6nf] {
    transition: background 0.12s;
}
@media (max-width: 768px) {
    .file-ingestion-page[b-jgcdakr6nf] {
        height: calc(100vh - var(--header-h, 48px) - 2.25rem);
    }
}
/* /Pages/Operations/FileIngestionRecords.razor.rz.scp.css */
.file-ingestion-records-page[b-i1eiv0wgzk] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - var(--header-h, 56px) - 4.75rem);
    min-height: 0;
    overflow: hidden;
}

.file-ingestion-records-header[b-i1eiv0wgzk] {
    flex: 0 0 auto;
    margin-bottom: 1rem;
}

.file-ingestion-records-table-wrap[b-i1eiv0wgzk] {
    width: 100%;
}

[b-i1eiv0wgzk] .file-ingestion-records-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
}

[b-i1eiv0wgzk] .file-ingestion-records-table th:nth-child(1),
[b-i1eiv0wgzk] .file-ingestion-records-table td:nth-child(1) {
    width: 4.5rem;
}

[b-i1eiv0wgzk] .file-ingestion-records-table th:nth-child(2),
[b-i1eiv0wgzk] .file-ingestion-records-table td:nth-child(2) {
    width: 7rem;
}

[b-i1eiv0wgzk] .file-ingestion-records-table th:nth-child(3),
[b-i1eiv0wgzk] .file-ingestion-records-table td:nth-child(3) {
    width: 22%;
}

[b-i1eiv0wgzk] .file-ingestion-records-table th:nth-child(4),
[b-i1eiv0wgzk] .file-ingestion-records-table td:nth-child(4) {
    width: 9rem;
}

[b-i1eiv0wgzk] .file-ingestion-records-table th:nth-child(5),
[b-i1eiv0wgzk] .file-ingestion-records-table td:nth-child(5) {
    width: auto;
}

.file-ingestion-records-cell-truncate[b-i1eiv0wgzk] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 0;
}

.file-ingestion-records-hash[b-i1eiv0wgzk] {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.85em;
}

.file-ingestion-records-row[b-i1eiv0wgzk] {
    transition: background 0.12s;
}
@media (max-width: 768px) {
    .file-ingestion-records-page[b-i1eiv0wgzk] {
        height: calc(100vh - var(--header-h, 48px) - 2.25rem);
    }
}
/* /Pages/Operations/PaymentInstructionList.razor.rz.scp.css */
.payment-instructions-page[b-0ezeqiyvkn] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - var(--header-h, 56px) - 4.75rem);
    min-height: 0;
    overflow: hidden;
}

.payment-instructions-header[b-0ezeqiyvkn] {
    flex: 0 0 auto;
    margin-bottom: 1rem;
}

.payment-instructions-table[b-0ezeqiyvkn] {
    min-width: max-content;
}

.payment-instructions-row[b-0ezeqiyvkn] {
    transition: background 0.12s;
}
.form-dialog-backdrop[b-0ezeqiyvkn] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.form-dialog[b-0ezeqiyvkn] {
    direction: rtl;
    background: #fff;
    width: min(420px, 100%);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.form-dialog-lg[b-0ezeqiyvkn] {
    width: min(900px, 100%);
}

.form-dialog-form[b-0ezeqiyvkn] {
    margin: 0;
}

.form-dialog-header[b-0ezeqiyvkn] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.95rem;
}

.form-dialog-body[b-0ezeqiyvkn] {
    padding: 0.85rem;
    font-size: 0.875rem;
    line-height: 1.45;
    max-height: min(70vh, 640px);
    overflow: auto;
}

.form-dialog-footer[b-0ezeqiyvkn] {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .payment-instructions-page[b-0ezeqiyvkn] {
        height: calc(100vh - var(--header-h, 48px) - 2.25rem);
    }
}
/* /Pages/Operations/ReconciliationIssueList.razor.rz.scp.css */
.reconciliation-issues-page[b-91bxqmh0is] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - var(--header-h, 56px) - 4.75rem);
    min-height: 0;
    overflow: hidden;
}

.reconciliation-issues-header[b-91bxqmh0is],
.reconciliation-issues-filter-card[b-91bxqmh0is] {
    flex: 0 0 auto;
}

.reconciliation-issues-header[b-91bxqmh0is] {
    margin-bottom: 1rem;
}

.reconciliation-issues-table[b-91bxqmh0is] {
    min-width: max-content;
}

.reconciliation-issues-row[b-91bxqmh0is] {
    transition: background 0.12s;
}
@media (max-width: 768px) {
    .reconciliation-issues-page[b-91bxqmh0is] {
        height: calc(100vh - var(--header-h, 48px) - 2.25rem);
    }
}
/* /Pages/Operations/TransactionList.razor.rz.scp.css */
.transactions-page[b-q7ra3bxusk] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - var(--header-h, 56px) - 4.75rem);
    min-height: 0;
    overflow: hidden;
}

.transactions-header[b-q7ra3bxusk],
.transactions-filter-card[b-q7ra3bxusk] {
    flex: 0 0 auto;
}

.transactions-header[b-q7ra3bxusk] {
    margin-bottom: 1rem;
}

.transactions-table[b-q7ra3bxusk] {
    min-width: max-content;
}

.transactions-row[b-q7ra3bxusk] {
    transition: background 0.12s;
}

.form-dialog-backdrop[b-q7ra3bxusk] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.form-dialog[b-q7ra3bxusk] {
    direction: rtl;
    background: #fff;
    width: min(420px, 100%);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.form-dialog-lg[b-q7ra3bxusk] {
    width: min(760px, 100%);
}

.periodic-report-dialog[b-q7ra3bxusk] {
    width: min(920px, 100%);
}

.periodic-report-dialog .form-dialog-body[b-q7ra3bxusk] {
    max-height: min(78vh, 720px);
    padding: 1rem 1.1rem;
}

.periodic-report-summary[b-q7ra3bxusk] {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 0.15rem;
}

.form-dialog-header[b-q7ra3bxusk] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.95rem;
}

.form-dialog-body[b-q7ra3bxusk] {
    padding: 0.85rem;
    font-size: 0.875rem;
    line-height: 1.45;
    max-height: min(70vh, 640px);
    overflow: auto;
}

.form-dialog-footer[b-q7ra3bxusk] {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .transactions-page[b-q7ra3bxusk] {
        height: calc(100vh - var(--header-h, 48px) - 2.25rem);
    }
}
