/* /Components/Layout/HelpPanel.razor.rz.scp.css */
/* ==========================================================================
   HELP PANEL - Slide-out sidebar
   Modify the CSS variables below to customize colors and spacing.
   ========================================================================== */

/* --- Customizable Variables --- */
.help-panel[b-b2gibiw5qe] {
    /* Panel dimensions */
    --help-panel-width: 420px;

    /* Panel colors */
    --help-header-bg: var(--rz-primary, #1b6ec2);
    --help-header-text: #ffffff;
    --help-panel-bg: var(--rz-base-background-color, #ffffff);
    --help-border-color: var(--rz-border-color, #dee2e6);

    /* Section header colors */
    --help-section-bg: #f8f9fa;
    --help-section-bg-hover: #e9ecef;
    --help-section-bg-expanded: var(--rz-primary, #1b6ec2);
    --help-section-text: #343a40;
    --help-section-text-expanded: #ffffff;
    --help-section-icon: var(--rz-primary, #1b6ec2);
    --help-section-icon-expanded: #ffffff;

    /* Content colors */
    --help-item-title-color: var(--rz-primary, #1b6ec2);
    --help-body-font-size: 14px;

    /* Info box colors */
    --help-tip-bg: #e8f5e9;
    --help-tip-border: #3e9108;
    --help-warning-bg: #fff8e1;
    --help-warning-border: #e6a817;
    --help-note-bg: #e3f2fd;
    --help-note-border: #1b6ec2;
    --help-danger-bg: #fce4ec;
    --help-danger-border: #b32121;

    /* Table colors */
    --help-table-header-bg: var(--rz-primary, #1b6ec2);
    --help-table-header-text: #ffffff;
    --help-table-stripe-bg: rgba(0, 0, 0, 0.02);

    /* Status label colors */
    --help-status-pending-bg: #fff3e0;
    --help-status-pending-text: #e65100;
    --help-status-progress-bg: #e3f2fd;
    --help-status-progress-text: #1565c0;
    --help-status-verified-bg: #e8f5e9;
    --help-status-verified-text: #2e7d32;
    --help-status-failed-bg: #fce4ec;
    --help-status-failed-text: #c62828;

    /* Spacing */
    --help-section-gap: 8px;
    --help-section-radius: 8px;
    --help-content-padding: 16px 20px;
}


/* ==========================================================================
   OVERLAY
   ========================================================================== */

.help-overlay[b-b2gibiw5qe] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    cursor: pointer;
}


/* ==========================================================================
   PANEL CONTAINER
   ========================================================================== */

.help-panel[b-b2gibiw5qe] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: var(--help-panel-width);
    max-width: 90vw;
    background: var(--help-panel-bg);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.help-panel--open[b-b2gibiw5qe] {
    transform: translateX(0);
}


/* ==========================================================================
   PANEL HEADER
   ========================================================================== */

.help-panel__header[b-b2gibiw5qe] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--help-header-bg);
    color: var(--help-header-text);
    flex-shrink: 0;
}


/* ==========================================================================
   SEARCH BAR
   ========================================================================== */

.help-panel__search[b-b2gibiw5qe] {
    padding: 12px 20px;
    border-bottom: none;
    flex-shrink: 0;
    background: var(--help-panel-bg);
}


/* ==========================================================================
   TOOLBAR (Expand All / Collapse All / Exclusive Mode)
   ========================================================================== */

.help-panel__toolbar[b-b2gibiw5qe] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 20px 10px;
    border-bottom: 1px solid var(--help-border-color);
    flex-shrink: 0;
    background: var(--help-panel-bg);
}

.help-panel__toolbar-left[b-b2gibiw5qe] {
    display: flex;
    gap: 2px;
}

.help-panel__toolbar-right[b-b2gibiw5qe] {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    user-select: none;
}

.help-panel__toolbar-label[b-b2gibiw5qe] {
    font-size: 12px;
    color: var(--rz-text-secondary-color, #6c757d);
}


/* ==========================================================================
   SCROLLABLE CONTENT AREA
   ========================================================================== */

.help-panel__content[b-b2gibiw5qe] {
    flex: 1;
    overflow-y: auto;
    padding: var(--help-content-padding);
}

.help-panel__no-results[b-b2gibiw5qe] {
    text-align: center;
    padding: 40px 20px;
    color: var(--rz-text-disabled-color, #6c757d);
}


/* ==========================================================================
   ACCORDION SECTIONS
   ========================================================================== */

[b-b2gibiw5qe] .help-section {
    margin-bottom: var(--help-section-gap);
    border-radius: var(--help-section-radius);
    overflow: hidden;
    border: 1px solid var(--help-border-color);
    transition: box-shadow 0.2s ease;
}

[b-b2gibiw5qe] .help-section:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

[b-b2gibiw5qe] .help-section--expanded {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

/* Section header (clickable) */
[b-b2gibiw5qe] .help-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--help-section-bg);
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

[b-b2gibiw5qe] .help-section__header:hover {
    background: var(--help-section-bg-hover);
}

[b-b2gibiw5qe] .help-section--expanded .help-section__header {
    background: var(--help-section-bg-expanded);
    color: var(--help-section-text-expanded);
}

[b-b2gibiw5qe] .help-section__header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--help-section-icon);
}

[b-b2gibiw5qe] .help-section--expanded .help-section__header-left {
    color: var(--help-section-icon-expanded);
}

[b-b2gibiw5qe] .help-section__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--help-section-text);
}

[b-b2gibiw5qe] .help-section--expanded .help-section__title {
    color: var(--help-section-text-expanded);
}

[b-b2gibiw5qe] .help-section--expanded .help-section__header .rzi {
    color: var(--help-section-icon-expanded);
    opacity: 0.8;
}

/* Section body (expanded content) */
[b-b2gibiw5qe] .help-section__body {
    padding: 16px;
    background: var(--help-panel-bg);
    border-top: 1px solid var(--help-border-color);
}


/* ==========================================================================
   HELP ITEMS (within each section)
   ========================================================================== */

[b-b2gibiw5qe] .help-item {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--help-border-color);
}

[b-b2gibiw5qe] .help-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

[b-b2gibiw5qe] .help-item__title {
    margin-bottom: 8px;
    color: var(--help-item-title-color);
}

[b-b2gibiw5qe] .help-item__body {
    font-size: var(--help-body-font-size);
    line-height: 1.6;
}

[b-b2gibiw5qe] .help-item__body p {
    margin-bottom: 8px;
}

[b-b2gibiw5qe] .help-item__body ul,
[b-b2gibiw5qe] .help-item__body ol {
    padding-left: 20px;
    margin-bottom: 8px;
}

[b-b2gibiw5qe] .help-item__body li {
    margin-bottom: 4px;
}

[b-b2gibiw5qe] .help-item__body h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 16px 0 8px;
}


/* ==========================================================================
   TABLES
   ========================================================================== */

[b-b2gibiw5qe] .help-table {
    width: 100%;
    border-collapse: collapse;
    margin: 8px 0;
    font-size: 13px;
}

[b-b2gibiw5qe] .help-table th {
    background: var(--help-table-header-bg);
    color: var(--help-table-header-text);
    padding: 8px 10px;
    text-align: left;
    font-size: 12px;
}

[b-b2gibiw5qe] .help-table td {
    padding: 8px 10px;
    border-bottom: 1px solid var(--help-border-color);
    font-size: 12px;
}

[b-b2gibiw5qe] .help-table tr:nth-child(even) {
    background: var(--help-table-stripe-bg);
}


/* ==========================================================================
   INFO BOXES (Tip, Warning, Note, Danger)
   ========================================================================== */

[b-b2gibiw5qe] .info-box {
    padding: 12px 16px;
    border-radius: 6px;
    margin: 12px 0;
    font-size: 13px;
}

[b-b2gibiw5qe] .info-box strong {
    display: block;
    margin-bottom: 4px;
}

[b-b2gibiw5qe] .info-box.tip {
    background: var(--help-tip-bg);
    border-left: 4px solid var(--help-tip-border);
}

[b-b2gibiw5qe] .info-box.warning {
    background: var(--help-warning-bg);
    border-left: 4px solid var(--help-warning-border);
}

[b-b2gibiw5qe] .info-box.note {
    background: var(--help-note-bg);
    border-left: 4px solid var(--help-note-border);
}

[b-b2gibiw5qe] .info-box.danger {
    background: var(--help-danger-bg);
    border-left: 4px solid var(--help-danger-border);
}


/* ==========================================================================
   FIELD REFERENCES & KEYBOARD SHORTCUTS
   ========================================================================== */

[b-b2gibiw5qe] .field-ref {
    background: #f1f3f5;
    padding: 1px 4px;
    border-radius: 3px;
    font-family: "Segoe UI", monospace;
    font-size: 12px;
    color: var(--rz-primary-dark, #145a9e);
}

[b-b2gibiw5qe] kbd {
    background: #f1f3f5;
    border: 1px solid var(--help-border-color);
    border-radius: 3px;
    padding: 1px 6px;
    font-family: "Segoe UI", monospace;
    font-size: 12px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}


/* ==========================================================================
   STATUS LABELS
   ========================================================================== */

[b-b2gibiw5qe] .status-label {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

[b-b2gibiw5qe] .status-label.pending {
    background: var(--help-status-pending-bg);
    color: var(--help-status-pending-text);
}

[b-b2gibiw5qe] .status-label.in-progress {
    background: var(--help-status-progress-bg);
    color: var(--help-status-progress-text);
}

[b-b2gibiw5qe] .status-label.verified {
    background: var(--help-status-verified-bg);
    color: var(--help-status-verified-text);
}

[b-b2gibiw5qe] .status-label.failed {
    background: var(--help-status-failed-bg);
    color: var(--help-status-failed-text);
}


/* ==========================================================================
   ROLE BADGES
   ========================================================================== */

[b-b2gibiw5qe] .role-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
}

[b-b2gibiw5qe] .role-badge.admin {
    background: var(--help-status-failed-bg);
    color: var(--help-status-failed-text);
}

[b-b2gibiw5qe] .role-badge.tenant-admin {
    background: var(--help-status-pending-bg);
    color: var(--help-status-pending-text);
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 480px) {
    .help-panel[b-b2gibiw5qe] {
        width: 100vw;
    }
}
/* /Components/Pages/BankVerificationsReviewReport.razor.rz.scp.css */
/* BankVerificationReport.razor.css - Scoped styles for Bank Verification Report */

/* ========================================
   CSS Variables - FundingShield Branding
   ======================================== */
:root[b-ey3113i060] {
    --fs-light-blue: #00a1ed;
    --fs-dark-blue: #081d58;
    --fs-white: #ffffff;
    --fs-light-gray: #f5f7fa;
    --fs-border-gray: #e0e4e8;
    --fs-text-dark: #333333;
    --fs-text-muted: #666666;
    --fs-success: #28a745;
    --fs-warning: #dc3545;
    --fs-warning-bg: #fff3f3;
    --fs-success-bg: #f0fff4;
}

/* ========================================
   Base Report Styles
   ======================================== */
.report-container[b-ey3113i060] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--fs-text-dark);
    line-height: 1.4;
}

.report-page[b-ey3113i060] {
    width: 8.5in;
    min-height: 11in;
    margin: 0 auto;
    padding: 0.5in 0.75in;
    background: var(--fs-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ========================================
   Print Controls
   ======================================== */
.print-controls[b-ey3113i060] {
    max-width: 8.5in;
    margin: 20px auto;
    text-align: right;
}

.btn-print[b-ey3113i060] {
    background: var(--fs-light-blue);
    color: var(--fs-white);
    border: none;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease;
}

.btn-print:hover[b-ey3113i060] {
    background: var(--fs-dark-blue);
}

.print-icon[b-ey3113i060] {
    font-size: 16px;
}

/* ========================================
   Header Styles
   ======================================== */
.report-header[b-ey3113i060] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.logo-section .logo[b-ey3113i060] {
    max-width: 220px;
    height: auto;
}

.title-section[b-ey3113i060] {
    text-align: right;
}

.title-section h1[b-ey3113i060] {
    font-size: 22px;
    font-weight: 700;
    color: var(--fs-dark-blue);
    margin: 0 0 4px 0;
}

.order-number[b-ey3113i060] {
    font-size: 16px;
    color: var(--fs-light-blue);
    font-weight: 600;
    margin: 0;
}

.header-divider[b-ey3113i060] {
    height: 3px;
    background: linear-gradient(90deg, var(--fs-dark-blue), var(--fs-light-blue));
    margin-bottom: 24px;
}

/* ========================================
   Section Styles
   ======================================== */
.report-section[b-ey3113i060] {
    margin-bottom: 24px;
}

.section-title[b-ey3113i060] {
    font-size: 14px;
    font-weight: 700;
    color: var(--fs-dark-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--fs-border-gray);
}

/* ========================================
   Info Grid - Key/Value Pairs
   ======================================== */
.info-grid[b-ey3113i060] {
    background: var(--fs-light-gray);
    border: 1px solid var(--fs-border-gray);
    border-radius: 6px;
    padding: 16px 20px;
}

.info-row[b-ey3113i060] {
    display: flex;
    padding: 6px 0;
    border-bottom: 1px solid var(--fs-border-gray);
}

.info-row:last-child[b-ey3113i060] {
    border-bottom: none;
}

.info-label[b-ey3113i060] {
    flex: 0 0 160px;
    font-weight: 600;
    color: var(--fs-text-muted);
    font-size: 13px;
}

.info-value[b-ey3113i060] {
    flex: 1;
    font-size: 13px;
    color: var(--fs-text-dark);
}

.account-number[b-ey3113i060] {
    font-family: 'Consolas', 'Courier New', monospace;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ========================================
   Status Box Styles
   ======================================== */
.status-box[b-ey3113i060] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 6px;
    border-left: 4px solid;
}

.status-warning[b-ey3113i060] {
    background: var(--fs-warning-bg);
    border-left-color: var(--fs-warning);
}

.status-ok[b-ey3113i060] {
    background: var(--fs-success-bg);
    border-left-color: var(--fs-success);
}

.status-icon[b-ey3113i060] {
    font-size: 20px;
    line-height: 1;
}

.status-icon.warning[b-ey3113i060] {
    color: var(--fs-warning);
}

.status-icon.success[b-ey3113i060] {
    color: var(--fs-success);
}

.status-text[b-ey3113i060] {
    flex: 1;
}

.status-text p[b-ey3113i060] {
    margin: 0 0 4px 0;
    font-size: 13px;
}

.status-text p:last-child[b-ey3113i060] {
    margin-bottom: 0;
}

/* ========================================
   Status Indicators
   ======================================== */
.status-dot[b-ey3113i060] {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

.status-dot.active[b-ey3113i060] {
    background: var(--fs-success);
}

.status-dot.inactive[b-ey3113i060] {
    background: var(--fs-text-muted);
}

.verification-badge[b-ey3113i060] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.verification-badge.success[b-ey3113i060] {
    background: var(--fs-success-bg);
    color: var(--fs-success);
    border: 1px solid var(--fs-success);
}

.verification-badge.pending[b-ey3113i060] {
    background: #fff8e6;
    color: #b8860b;
    border: 1px solid #b8860b;
}

/* ========================================
   Footer Styles
   ======================================== */
.report-footer[b-ey3113i060] {
    margin-top: auto;
    padding-top: 20px;
}

.footer-divider[b-ey3113i060] {
    height: 1px;
    background: var(--fs-border-gray);
    margin-bottom: 12px;
}

.footer-content[b-ey3113i060] {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--fs-text-muted);
}

.confidential[b-ey3113i060] {
    font-weight: 600;
    color: var(--fs-dark-blue);
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    /* Hide non-printable elements */
    .no-print[b-ey3113i060] {
        display: none !important;
    }

    /* Reset page for printing */
    *[b-ey3113i060] {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    html[b-ey3113i060], body[b-ey3113i060] {
        width: 8.5in;
        height: 11in;
        margin: 0;
        padding: 0;
    }

    @page {
        size: 8.5in 11in;
        margin: 0;
    }

    .report-container[b-ey3113i060] {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .report-page[b-ey3113i060] {
        width: 100%;
        min-height: 100%;
        padding: 0.4in 0.6in;
        box-shadow: none;
        border: none;
    }

    /* Ensure backgrounds print */
    .info-grid[b-ey3113i060] {
        background: #f5f7fa !important;
    }

    .status-warning[b-ey3113i060] {
        background: #fff3f3 !important;
    }

    .status-ok[b-ey3113i060] {
        background: #f0fff4 !important;
    }

    .verification-badge.success[b-ey3113i060] {
        background: #f0fff4 !important;
    }

    .verification-badge.pending[b-ey3113i060] {
        background: #fff8e6 !important;
    }

    /* Ensure colors print */
    .header-divider[b-ey3113i060] {
        background: linear-gradient(90deg, #081d58, #00a1ed) !important;
    }

    .status-dot.active[b-ey3113i060] {
        background: #28a745 !important;
    }

    /* Prevent page breaks inside sections */
    .report-section[b-ey3113i060] {
        page-break-inside: avoid;
    }

    /* Keep footer at bottom */
    .report-footer[b-ey3113i060] {
        position: relative;
        bottom: 0.4in;
        left: 0.6in;
        right: 0.6in;
    }
}

/* ========================================
   Screen Responsiveness (non-print)
   ======================================== */
@media screen and (max-width: 900px) {
    .report-page[b-ey3113i060] {
        width: 100%;
        min-height: auto;
        padding: 24px;
        margin: 0 16px;
    }

    .report-header[b-ey3113i060] {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .title-section[b-ey3113i060] {
        text-align: left;
    }

    .info-row[b-ey3113i060] {
        flex-direction: column;
        gap: 2px;
    }

    .info-label[b-ey3113i060] {
        flex: none;
    }

    .footer-content[b-ey3113i060] {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}
