/* /Pages/Components/ConfirmDeleteDialog.razor.rz.scp.css */
.confirm-delete-backdrop[b-s78e2fi8sd] {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.confirm-delete-backdrop.is-open[b-s78e2fi8sd] {
    opacity: 1;
}

.confirm-delete-modal[b-s78e2fi8sd] {
    width: min(460px, 100%);
    overflow: hidden;
    padding: 28px;
    color: #0f172a;
    text-align: right;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 26px;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.22);
    font-family: Vazirmatn, Tahoma, Arial, sans-serif;
    transform: translateY(18px) scale(0.96);
    transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.confirm-delete-backdrop.is-open .confirm-delete-modal[b-s78e2fi8sd] {
    transform: translateY(0) scale(1);
}

.confirm-delete-icon[b-s78e2fi8sd] {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    background: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 999px;
}

.confirm-delete-icon svg[b-s78e2fi8sd] {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.confirm-delete-header[b-s78e2fi8sd] {
    margin-top: 18px;
}

.confirm-delete-header h2[b-s78e2fi8sd] {
    margin: 0;
    color: #0f172a;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.55;
    letter-spacing: 0;
}

.confirm-delete-header p[b-s78e2fi8sd] {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
}

.confirm-delete-body[b-s78e2fi8sd] {
    margin-top: 22px;
}

.confirm-delete-body p[b-s78e2fi8sd] {
    margin: 0;
    color: #334155;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.9;
}

.confirm-delete-record[b-s78e2fi8sd] {
    margin-top: 14px;
    padding: 12px 14px;
    overflow: hidden;
    color: #0f172a;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
}

.confirm-delete-actions[b-s78e2fi8sd] {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 28px;
}

.confirm-delete-button[b-s78e2fi8sd] {
    min-width: 0;
    height: 46px;
    flex: 1 1 0;
    padding: 0 18px;
    border-radius: 14px;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition:
        color 160ms cubic-bezier(0.16, 1, 0.3, 1),
        background-color 160ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 160ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 160ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 160ms cubic-bezier(0.16, 1, 0.3, 1);
}

.confirm-delete-button--danger[b-s78e2fi8sd] {
    order: 1;
    color: #fff;
    background: #ef4444;
    border: 1px solid #ef4444;
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.25);
}

.confirm-delete-button--cancel[b-s78e2fi8sd] {
    order: 2;
    color: #334155;
    background: #fff;
    border: 1px solid #cbd5e1;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.confirm-delete-button:hover[b-s78e2fi8sd] {
    transform: translateY(-1px);
}

.confirm-delete-button--danger:hover[b-s78e2fi8sd] {
    background: #dc2626;
    border-color: #dc2626;
    box-shadow: 0 14px 28px rgba(220, 38, 38, 0.28);
}

.confirm-delete-button--cancel:hover[b-s78e2fi8sd] {
    color: #0f172a;
    background: #f8fafc;
    border-color: #94a3b8;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.confirm-delete-button:active[b-s78e2fi8sd] {
    transform: translateY(0) scale(0.99);
}

.confirm-delete-button:focus-visible[b-s78e2fi8sd] {
    outline: 3px solid rgba(239, 68, 68, 0.2);
    outline-offset: 3px;
}

.confirm-delete-button--cancel:focus-visible[b-s78e2fi8sd] {
    outline-color: rgba(51, 65, 85, 0.18);
}

@media (max-width: 575.98px) {
    .confirm-delete-backdrop[b-s78e2fi8sd] {
        padding: 16px;
    }

    .confirm-delete-modal[b-s78e2fi8sd] {
        width: min(100%, 440px);
        padding: 24px;
        border-radius: 24px;
    }

    .confirm-delete-actions[b-s78e2fi8sd] {
        flex-direction: column;
    }

    .confirm-delete-button--danger[b-s78e2fi8sd],
    .confirm-delete-button--cancel[b-s78e2fi8sd] {
        order: initial;
    }
}

@media (prefers-reduced-motion: reduce) {
    .confirm-delete-backdrop[b-s78e2fi8sd],
    .confirm-delete-modal[b-s78e2fi8sd],
    .confirm-delete-button[b-s78e2fi8sd] {
        transition: none;
    }
}
/* /Pages/Components/EntityDocumentManager.razor.rz.scp.css */
.xentra-documents-shell[b-oa1hveqpcd] {
    direction: rtl;
    width: min(100%, 1120px);
    margin-inline: auto;
    padding: 24px;
    border: 1px solid rgba(203, 213, 225, 0.72);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.xentra-documents-header[b-oa1hveqpcd] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-block-end: 20px;
    margin-block-end: 20px;
    border-block-end: 1px solid rgba(226, 232, 240, 0.9);
}

.xentra-documents-heading[b-oa1hveqpcd] {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.xentra-documents-icon[b-oa1hveqpcd],
.xentra-document-file-icon[b-oa1hveqpcd] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 16px;
    background: #eff6ff;
    color: #2563eb;
}

.xentra-documents-icon[b-oa1hveqpcd] {
    width: 48px;
    height: 48px;
    font-size: 22px;
}

.xentra-documents-heading h3[b-oa1hveqpcd] {
    margin: 0;
    color: #0f172a;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.5;
}

.xentra-documents-heading p[b-oa1hveqpcd] {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

.xentra-documents-count[b-oa1hveqpcd] {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 800;
}

.xentra-documents-grid[b-oa1hveqpcd] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 16px;
}

.xentra-document-card[b-oa1hveqpcd] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.xentra-document-card:hover[b-oa1hveqpcd] {
    border-color: rgba(148, 163, 184, 0.75);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
    transform: translateY(-1px);
}

.xentra-document-card-header[b-oa1hveqpcd],
.xentra-existing-document[b-oa1hveqpcd],
.xentra-selected-file[b-oa1hveqpcd],
.xentra-document-progress[b-oa1hveqpcd] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.xentra-document-title-group[b-oa1hveqpcd] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.xentra-document-file-icon[b-oa1hveqpcd] {
    width: 40px;
    height: 40px;
    font-size: 18px;
}

.xentra-document-title-group h4[b-oa1hveqpcd] {
    margin: 0;
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.6;
}

.xentra-document-title-group p[b-oa1hveqpcd] {
    margin: 2px 0 0;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 600;
}

.xentra-document-status[b-oa1hveqpcd] {
    flex: 0 0 auto;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.xentra-document-status.is-success[b-oa1hveqpcd] {
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
    color: #15803d;
}

.xentra-document-status.is-warning[b-oa1hveqpcd] {
    border: 1px solid #fde68a;
    background: #fffbeb;
    color: #92400e;
}

.xentra-document-status.is-ready[b-oa1hveqpcd] {
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    color: #1d4ed8;
}

.xentra-document-status.is-muted[b-oa1hveqpcd] {
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
}

.xentra-existing-document[b-oa1hveqpcd] {
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #f8fafc;
}

.xentra-existing-document span[b-oa1hveqpcd] {
    display: block;
    margin-block-end: 3px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.xentra-existing-document strong[b-oa1hveqpcd] {
    display: block;
    max-width: 260px;
    overflow: hidden;
    color: #0f172a;
    font-size: 13px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.xentra-document-preview[b-oa1hveqpcd] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    background: #eff6ff;
    color: #2563eb;
    transition: background-color 150ms ease, border-color 150ms ease, transform 100ms ease;
}

.xentra-document-preview:hover[b-oa1hveqpcd] {
    border-color: #93c5fd;
    background: #dbeafe;
}

.xentra-document-preview:active[b-oa1hveqpcd] {
    transform: scale(0.98);
}

.xentra-document-upload[b-oa1hveqpcd] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 52px;
    padding: 8px;
    border: 1px dashed #cbd5e1;
    border-radius: 14px;
    background: #f8fafc;
}

.xentra-document-upload > span[b-oa1hveqpcd] {
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.xentra-document-input[b-oa1hveqpcd],
[b-oa1hveqpcd] .xentra-document-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.xentra-document-picker[b-oa1hveqpcd] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 36px;
    padding-inline: 14px;
    margin: 0;
    border: 1px solid #dbeafe;
    border-radius: 11px;
    background: #ffffff;
    color: #1e293b;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: background-color 150ms ease, border-color 150ms ease, transform 100ms ease;
}

.xentra-document-picker:hover[b-oa1hveqpcd] {
    border-color: #bfdbfe;
    background: #eff6ff;
}

.xentra-document-picker:active[b-oa1hveqpcd] {
    transform: scale(0.98);
}

.xentra-document-upload.is-disabled[b-oa1hveqpcd] {
    background: #f8fafc;
}

.xentra-document-picker.is-disabled[b-oa1hveqpcd] {
    cursor: not-allowed;
    opacity: 0.56;
}

/* Kept for browsers that ignore the custom label interaction. */
.xentra-document-input-fallback[b-oa1hveqpcd] {
    width: 100%;
    min-height: 44px;
    padding: 8px;
    border: 1px dashed #cbd5e1;
    border-radius: 14px;
    background: #f8fafc;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
}

.xentra-document-input-fallback[b-oa1hveqpcd]::file-selector-button {
    min-height: 34px;
    margin-inline-end: 10px;
    padding: 0 14px;
    border: 0;
    border-radius: 10px;
    background: #ffffff;
    color: #1e293b;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
    font-weight: 800;
    cursor: pointer;
}

[b-oa1hveqpcd] .xentra-document-input:focus-visible + .xentra-document-picker,
.xentra-document-input:focus-visible + .xentra-document-picker[b-oa1hveqpcd],
.xentra-document-preview:focus-visible[b-oa1hveqpcd],
.xentra-document-prepare:focus-visible[b-oa1hveqpcd],
.xentra-documents-finalize:focus-visible[b-oa1hveqpcd] {
    outline: 3px solid rgba(37, 99, 235, 0.22);
    outline-offset: 2px;
}

.xentra-selected-file[b-oa1hveqpcd] {
    justify-content: flex-start;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
}

.xentra-selected-file span[b-oa1hveqpcd] {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.xentra-selected-file strong[b-oa1hveqpcd] {
    margin-inline-start: auto;
    color: #0f172a;
    font-weight: 800;
}

.xentra-document-progress[b-oa1hveqpcd] {
    align-items: center;
}

.xentra-document-progress-track[b-oa1hveqpcd] {
    position: relative;
    flex: 1 1 auto;
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #e2e8f0;
}

.xentra-document-progress-bar[b-oa1hveqpcd] {
    height: 100%;
    border-radius: inherit;
    background: #2563eb;
    transition: width 180ms ease;
}

.xentra-document-progress span[b-oa1hveqpcd] {
    min-width: 42px;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    text-align: end;
}

.xentra-document-prepare[b-oa1hveqpcd],
.xentra-documents-finalize[b-oa1hveqpcd] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    border: 0;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 800;
    transition: background-color 150ms ease, box-shadow 150ms ease, transform 100ms ease, opacity 150ms ease;
}

.xentra-document-prepare[b-oa1hveqpcd] {
    width: 100%;
    background: #eff6ff;
    color: #2563eb;
}

.xentra-document-prepare:not(:disabled):hover[b-oa1hveqpcd] {
    background: #dbeafe;
}

.xentra-documents-actions[b-oa1hveqpcd] {
    display: flex;
    justify-content: center;
    margin-block-start: 22px;
}

.xentra-documents-finalize[b-oa1hveqpcd] {
    min-width: 180px;
    padding-inline: 22px;
    background: #16a34a;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(22, 163, 74, 0.22);
}

.xentra-documents-finalize:not(:disabled):hover[b-oa1hveqpcd] {
    background: #15803d;
    box-shadow: 0 16px 30px rgba(22, 163, 74, 0.28);
}

.xentra-document-prepare:not(:disabled):active[b-oa1hveqpcd],
.xentra-documents-finalize:not(:disabled):active[b-oa1hveqpcd] {
    transform: scale(0.98);
}

.xentra-document-prepare:disabled[b-oa1hveqpcd],
.xentra-documents-finalize:disabled[b-oa1hveqpcd],
.xentra-document-input:disabled[b-oa1hveqpcd] {
    cursor: not-allowed;
    opacity: 0.56;
}

.xentra-documents-state[b-oa1hveqpcd],
.xentra-documents-empty[b-oa1hveqpcd] {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #334155;
    font-weight: 800;
}

.xentra-documents-empty[b-oa1hveqpcd] {
    border-color: #fde68a;
    background: #fffbeb;
    color: #92400e;
}

.xentra-documents-empty i[b-oa1hveqpcd] {
    font-size: 24px;
}

.xentra-documents-empty-title[b-oa1hveqpcd] {
    color: #78350f;
    font-size: 14px;
    font-weight: 900;
}

.xentra-documents-empty-text[b-oa1hveqpcd] {
    margin-block-start: 4px;
    color: #92400e;
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .xentra-documents-shell[b-oa1hveqpcd] {
        padding: 16px;
        border-radius: 20px;
    }

    .xentra-documents-header[b-oa1hveqpcd],
    .xentra-document-card-header[b-oa1hveqpcd] {
        align-items: flex-start;
        flex-direction: column;
    }

    .xentra-documents-grid[b-oa1hveqpcd] {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .xentra-document-card[b-oa1hveqpcd],
    .xentra-document-preview[b-oa1hveqpcd],
    .xentra-document-prepare[b-oa1hveqpcd],
    .xentra-documents-finalize[b-oa1hveqpcd],
    .xentra-document-progress-bar[b-oa1hveqpcd] {
        transition-duration: 0.01ms !important;
    }
}
/* /Pages/Components/FlowFinalOperationStatus.razor.rz.scp.css */
.flow-final-overlay[b-vwq4u9fxj7],
.flow-final-inline[b-vwq4u9fxj7] {
    direction: rtl;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-final-overlay[b-vwq4u9fxj7] {
    position: fixed;
    inset: 0;
    z-index: 1040;
    padding: 24px;
    background: rgba(248, 250, 252, 0.88);
    backdrop-filter: blur(8px);
}

.flow-final-inline[b-vwq4u9fxj7] {
    margin-block: 32px;
}

.flow-final-operation-status[b-vwq4u9fxj7] {
    width: min(760px, 95vw);
    padding: 28px;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

.flow-final-operation-header[b-vwq4u9fxj7] {
    text-align: center;
    margin-block-end: 24px;
}

.flow-final-operation-icon[b-vwq4u9fxj7] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-block-end: 16px;
    border-radius: 999px;
    font-size: 30px;
}

.flow-final-operation-icon.is-running[b-vwq4u9fxj7] {
    background: #eff6ff;
    color: #2563eb;
}

.flow-final-operation-icon.is-success[b-vwq4u9fxj7] {
    background: #dcfce7;
    color: #16a34a;
}

.flow-final-operation-icon.is-danger[b-vwq4u9fxj7] {
    background: #fee2e2;
    color: #dc2626;
}

.flow-final-operation-header h3[b-vwq4u9fxj7] {
    margin: 0;
    color: #0f172a;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.5;
}

.flow-final-operation-header p[b-vwq4u9fxj7] {
    margin: 8px 0 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.flow-final-steps[b-vwq4u9fxj7] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.flow-final-step[b-vwq4u9fxj7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff;
}

.flow-final-step-main[b-vwq4u9fxj7] {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.flow-final-step-icon[b-vwq4u9fxj7] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #ffffff;
    color: #64748b;
    font-weight: 900;
}

.flow-final-step-icon.is-running[b-vwq4u9fxj7] {
    border-color: #bfdbfe;
    background: #eff6ff;
    color: #2563eb;
}

.flow-final-step-icon.is-success[b-vwq4u9fxj7] {
    border-color: #bbf7d0;
    background: #f0fdf4;
    color: #16a34a;
}

.flow-final-step-icon.is-danger[b-vwq4u9fxj7] {
    border-color: #fecaca;
    background: #fef2f2;
    color: #dc2626;
}

.flow-final-step-copy[b-vwq4u9fxj7] {
    min-width: 0;
}

.flow-final-step-copy h4[b-vwq4u9fxj7] {
    margin: 0;
    color: #0f172a;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.5;
}

.flow-final-step-copy p[b-vwq4u9fxj7] {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 12px;
    font-weight: 500;
}

.flow-final-step-error[b-vwq4u9fxj7] {
    margin-block-start: 6px;
    color: #dc2626;
    font-size: 12px;
    font-weight: 700;
}

.flow-final-badge[b-vwq4u9fxj7] {
    flex: 0 0 auto;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

.flow-final-badge.is-pending[b-vwq4u9fxj7] {
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
}

.flow-final-badge.is-running[b-vwq4u9fxj7] {
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    color: #2563eb;
}

.flow-final-badge.is-success[b-vwq4u9fxj7] {
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
    color: #15803d;
}

.flow-final-badge.is-danger[b-vwq4u9fxj7] {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #dc2626;
}

.flow-final-tracking[b-vwq4u9fxj7] {
    margin-block-start: 18px;
    padding: 16px;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    background: #f8fafc;
    text-align: center;
}

.flow-final-tracking span[b-vwq4u9fxj7] {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.flow-final-tracking strong[b-vwq4u9fxj7] {
    display: block;
    margin-block-start: 6px;
    color: #16a34a;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
}

.flow-final-actions[b-vwq4u9fxj7] {
    display: flex;
    justify-content: center;
    margin-block-start: 22px;
}

.flow-final-close[b-vwq4u9fxj7] {
    min-width: 92px;
    min-height: 44px;
    border: 0;
    border-radius: 14px;
    background: #4f6df5;
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(79, 109, 245, 0.22);
    transition: background-color 150ms ease, box-shadow 150ms ease, transform 100ms ease;
}

.flow-final-close:hover[b-vwq4u9fxj7] {
    background: #3f5be0;
    box-shadow: 0 16px 30px rgba(79, 109, 245, 0.28);
}

.flow-final-close:active[b-vwq4u9fxj7] {
    transform: scale(0.98);
}

.flow-final-close:focus-visible[b-vwq4u9fxj7] {
    outline: 3px solid rgba(79, 109, 245, 0.24);
    outline-offset: 2px;
}

@media (max-width: 640px) {
    .flow-final-operation-status[b-vwq4u9fxj7] {
        padding: 20px;
        border-radius: 20px;
    }

    .flow-final-step[b-vwq4u9fxj7] {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* /Pages/Components/StepProgressBar.razor.rz.scp.css */
.flow-stepper[b-bulfpyjghn] {
    width: min(100%, 1120px);
    margin-inline: auto;
    padding: 18px 22px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.07);
}

.flow-stepper__list[b-bulfpyjghn] {
    display: grid;
    grid-template-columns: repeat(var(--flow-step-count, 3), minmax(0, 1fr));
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.flow-stepper__item[b-bulfpyjghn] {
    position: relative;
    min-width: 0;
}

.flow-stepper__button[b-bulfpyjghn] {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    min-height: 58px;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border: 0;
    border-radius: 14px;
    color: #64748b;
    background: transparent;
    text-align: right;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.flow-stepper__button:disabled[b-bulfpyjghn] {
    opacity: 1;
}

.is-completed .flow-stepper__button[b-bulfpyjghn] {
    cursor: pointer;
}

.is-completed .flow-stepper__button:hover[b-bulfpyjghn] {
    color: #1d4ed8;
    background: #f8fafc;
    transform: translateY(-1px);
}

.is-completed .flow-stepper__button:focus-visible[b-bulfpyjghn] {
    outline: 3px solid rgba(59, 130, 246, 0.2);
    outline-offset: 2px;
}

.flow-stepper__marker[b-bulfpyjghn] {
    display: inline-flex;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    color: #64748b;
    background: #f8fafc;
    font-size: 14px;
    font-weight: 800;
    transition: inherit;
}

.flow-stepper__copy[b-bulfpyjghn] {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.flow-stepper__copy strong[b-bulfpyjghn] {
    overflow: hidden;
    color: #334155;
    font-size: 14px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.flow-stepper__copy small[b-bulfpyjghn] {
    overflow: hidden;
    color: #94a3b8;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.is-current .flow-stepper__button[b-bulfpyjghn] {
    background: #eff6ff;
}

.is-current .flow-stepper__marker[b-bulfpyjghn] {
    border-color: #3b82f6;
    color: #fff;
    background: #2563eb;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

.is-current .flow-stepper__copy strong[b-bulfpyjghn] {
    color: #0f172a;
}

.is-current .flow-stepper__copy small[b-bulfpyjghn] {
    color: #2563eb;
}

.is-completed .flow-stepper__marker[b-bulfpyjghn] {
    border-color: #86efac;
    color: #15803d;
    background: #f0fdf4;
}

.flow-stepper__connector[b-bulfpyjghn] {
    position: absolute;
    z-index: 1;
    top: 28px;
    left: calc(-50% - 14px);
    width: calc(100% + 28px);
    height: 2px;
    background: #e2e8f0;
}

.is-completed .flow-stepper__connector[b-bulfpyjghn] {
    background: #86efac;
}

.flow-stepper__progress[b-bulfpyjghn] {
    height: 4px;
    margin-top: 14px;
    overflow: hidden;
    border-radius: 999px;
    background: #e2e8f0;
}

.flow-stepper__progress span[b-bulfpyjghn] {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #2563eb;
    transition: width 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.flow-stepper__summary[b-bulfpyjghn] {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    color: #64748b;
    font-size: 11px;
    font-weight: 600;
}

@media (max-width: 760px) {
    .flow-stepper[b-bulfpyjghn] {
        padding: 14px;
        border-radius: 14px;
    }

    .flow-stepper__list[b-bulfpyjghn] {
        gap: 8px;
    }

    .flow-stepper__button[b-bulfpyjghn] {
        min-height: 48px;
        justify-content: center;
        padding: 4px;
    }

    .flow-stepper__marker[b-bulfpyjghn] {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        border-radius: 10px;
    }

    .flow-stepper__copy[b-bulfpyjghn] {
        display: none;
    }

    .flow-stepper__connector[b-bulfpyjghn] {
        top: 22px;
        left: calc(-50% - 4px);
        width: calc(100% + 8px);
    }
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-flqpixj849] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-flqpixj849] {
    flex: 1;
}

.sidebar[b-flqpixj849] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-flqpixj849] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-flqpixj849]  a, .top-row .btn-link[b-flqpixj849] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-flqpixj849] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-flqpixj849] {
        display: none;
    }

    .top-row.auth[b-flqpixj849] {
        justify-content: space-between;
    }

    .top-row a[b-flqpixj849], .top-row .btn-link[b-flqpixj849] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-flqpixj849] {
        flex-direction: row;
    }

    .sidebar[b-flqpixj849] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-flqpixj849] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-flqpixj849], article[b-flqpixj849] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-8ep8x2xwdh] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-8ep8x2xwdh] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-8ep8x2xwdh] {
    font-size: 1.1rem;
}

.oi[b-8ep8x2xwdh] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-8ep8x2xwdh] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-8ep8x2xwdh] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-8ep8x2xwdh] {
        padding-bottom: 1rem;
    }

    .nav-item[b-8ep8x2xwdh]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-8ep8x2xwdh]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-8ep8x2xwdh]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-8ep8x2xwdh] {
        display: none;
    }

    .collapse[b-8ep8x2xwdh] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
