﻿
.load-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #E0D5E8;
    margin-bottom: 0;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.load-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: none;
    border-bottom: 3px solid transparent;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
    margin-bottom: -2px;
    transition: color 0.15s, border-color 0.15s;
    border-radius: 8px 8px 0 0;
}

    .load-tab:hover {
        color: #374151;
        background: #F9F5FF;
    }

    .load-tab.active.pending-tab {
        color: #1976D2;
        border-bottom-color: #1976D2;
        background: #eef5fb;
    }

    .load-tab.active.approved-tab {
        color: #92400E;
        border-bottom-color: #F59E0B;
        background: #FEF3C7;
    }

    .load-tab.active.completed-tab {
        color: #057A55;
        border-bottom-color: #057A55;
        background: #E6F9F0;
    }

    .load-tab.active.rejected-tab {
        color: #B42318;
        border-bottom-color: #F04438;
        background: #FDECEA;
    }

.tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 11px;
    font-size: 11px;
    font-weight: 700;
}

.pending-badge {
    background: #DBEAFE;
    color: #1D4ED8;
}

.approved-badge {
    background: #FEF3C7;
    color: #92400E;
}

.completed-badge {
    background: #D1FAE5;
    color: #065F46;
}

.rejected-badge {
    background: #FEE2E2;
    color: #991B1B;
}

.load-tab.active.all-tab {
    color: #374151;
    border-bottom-color: #6B7280;
    background: #F3F4F6;
}

.all-badge {
    background: #F3F4F6;
    color: #374151;
}


/*************Load authorization page css ********/

.la-page-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--HeadingFont) !important;
    margin-bottom: 18px;
}

.la-page-title .la-icon {
    width: 34px;
    height: 34px;
    background: #2e77f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

    .la-page-title h1 {
        font-size: 20px;
        font-weight: 600;
        color: #1a1a1a;
        font-family: var(--HeadingFont) !important;
    }

/* ── TABS ── */
.la-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1.5px solid #e5e7eb;
    margin-bottom: 20px;
    font-family: var(--HeadingFont) !important;
}

.la-tab {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: none;
    color: #6b7280;
    border-bottom: 2.5px solid transparent;
    margin-bottom: -1.5px;
    transition: all .15s;
    white-space: nowrap;
    font-family: var(--HeadingFont) !important;
}

    .la-tab:hover {
        color: #1a1a1a;
    }

    .la-tab.active {
        color: #2e77f2;
        border-bottom-color: #2e77f2;
    }

    .la-tab .la-badge {
        background: #2e77f2;
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        padding: 1px 6px;
        border-radius: 10px;
        margin-left: 6px;
        font-family: var(--HeadingFont) !important;
    }

/* ── INFO BAR ── */
.la-info-bar {
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 12px;
    color: #2e77f2;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
    font-family: var(--HeadingFont) !important;
    margin-bottom: 14px;
    font-weight:500;
}

/* ── LAYOUT ── */
.la-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 16px;
    align-items: start;
    font-family: var(--HeadingFont) !important;
}

/* ── BANK PANEL (left column) ── */
.la-bank-panel {
    background: #fff;
    border: 0.5px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    font-family: var(--HeadingFont) !important;
    position: sticky;
    top: 16px;
}

.la-bank-panel-header {
    padding: 14px 16px 10px;
    border-bottom: 0.5px solid #e5e7eb;
    font-family: var(--HeadingFont) !important;
}

    .la-bank-panel-header h3 {
        font-size: 13px;
        font-weight: 600;
        color: #1a1a1a;
    }

    .la-bank-panel-header p {
        font-size: 11px;
        color: #6b7280;
        margin-top: 2px;
    }

.la-bank-list {
    padding: 8px;
    font-family: var(--HeadingFont) !important;
}

.la-bank-card {
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 11px 13px;
    margin-bottom: 7px;
    cursor: pointer;
    transition: all .15s;
    background: #fff;
    font-family: var(--HeadingFont) !important;
    position: relative;
}

    .la-bank-card:hover {
        border-color: #a5b4fc;
        background: #fafafe;
    }

    .la-bank-card.la-selected {
        border-color: #2e77f2;
        background: linear-gradient(135deg,#eef2ff,#f5f3ff);
        font-family: var(--HeadingFont) !important;
    }

    .la-bank-card .la-bc-name {
        font-size: 12px;
        font-weight: 600;
        color: #1a1a1a;
        display: flex;
        font-family: var(--HeadingFont) !important;
        align-items: center;
        gap: 6px;
    }

    .la-bank-card .la-bc-acct {
        font-size: 11px;
        color: #6b7280;
        margin-top: 3px;
        font-family: var(--HeadingFont) !important;
    }

    .la-bank-card .la-bc-nick {
        font-size: 12px;
        color: #2e77f2;
        font-weight: 500;
        background: #eef2ff;
        padding: 2px 7px;
        border-radius: 8px;
        display: inline-block;
        margin-top: 4px;
    }

    .la-bank-card .la-bc-purpose {
        font-size: 10px;
        color: #6b7280;
        margin-top: 2px;
    }

    .la-bank-card .la-check {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #2e77f2;
        display: none;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-family: var(--HeadingFont) !important;
        font-size: 10px;
    }

    .la-bank-card.la-selected .la-check {
        display: flex;
    }

.la-bank-panel-footer {
    padding: 10px 12px;
    border-top: 0.5px solid #e5e7eb;
    font-family: var(--HeadingFont) !important;
}

.la-save-notice {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
    padding: 7px 11px;
    font-size: 11px;
    color: #065f46;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    transition: opacity .4s;
    font-family: var(--HeadingFont) !important;
}

    .la-save-notice.la-hidden {
        display: none;
    }

.la-btn-add-bank {
    width: 100%;
    padding: 8px;
    border: 1.5px dashed #9ca3af;
    background: none;
    border-radius: 8px;
    color: #6b7280;
    font-size: 12px;
    cursor: pointer;
    font-family: var(--HeadingFont) !important;
    transition: all .15s;
}

    .la-btn-add-bank:hover {
        border-color: #2e77f2;
        color: #2e77f2;
        background: #eef2ff;
    }

/* ── FORM PANEL (right column) ── */
.la-form-panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-family: var(--HeadingFont) !important;
}

.la-section {
    background: #fff;
    border: 0.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px 20px;
    font-family: var(--HeadingFont) !important;
}

.la-section-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--HeadingFont) !important;
}

.la-pill {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    background: #eef2ff;
    color: #2e77f2;
    font-family: var(--HeadingFont) !important;
}

.la-section-sub {
    font-size: 11px;
    color: #6b7280;
    margin-bottom: 14px;
}

/* ── QUICK LOAD ── */
.la-quick-load {
    background: linear-gradient(135deg, #1e3a8a, #2e77f2);
    border-radius: 10px;
    padding: 14px 18px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-family: var(--HeadingFont) !important;
}

.la-ql-info {
    flex: 1;
    min-width: 180px;
    font-family: var(--HeadingFont) !important;
}

    .la-ql-info h4 {
        font-size: 13px;
        font-weight: 500;
        color:#fff;
        margin-bottom: 2px;
        font-family: var(--HeadingFont) !important;
    }

    .la-ql-info p {
        font-size: 11px;
        opacity: .8;
        font-family: var(--HeadingFont) !important;
    }

.la-ql-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 220px;
    font-family: var(--HeadingFont) !important;
}

/* ── RECENT GRID ── */
.la-recent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px;
    margin-top: 10px;
    font-family: var(--HeadingFont) !important;
}

.la-req-card {
    border: 0.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 12px;
    font-family: var(--HeadingFont) !important;
    background: #f9fafb;
}

    .la-req-card .la-status {
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .5px;
        margin-bottom: 5px;
        font-family: var(--HeadingFont) !important;
    }

.la-status-completed {
    color: #059669;
}

.la-status-approved {
    color: #2e77f2;
}

.la-status-pending {
    color: #d97706;
}

.la-status-rejected {
    color: #dc2626;
}

.la-req-card .la-req-amount {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: var(--HeadingFont) !important;
    margin-bottom: 3px;
}

.la-req-card .la-req-meta {
    font-size: 10px;
    color: #6b7280;
    line-height: 1.5;
    font-family: var(--HeadingFont) !important;
}

.la-req-card .la-req-auth {
    font-size: 9px;
    color: #2e77f2;
    margin-top: 4px;
    font-family: var(--HeadingFont) !important;
    word-break: break-all;
}

/* ── FORM FIELDS ── */
.la-form-grid {
    display: grid;
    gap: 12px;
    font-family: var(--HeadingFont) !important;
}

.la-cols2 {
    grid-template-columns: 1fr 1fr;
}

.la-cols3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.la-form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .la-form-group label {
        font-size: 11px;
        font-weight: 600;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: .4px;
        font-family: var(--HeadingFont) !important;
    }

.la-span2 {
    grid-column: span 2;
}

.la-span3 {
    grid-column: span 3;
}

/* ── RADIO ROW ── */
.la-radio-row {
    display: flex;
    gap: 16px;
    font-family: var(--HeadingFont) !important;
    margin-top: 6px;
}

.la-radio-opt {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 13px;
    font-family: var(--HeadingFont) !important;
    color: #1a1a1a;
}

/* ── BENEFICIARY ── */
.la-bene-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-family: var(--HeadingFont) !important;
}

.la-bene-field {
    background: #f9fafb;
    border: 0.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 12px;
    font-family: var(--HeadingFont) !important;
}

    .la-bene-field label {
        font-size: 10px;
        font-weight: 600;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: .4px;
        display: block;
        margin-bottom: 3px;
        font-family: var(--HeadingFont) !important;
    }

    .la-bene-field span {
        font-size: 13px;
        color: #1a1a1a;
        font-family: var(--HeadingFont) !important;
    }

/* ── SUBMIT ROW ── */
.la-submit-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    font-family: var(--HeadingFont) !important;
    padding-top: 4px;
}

/* ── BANK MANAGEMENT TAB ── */
.la-mgmt-layout {
    font-family: var(--HeadingFont) !important;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.la-bank-mgmt-card {
    background: #fff;
    border: 0.5px solid #e5e7eb;
    border-radius: 12px;
    font-family: var(--HeadingFont) !important;
    overflow: hidden;
}

.la-bank-mgmt-header {
    font-family: var(--HeadingFont) !important;
    padding: 14px 18px;
    background: #f9fafb;
    border-bottom: 0.5px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

    .la-bank-mgmt-header .la-bank-label {
        font-size: 14px;
        font-weight: 600;
        font-family: var(--HeadingFont) !important;
        color: #1a1a1a;
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

.la-bank-label .la-nick {
    font-size: 11px;
    font-weight: 600;
    background: #eef2ff;
    color: #2e77f2;
    padding: 2px 9px;
    border-radius: 10px;
    font-family: var(--HeadingFont) !important;
}

.la-purpose-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 10px;
    background: #ecfdf5;
    font-family: var(--HeadingFont) !important;
    color: #059669;
}

.la-default-badge {
    font-size: 10px;
    font-weight: 700;
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
    padding: 2px 8px;
    font-family: var(--HeadingFont) !important;
    border-radius: 8px;
}

.la-bank-mgmt-body {
    padding: 16px 18px;
    font-family: var(--HeadingFont) !important;
}

.la-bank-mgmt-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
}

.la-bank-detail-item label {
    font-size: 10px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .4px;
    display: block;
    font-family: var(--HeadingFont) !important;
    margin-bottom: 2px;
}

.la-bank-detail-item span {
    font-size: 12px;
    color: #1a1a1a;
    font-family: var(--HeadingFont) !important;
}

.la-bank-mgmt-actions {
    padding: 12px 18px;
    border-top: 0.5px solid #e5e7eb;
    display: flex;
    gap: 8px;
    font-family: var(--HeadingFont) !important;
    flex-wrap: wrap;
}

.la-add-bank-form {
    background: #fff;
    border: 1.5px dashed #9ca3af;
    border-radius: 12px;
    font-family: var(--HeadingFont) !important;
    padding: 20px;
}

    .la-add-bank-form h3 {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 14px;
        font-family: var(--HeadingFont) !important;
        color: #1a1a1a;
    }

/* ── SHARED INPUT OVERRIDES ── */
.la-page .rz-textbox,
.la-page .rz-numeric,
.la-page .rz-dropdown,
.la-page .rz-textarea {
    border-radius: 8px !important;
}

/* ── BUTTONS ── */
.la-btn-cancel {
    padding: 9px 20px;
    border: 1px solid #9ca3af;
    background: none;
    border-radius: 8px;
    font-size: 13px;
    color: #6b7280;
    font-family: var(--HeadingFont) !important;
    cursor: pointer;
}

.la-btn-submit {
    padding: 9px 28px;
    background: linear-gradient(135deg, #2e77f2, #59c7fa);
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    font-family: var(--HeadingFont) !important;
    cursor: pointer;
    box-shadow: none;
}

    .la-btn-submit:hover {
        opacity: .9;
    }

    .la-btn-submit:disabled {
        opacity: .5;
        cursor: not-allowed;
    }

.la-btn-edit {
    padding: 6px 14px;
    border: 1px solid #2e77f2;
    background: none;
    border-radius: 7px;
    font-size: 12px;
    font-family: var(--HeadingFont) !important;
    color: #2e77f2;
    cursor: pointer;
}

.la-btn-delete {
    padding: 6px 14px;
    border: 1px solid #f09595;
    background: none;
    border-radius: 7px;
    font-size: 12px;
    font-family: var(--HeadingFont) !important;
    color: #e24b4a;
    cursor: pointer;
}

.la-btn-default {
    padding: 6px 14px;
    border: 1px solid #059669;
    background: none;
    border-radius: 7px;
    font-family: var(--HeadingFont) !important;
    font-size: 12px;
    color: #059669;
    cursor: pointer;
}

/* error */
.la-error {
    font-size: 11px;
    font-family: var(--HeadingFont) !important;
    color: #dc2626;
    margin-top: 2px;
}

/* phone */
.la-phone-wrap {
    position: relative;
    width: 100%;
    margin-top: 3px;
}

.la-phone-ctrl {
    width: 100%;
    font-family: var(--HeadingFont) !important;
    height: 40px !important;
    box-sizing: border-box;
}

.iti {
    width: 100%;
}

/* info tooltip */
.la-info-wrap {
    position: relative;
    display: inline-flex;
    margin-left: 4px;
    font-family: var(--HeadingFont) !important;
    vertical-align: middle;
    cursor: default;
}

.la-info-icon {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #e6f1fb;
    color: #185fa5;
    font-size: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.la-info-tip {
    display: none;
    position: absolute;
    left: 20px;
    top: -4px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 11px;
    white-space: nowrap;
    z-index: 9999;
    font-family: var(--HeadingFont) !important;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
    pointer-events: none;
}

.la-info-wrap:hover .la-info-tip {
    display: block;
}

/* ── RESPONSIVE ── */
@@media (max-width: 768px) {
    .la-layout {
        grid-template-columns: 1fr;
    }

    .la-bank-panel {
        position: static;
    }

    .la-cols2, .la-cols3 {
        grid-template-columns: 1fr;
    }

    .la-bene-grid {
        grid-template-columns: 1fr;
    }

    .la-bank-mgmt-grid {
        grid-template-columns: 1fr 1fr;
    }

    .la-span2, .la-span3 {
        grid-column: span 1;
    }
}

/*************** all load banks ****************/


<style >
.lbl-page {
    padding: 1.5rem;
    font-family: var(--HeadingFont) !important;
}

.lbl-page-title {
    font-size: 22px;
    color: #212121;
    font-family: var(--HeadingFont) !important;
    margin-bottom: 2px;
}

.lbl-page-sub {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-family: var(--HeadingFont) !important;
}

/* ── STATS ROW ── */
.lbl-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 1.5rem;
}

.lbl-stat {
    background: #f9fafb;
    border: 0.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-family: var(--HeadingFont) !important;
}

.lbl-stat-label {
    font-size: 14px;
    color: #6b7280;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--HeadingFont) !important;
    margin-bottom: 4px;
}

.lbl-stat-val {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--HeadingFont) !important;
}

    .lbl-stat-val.total {
        color: #212121;
    }

    .lbl-stat-val.approved {
        color: #0F6E56;
    }

    .lbl-stat-val.pending {
        color: #BA7517;
    }

    .lbl-stat-val.rejected {
        color: #A32D2D;
    }

/* ── TOOLBAR ── */
.lbl-toolbar {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    font-family: var(--HeadingFont) !important;
}

.lbl-search {
    flex: 1;
    min-width: 200px;
    height: 38px;
    border: 0.5px solid #d1d5db;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 13px;
    outline: none;
    background: #fff;
    color: #212121;
    font-family: var(--HeadingFont) !important;
}

    .lbl-search:focus {
        border-color: #185fa5;
        box-shadow: 0 0 0 2px rgba(24,95,165,0.12);
    }

.lbl-filter-btn {
    height: 38px;
    padding: 0 16px;
    border: 0.5px solid #d1d5db;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    background: #fff;
    color: #6b7280;
    transition: all 0.15s;
    white-space: nowrap;
    font-family: var(--HeadingFont) !important;
}

    .lbl-filter-btn:hover {
        background: #f3f4f6;
        color: #212121;
    }

    .lbl-filter-btn.active {
        background: #1B2A5C;
        color: #fff;
        border-color: #1B2A5C;
    }

/* ── CARD GRID ── */
.lbl-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    font-family: var(--HeadingFont) !important;
}

/* ── BANK CARD ── */
.lbl-bank-card {
    border-radius: 14px;
    padding: 1.1rem 1.2rem 0.9rem;
    position: relative;
    overflow: hidden;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: default;
    transition: transform 0.15s, box-shadow 0.15s;
    font-family: var(--HeadingFont) !important;
}

    .lbl-bank-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    }

    .lbl-bank-card.dark-blue {
        background: #1B2A5C;
    }

    .lbl-bank-card.dark-teal {
        background: #0A3D3A;
    }

.lbl-card-wave {
    position: absolute;
    right: -20px;
    top: -10px;
    opacity: 0.15;
    pointer-events: none;
}

.lbl-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.lbl-bank-name {
    font-size: 15px;
    color: #fff;
    font-family: var(--HeadingFont) !important;
}

.lbl-acct-label {
    font-size: 9px;
    color: rgba(255,255,255,0.55);
    text-align: right;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
    font-family: var(--HeadingFont) !important;
}

.lbl-acct-name {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    text-align: right;
    font-weight: 500;
    font-family: var(--HeadingFont) !important;
}

.lbl-card-number {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.14em;
    margin-bottom: 0.65rem;
    position: relative;
    z-index: 1;
    font-family: var(--HeadingFont) !important;
}

.lbl-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

.lbl-created-label {
    font-size: 9px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
    margin-bottom: 2px;
    font-family: var(--HeadingFont) !important;
}

.lbl-created-val {
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    font-family: var(--HeadingFont) !important;
}

.lbl-amount-label {
    font-size: 9px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
    text-align: right;
    margin-bottom: 2px;
    font-family: var(--HeadingFont) !important;
}

.lbl-amount-val {
    font-size: 20px;
    color: #fff;
    text-align: right;
    font-family: var(--HeadingFont) !important;
}

/* ── CARD FOOTER ── */
.lbl-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.8rem;
    padding-top: 0.65rem;
    border-top: 0.5px solid rgba(255,255,255,0.15);
    position: relative;
    z-index: 1;
    font-family: var(--HeadingFont) !important;
}

.lbl-badges {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    font-family: var(--HeadingFont) !important;
}

.lbl-badge {
    font-size: 10px;
    padding: 2px 9px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
    font-family: var(--HeadingFont) !important;
}

    .lbl-badge.method {
        background: rgba(255,255,255,0.18);
        color: rgba(255,255,255,0.9);
    }

.lbl-card-actions {
    display: flex;
    gap: 6px;
}
.lbl-icon-btn {
    height: 30px;
    border-radius: 7px;
    border: 0.5px solid rgba(255, 255, 255, 0.28) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400 !important;
    font-size: 14px !important;
    cursor: pointer;
    transition: background 0.15s;
    font-family: var(--HeadingFont) !important;
}

    .lbl-icon-btn:hover {
        background: rgba(255,255,255,0.22);
    }

    .lbl-icon-btn.del:hover {
        background: rgba(163,45,45,0.45);
    }

/* ── EMPTY STATE ── */
.lbl-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #9ca3af;
    font-size: 14px;
    grid-column: 1 / -1;
}

/* ── OVERLAY / MODAL ── */
.lbl-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

    .lbl-overlay.open {
        display: flex;
    }

.lbl-modal {
    background: #fff;
    border-radius: 14px;
    border: 0.5px solid #e5e7eb;
    width: min(480px, 94vw);
    padding: 1.6rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    font-family: var(--HeadingFont) !important;
}

.lbl-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #6b7280;
    line-height: 1;
    padding: 0;
}

    .lbl-modal-close:hover {
        color: #212121;
    }

.lbl-modal-title {
    font-size: 16px;
    font-weight: 600;
    color: #212121;
    font-family: var(--HeadingFont) !important;
    margin-bottom: 1.1rem;
}

.lbl-modal-section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7280;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: var(--HeadingFont) !important;
}

.lbl-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}

.lbl-modal-field {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0.45rem 0;
    border-bottom: 0.5px solid #f3f4f6;
    font-family: var(--HeadingFont) !important;
}

    .lbl-modal-field:last-child {
        border-bottom: none;
    }

.lbl-field-key {
    font-size: 11px;
    color: #9ca3af;
}

.lbl-field-val {
    font-size: 13px;
    color: #212121;
    font-weight: 500;
    font-family: var(--HeadingFont) !important;
}

.lbl-divider {
    height: 0.5px;
    background: #f3f4f6;
    margin: 0.85rem 0;
}

/* ── DELETE MODAL ── */
.lbl-del-modal {
    width: min(400px, 94vw);
}

.lbl-del-warning {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-family: var(--HeadingFont) !important;
}

.lbl-del-preview {
    background: #1B2A5C;
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
    margin: 1rem 0;
    font-family: var(--HeadingFont) !important;
}

.lbl-del-preview-name {
    font-size: 15px;
    color: #fff;
    margin-bottom: 4px;
    font-family: var(--HeadingFont) !important;
}

.lbl-del-preview-num {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.1em;
    font-family: var(--HeadingFont) !important;
}

.lbl-del-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 1rem;
    font-family: var(--HeadingFont) !important;
}

.lbl-btn {
    height: 36px;
    padding: 0 18px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.15s;
    border: none;
    font-family: var(--HeadingFont) !important;
}

.lbl-btn-cancel {
    background: #f3f4f6;
    color: #374151;
    border: 0.5px solid #d1d5db;
}

    .lbl-btn-cancel:hover {
        background: #e5e7eb;
    }

.lbl-btn-delete {
    background: #A32D2D;
    color: #FCEBEB !important;
}

    .lbl-btn-delete:hover {
        background: #791F1F;
    }

/* ── BACK BUTTON ── */
.lbl-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #185fa5;
    cursor: pointer;
    margin-bottom: 1.25rem;
    background: none;
    border: none !important;
    padding: 0;
}

    .lbl-back-btn:hover {
        text-decoration: underline;
    }

/* ── PAGINATION ── */
.lbl-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    font-family: var(--HeadingFont) !important;
}

.lbl-page-btn {
    height: 34px;
    min-width: 34px;
    padding: 0 10px;
    border-radius: 7px;
    border: 0.5px solid #d1d5db;
    background: #fff;
    font-size: 13px;
    cursor: pointer;
    color: #374151;
    transition: all 0.15s;
    font-family: var(--HeadingFont) !important;
}

    .lbl-page-btn:hover:not(:disabled) {
        background: #f3f4f6;
    }

    .lbl-page-btn.active {
        background: #1B2A5C;
        color: #fff;
        border-color: #1B2A5C;
    }

    .lbl-page-btn:disabled {
        opacity: 0.4;
        cursor: default;
    }

.lbl-page-info {
    font-size: 13px;
    color: #6b7280;
    margin-top: 0.75rem;
    text-align: center;
    font-family: var(--HeadingFont) !important;
}

@@media (max-width: 600px) {
    .lbl-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .lbl-modal-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Load Funds Modal ── */
.lf-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-family: var(--HeadingFont) !important;
}

.lf-modal {
    background: #fff;
    border-radius: 16px;
    border: 0.5px solid #e5e7eb;
    padding: 1.5rem;
    width: 100%;
    max-width:750px;
    max-height: 90vh;
    overflow-y: auto;
    font-family: var(--HeadingFont) !important;
}

.lf-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    font-family: var(--HeadingFont) !important;
}

.lf-modal-close {
    background: #f3f4f6;
    border: 0.5px solid #e5e7eb;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 16px;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

.lf-bank-summary {
    background: #f9fafb;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.25rem;
    border: 0.5px solid #e5e7eb;
    font-family: var(--HeadingFont) !important;
}

.lf-bank-top {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--HeadingFont) !important;
    margin-bottom: 10px;
}

.lf-bank-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e6f1fb;
    color: #185fa5;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lf-method-badge {
    margin-left: auto;
    background: #eaf3de;
    color: #3b6d11;
    padding: 3px 10px;
    border-radius: 20px;
    font-family: var(--HeadingFont) !important;
}

.lf-bank-grid {
    border-top: 0.5px solid #e5e7eb;
    padding-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-family: var(--HeadingFont) !important;
}

.lf-bank-cell-label {
    font-size: 13px;
    font-family: var(--HeadingFont) !important;
    color: #6b7280;
    margin: 0;
}

.lf-bank-cell-val {
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    margin: 0;
    font-family: var(--HeadingFont) !important;
    letter-spacing: 0.5px;
}

.lf-amount-label {
    font-size: 15px;
    color: #212121;
    display: block;
    font-family: var(--HeadingFont) !important;
    margin-bottom: 6px;
}

.lf-amount-wrap {
    position: relative;
}

.lf-amount-prefix {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    font-family: var(--HeadingFont) !important;
    pointer-events: none;
    font-family: var(--HeadingFont) !important;
}

.lf-amount-input {
    font-size: 20px !important;
    font-weight: 600 !important;
    font-family: var(--HeadingFont) !important;
    height: 52px !important;
}

.lf-modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 1.25rem;
    font-family: var(--HeadingFont) !important;
}



/* ═══════════════════════════════════════════════════════════════
   LoadBanksList.razor — Combined & Upgraded Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ── Add Bank Page Layout ─────────────────────────────────────── */
.ab-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    font-family: var(--HeadingFont) !important;
}

/* ── Info Banner ──────────────────────────────────────────────── */
.ab-info-banner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(100deg, #eff6ff 0%, #f0fdf4 100%);
    border: 1px solid #bfdbfe;
    border-left: 4px solid #1976d2;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-family: var(--HeadingFont) !important;
}

.ab-info-icon {
    width: 38px;
    height: 38px;
    background: #dbeafe;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ab-info-title {
    font-size: 18px;
    color: #1e40af;
    margin-bottom: 3px;
    font-family: var(--HeadingFont) !important;
}

.ab-info-desc {
    font-size:14px;
    color: #3b82f6;
    font-family: var(--HeadingFont) !important;
    line-height: 1.55;
}

.ab-info-steps {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.65rem;
    flex-wrap: wrap;
    font-family: var(--HeadingFont) !important;
}

.ab-info-step {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 14px;
    color: #1d4ed8;
    font-family: var(--HeadingFont) !important;
}

.ab-step-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1976d2;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--HeadingFont) !important;
}

/* ── Section Cards ────────────────────────────────────────────── */
.ab-section-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    font-family: var(--HeadingFont) !important;
}

.ab-section-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    background: #fafafa;
    font-family: var(--HeadingFont) !important;
}

.ab-section-head-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .ab-section-head-icon.blue {
        background: #eff6ff;
    }

    .ab-section-head-icon.teal {
        background: #f0fdf4;
    }

.ab-section-title {
    font-size: 16px;
    color: #111827;
    font-family: var(--HeadingFont) !important;
}

.ab-section-sub {
    font-size: 14px;
    color: #9ca3af;
    font-family: var(--HeadingFont) !important;
    margin-top: 1px;
}

.ab-section-body {
    padding: 1.5rem;
}

/* ── FIXED: 2-column form grid ────────────────────────────────── */
.ab-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem 1.5rem;
    font-family: var(--HeadingFont) !important;
}

@media (max-width: 640px) {
    .ab-form-grid {
        grid-template-columns: 1fr;
    }
}

.ab-field {
    display: flex;
    flex-direction: column;
    gap: 0px;
    font-family: var(--HeadingFont) !important;
}

.ab-label {
    font-size: 15px;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 3px;
    font-family: var(--HeadingFont) !important;
}

.ab-required {
    color: #e24b4a;
    font-family: var(--HeadingFont) !important;
}

.ab-optional {
    font-size: 11px;
    font-weight: 400;
    color: #9ca3af;
    font-family: var(--HeadingFont) !important;
    margin-left: 3px;
}

/* ── Action Row ───────────────────────────────────────────────── */
.ab-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    font-family: var(--HeadingFont) !important;
}

.ab-action-hint {
    font-size: 14px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--HeadingFont) !important;
}

/* ── Saved Banks Section ──────────────────────────────────────── */
.ab-saved-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    font-family: var(--HeadingFont) !important;
    overflow: hidden;
}

.ab-saved-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    background: #fafafa;
    font-family: var(--HeadingFont) !important;
}

.ab-saved-head-left {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 16px;
    color: #111827;
    font-family: var(--HeadingFont) !important;
}

.ab-count-badge {
    background: #e6f1fb;
    color: #185fa5;
    font-size: 14px;
    font-family: var(--HeadingFont) !important;
    padding: 2px 9px;
    border-radius: 20px;
}

/* ── REDESIGNED: Saved banks list as rich cards ───────────────── */
.ab-saved-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    font-family: var(--HeadingFont) !important;
}

.ab-saved-card {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
    font-family: var(--HeadingFont) !important;
}

    .ab-saved-card:hover {
        border-color: #bfdbfe;
        box-shadow: 0 4px 16px rgba(25, 118, 210, 0.09);
        transform: translateY(-1px);
    }

/* Card top stripe */
.ab-card-top {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1rem 0.75rem;
    border-bottom: 1px solid #f3f4f6;
    background: #fafbff;
    font-family: var(--HeadingFont) !important;
}

.ab-card-avatar {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: linear-gradient(135deg, #1565c0, #0d47a1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    box-shadow: 0 2px 8px rgba(13, 71, 161, 0.25);
    font-family: var(--HeadingFont) !important;
}

.ab-card-identity {
    flex: 1;
    min-width: 0;
    font-family: var(--HeadingFont) !important;
}

.ab-card-bank-name {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    font-family: var(--HeadingFont) !important;
}

.ab-card-account-name {
    font-size: 12px;
    color: #6b7280;
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--HeadingFont) !important;
}

.ab-card-type-badge {
    font-size: 12px;
    color: #185fa5;
    background: #e6f1fb;
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: var(--HeadingFont) !important;
}

/* Card detail rows */
.ab-card-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    font-family: var(--HeadingFont) !important;
}

.ab-card-detail-cell {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid #f3f4f6;
    border-right: 1px solid #f3f4f6;
    font-family: var(--HeadingFont) !important;
}

    .ab-card-detail-cell:nth-child(even) {
        border-right: none;
    }

    .ab-card-detail-cell:nth-last-child(-n+2) {
        border-bottom: none;
    }

.ab-card-detail-label {
    font-size: 12px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 2px;
    font-family: var(--HeadingFont) !important;
}

.ab-card-detail-val {
    font-size:14px;
    color: #374151;
    overflow: hidden;
    font-family: var(--HeadingFont) !important;
    text-overflow: ellipsis;
}

/* Card action footer */
.ab-card-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f9fafb;
    font-family: var(--HeadingFont) !important;
    border-top: 1px solid #f3f4f6;
}

.ab-footer-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    cursor: pointer;
    font-size: 12px;
    color: #374151;
    transition: all 0.15s;
    font-family: var(--HeadingFont) !important;
}

    .ab-footer-btn:hover {
        background: #f3f4f6;
        border-color: #d1d5db;
    }

    .ab-footer-btn.load {
        color: #1976d2;
        border-color: #bfdbfe;
        background: #eff6ff;
        flex: 1;
        font-family: var(--HeadingFont) !important;
        justify-content: center;
    }

        .ab-footer-btn.load:hover {
            background: #dbeafe;
            border-color: #93c5fd;
        }

    .ab-footer-btn.edit:hover {
        background: #eff6ff;
        border-color: #93c5fd;
        color: #1976d2;
    }

    .ab-footer-btn.del {
        color: #6b7280;
        font-family: var(--HeadingFont) !important;
    }

        .ab-footer-btn.del:hover {
            background: #fff1f1;
            border-color: #fca5a5;
            color: #dc2626;
        }

.ab-saved-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2.5rem;
    color: #9ca3af;
    font-size: 13px;
    font-family: var(--HeadingFont) !important;
}

/* ── Tabs ─────────────────────────────────────────────────────── */
.bm-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 1.5rem;
    font-family: var(--HeadingFont) !important;
}

.bm-tab {
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    background: none;
    border: none;
    border-bottom: 2.5px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
    font-family: var(--HeadingFont);
}

    .bm-tab.active {
        color: #1976d2;
        border-bottom-color: #1976d2;
    }

    .bm-tab:hover:not(.active) {
        color: #374151;
    }

/* ── Add-bank section ─────────────────────────────────────────── */
.bm-add-section {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 1.5rem;
    align-items: start;
    font-family: var(--HeadingFont) !important;
}

@media (max-width: 900px) {
    .bm-add-section {
        grid-template-columns: 1fr;
    }
}

.bm-add-form-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    font-family: var(--HeadingFont) !important;
}

.bm-info-bar {
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 1.1rem 1.2rem;
    margin-bottom: 1.25rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-family: var(--HeadingFont) !important;
}

.bm-info-bar-icon {
    width: 36px;
    height: 36px;
    background: #dbeafe;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.bm-info-bar-text {
    flex: 1;
    font-family: var(--HeadingFont) !important;
}

.bm-info-bar-title {
    font-size: 13px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 3px;
    font-family: var(--HeadingFont) !important;
}

.bm-info-bar-desc {
    font-size: 12px;
    color: #3b82f6;
    line-height: 1.5;
    font-family: var(--HeadingFont) !important;
}

.bm-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.bm-field-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-family: var(--HeadingFont) !important;
}

.bm-field-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    font-family: var(--HeadingFont) !important;
}

.bm-required {
    color: #e24b4a;
    margin-left: 2px;
    font-family: var(--HeadingFont) !important;
}

/* ── Saved banks sidebar ──────────────────────────────────────── */
.bm-saved-panel {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.25rem;
    position: sticky;
    font-family: var(--HeadingFont) !important;
    top: 1rem;
}

.bm-saved-panel-title {
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--HeadingFont) !important;
}

    .bm-saved-panel-title .count-badge {
        background: #e6f1fb;
        color: #185fa5;
        font-size: 11px;
        font-weight: 700;
        padding: 2px 8px;
        border-radius: 20px;
        font-family: var(--HeadingFont) !important;
    }

.bm-saved-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    margin-bottom: 0.6rem;
    background: #fafafa;
    gap: 0.5rem;
    font-family: var(--HeadingFont) !important;
}

.bm-saved-item-info {
    flex: 1;
    min-width: 0;
    font-family: var(--HeadingFont) !important;
}

.bm-saved-item-name {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--HeadingFont) !important;
}

.bm-saved-item-num {
    font-size: 11px;
    color: #6b7280;
    letter-spacing: 1px;
    margin-top: 2px;
    font-family: var(--HeadingFont) !important;
}

.bm-saved-item-actions {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
    font-family: var(--HeadingFont) !important;
}

.bm-mini-btn {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    border: 1px solid #e5e7eb;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.15s;
    font-family: var(--HeadingFont) !important;
}

    .bm-mini-btn:hover {
        background: #f3f4f6;
        color: #1f2937;
    }

    .bm-mini-btn.del:hover {
        background: #fff1f1;
        border-color: #fca5a5;
        color: #dc2626;
    }

    .bm-mini-btn.edit-btn:hover {
        background: #eff6ff;
        border-color: #93c5fd;
        color: #1976d2;
    }

.bm-empty-saved {
    text-align: center;
    padding: 1.5rem 1rem;
    color: #9ca3af;
    font-size: 12px;
    font-family: var(--HeadingFont) !important;
}

/* ── Cards grid ───────────────────────────────────────────────── */
.bm-section-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-family: var(--HeadingFont) !important;
    margin-bottom: 1rem;
}

/* ── Quick Load Modal ─────────────────────────────────────────── */
.ql-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.48);
    z-index: 9200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.ql-modal {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    font-family: var(--HeadingFont) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.ql-modal-header {
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
    border-radius: 20px 20px 0 0;
    padding: 1.5rem;
    position: relative;
    font-family: var(--HeadingFont) !important;
}

.ql-modal-title {
    font-size: 18px;
    color: #fff;
    margin-bottom: 4px;
    font-family: var(--HeadingFont) !important;
}

.ql-modal-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    font-family: var(--HeadingFont) !important;
}

.ql-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff !important;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--HeadingFont) !important;
}

.ql-modal-body {
    padding: 1.5rem;
    font-family: var(--HeadingFont) !important;
}

.ql-field-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-family: var(--HeadingFont) !important;
}

    .ql-field-row:last-child {
        border-bottom: none;
    }

.ql-field-key {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--HeadingFont) !important;
}

.ql-field-val {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    text-align: right;
    font-family: var(--HeadingFont) !important;
    max-width: 60%;
}

.ql-amount-row {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    font-family: var(--HeadingFont) !important;
    justify-content: space-between;
}

.ql-amount-label {
    font-size: 12px;
    font-weight: 600;
    color: #16a34a;
    font-family: var(--HeadingFont) !important;
}

.ql-amount-val {
    font-size: 22px;
    font-weight: 800;
    color: #15803d;
    font-family: var(--HeadingFont) !important;
}

.ql-notice {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 14px;
    color: #92400e;
    font-family: var(--HeadingFont) !important;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.ql-btn-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    font-family: var(--HeadingFont) !important;
}

.ql-cancel-btn {
    flex: 1;
    padding: 0.75rem;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    font-family: var(--HeadingFont) !important;
    transition: background 0.15s;
}

    .ql-cancel-btn:hover {
        background: #f3f4f6;
    }

.ql-confirm-btn {
    flex: 2;
    padding: 0.75rem;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    font-size: 14px;
    color: #fff !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: var(--HeadingFont) !important;
    transition: opacity 0.15s;
}

    .ql-confirm-btn:hover {
        opacity: 0.9;
    }

    .ql-confirm-btn:disabled {
        opacity: 0.55;
        cursor: not-allowed;
    }

/* ── Edit Bank Modal ──────────────────────────────────────────── */
.bm-edit-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-family: var(--HeadingFont) !important;
}

.bm-edit-modal {
    background: #fff;
    border-radius: 16px;
    border: 0.5px solid #e5e7eb;
    padding: 1.5rem;
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
}

.bm-edit-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    font-family: var(--HeadingFont) !important;
}

.bm-edit-modal-close {
    background: #f3f4f6;
    border: 0.5px solid #e5e7eb;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 16px;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--HeadingFont) !important;
}




.ql-modal-body .bank-card-wrapper {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.9rem 1rem;
    margin-bottom: 1rem;
    font-family: var(--HeadingFont) !important;
}

/* Header */
.ql-modal-body .bank-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
    font-family: var(--HeadingFont) !important;
}

.ql-modal-body .bank-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1565c0, #0d47a1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--HeadingFont) !important;
    font-size: 15px;
    flex-shrink: 0;
}

.ql-modal-body .bank-info {
    flex: 1;
    min-width: 0;
}

.ql-modal-body .bank-name {
    font-size: 14px;
    font-family: var(--HeadingFont) !important;
    color: #1f2937;
}

.ql-modal-body .bank-account {
    font-size: 12px;
    color: #6b7280;
    font-family: var(--HeadingFont) !important;
}

.ql-modal-body .bank-badge {
    font-size: 10.5px;
    font-family: var(--HeadingFont) !important;
    color: #185fa5;
    background: #e6f1fb;
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Section title */
.ql-modal-body .bank-section-title {
    font-size: 14px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-family: var(--HeadingFont) !important;
    margin-bottom: 0.6rem;
}

/* Grid */
.ql-modal-body .bank-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    font-family: var(--HeadingFont) !important;
}

/* Fields */
.ql-modal-body .bank-field {
}

.ql-modal-body .bank-label {
    font-size:13px;
    color: #9ca3af;
    font-family: var(--HeadingFont) !important;
    text-transform: uppercase;
}

.ql-modal-body .bank-value {
    font-size: 13px;
    color: #1f2937;
    font-weight: 500;
    font-family: var(--HeadingFont) !important;
}

    .ql-modal-body .bank-value.highlight {
        color: #1976d2;
        font-family: var(--HeadingFont) !important;
    }

.info-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.9rem 1rem;
    margin-bottom: 1rem;
    font-family: var(--HeadingFont) !important;
}

.info-card-section-title {
    font-size: 15px;
    color: #9ca3af;
    text-transform: uppercase;
    font-family: var(--HeadingFont) !important;
    letter-spacing: 0.07em;
    margin-bottom: 0.6rem;
}

.info-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
}

.info-card-label {
    font-size: 13px;
    font-family: var(--HeadingFont) !important;
    color: #9ca3af;
    text-transform: uppercase;
}

.info-card-value {
    font-size: 14px;
    font-family: var(--HeadingFont) !important;
    color: #1f2937;
}



.info-card-value-status {
    font-size: 14px;
    color: #1976d2;
    font-family: var(--HeadingFont) !important;
    font-weight: 600;
}


/***************** corresponding bank css ***************/



.cb-accordion-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-family: var(--HeadingFont) !important;
    margin-top: 0.75rem;
}

.cb-acc-item {
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    font-family: var(--HeadingFont) !important;
    transition: border-color 0.2s;
}

    .cb-acc-item.open {
        border-color: #185fa5;
    }

    .cb-acc-item.saved {
        border-color: #0F6E56;
        font-family: var(--HeadingFont) !important;
    }

    .cb-acc-item.has-errors {
        border-color: #ef4444;
        font-family: var(--HeadingFont) !important;
    }

.cb-acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.1rem;
    cursor: pointer;
    user-select: none;
    font-family: var(--HeadingFont) !important;
    gap: 0.75rem;
    background: #fff;
    transition: background 0.15s;
}

    .cb-acc-header:hover {
        background: #f9fafb;
    }

.cb-acc-item.open .cb-acc-header {
    background: #eff6ff;
    border-bottom: 1.5px solid #bfdbfe;
    font-family: var(--HeadingFont) !important;
}

.cb-acc-item.saved .cb-acc-header {
    background: #f0fdf4;
    border-bottom: 1.5px solid #bbf7d0;
    font-family: var(--HeadingFont) !important;
}

.cb-acc-item.has-errors .cb-acc-header {
    background: #fef2f2;
    border-bottom: 1.5px solid #fecaca;
    font-family: var(--HeadingFont) !important;
}

.cb-acc-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    font-family: var(--HeadingFont) !important;
    min-width: 0;
}

.cb-acc-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #374151;
    font-size: 12px;
    display: flex;
    font-family: var(--HeadingFont) !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}

.cb-acc-item.open .cb-acc-number {
    background: #1976d2;
    color: #fff;
    font-family: var(--HeadingFont) !important;
}

.cb-acc-item.saved .cb-acc-number {
    background: #0F6E56;
    color: #fff;
    font-family: var(--HeadingFont) !important;
}

.cb-acc-item.has-errors .cb-acc-number {
    background: #ef4444;
    color: #fff;
    font-family: var(--HeadingFont) !important;
}

.cb-acc-title {
    font-size: 16px;
    color: #1f2937;
    font-family: var(--HeadingFont) !important;
}

.cb-acc-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-top: 1px;
    font-family: var(--HeadingFont) !important;
}

.cb-acc-title-wrap {
    display: flex;
    flex-direction: column;
    min-width: 0;
    font-family: var(--HeadingFont) !important;
}

.cb-acc-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--HeadingFont) !important;
    flex-shrink: 0;
}

.cb-badge-saved {
    font-size: 11px;
    font-weight: 700;
    background: #dcfce7;
    color: #0F6E56;
    border-radius: 20px;
    padding: 2px 10px;
    font-family: var(--HeadingFont) !important;
}

.cb-badge-error {
    font-size: 11px;
    font-weight: 700;
    background: #fee2e2;
    color: #b91c1c;
    border-radius: 20px;
    padding: 2px 10px;
    font-family: var(--HeadingFont) !important;
}

.cb-badge-draft {
    font-size: 11px;
    background: #e5e7eb;
    color: #6b7280;
    border-radius: 20px;
    font-family: var(--HeadingFont) !important;
    padding: 2px 10px;
}

.cb-acc-chevron {
    color: #9ca3af;
    transition: transform 0.22s ease, color 0.2s;
    flex-shrink: 0;
}

.cb-acc-item.open .cb-acc-chevron {
    transform: rotate(180deg);
    color: #185fa5;
}

.cb-acc-body {
    padding: 1.1rem 1.25rem 1.25rem;
    background: #fafbff;
    animation: cbFadeIn 0.18s ease;
    font-family: var(--HeadingFont) !important;
}

@keyframes cbFadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cb-acc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding: 0.7rem 1rem;
    background: #eff6ff;
    border-top: 2px solid #185fa5;
    border-radius: 0 0 8px 8px;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-family: var(--HeadingFont) !important;
}

.cb-save-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    padding: 0 1.1rem;
    border-radius: 8px;
    border: 1.5px solid #185fa5;
    background: #fff;
    color: #185fa5 !important;
    cursor: pointer;
    transition: background 0.15s;
    font-family: var(--HeadingFont) !important;
}

    .cb-save-btn:hover {
        background: #eff6ff;
    }

    .cb-save-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.cb-add-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    padding: 0 1.1rem;
    border-radius: 8px;
    border: none;
    background: #185fa5;
    color: #fff !important;
    font-family: var(--HeadingFont) !important;
    cursor: pointer;
    transition: background 0.15s;
}

    .cb-add-btn:hover {
        background: #1565c0;
    }

.cb-remove-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 30px;
    padding: 0 0.85rem;
    border-radius: 7px;
    border: 1.5px solid #f09595;
    background: #fcebeb;
    color: #a32d2d;
    font-family: var(--HeadingFont) !important;
    cursor: pointer;
    transition: background 0.15s;
    flex-shrink: 0;
}

    .cb-remove-btn:hover {
        background: #fee2e2;
    }

.cb-add-first-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 38px;
    padding: 0 1.25rem;
    border-radius: 8px;
    font-family: var(--HeadingFont) !important;
    border: none;
    background: #1976d2;
    color: #fff !important;
    cursor: pointer;
}

 
/*********** load request fee structure *************/

/* ── Fee Breakdown wrapper ── */
.fee-breakdown-outer {
    margin-top: 1.25rem;
    animation: fee-fadein 0.35s ease both;
    width: 100%;
    font-family: var(--HeadingFont) !important;
}

@@keyframes fee-fadein {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── header pill ── */
.fee-header-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #fff8ed 0%, #fff3dc 100%);
    border: 1px solid #f0c060;
    border-radius: 24px;
    padding: 5px 14px 5px 10px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #b45309;
    font-family: var(--HeadingFont) !important;
}

    .fee-header-pill svg {
        flex-shrink: 0;
    }

/* ── main card ── */
.fee-card {
    background: linear-gradient(160deg, #fffcf5 0%, #fff9ec 100%);
    border: 1.5px solid #f0c060;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px 0 rgba(180,120,0,0.07);
    font-family: var(--HeadingFont) !important;
}

/* ── fee group (service / admin / super) ── */
.fee-group {
    padding: 0;
    font-family: var(--HeadingFont) !important;
}

    .fee-group + .fee-group {
        border-top: 1px solid #f5e0a0;
    }

.fee-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 18px;
    font-size: 13.5px;
    color: #3d2800;
    font-family: var(--HeadingFont) !important;
    transition: background 0.15s;
}

    .fee-row:hover {
        background: rgba(240,192,96,0.10);
    }

.fee-row-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    font-size: 14px !important;
    font-family: var(--HeadingFont) !important;
}

.fee-pct-badge {
    font-size: 12px !important;
    font-weight: 700;
    background: #fef3c7;
    color: #92400e !important;
    border: 1px solid #fcd34d;
    border-radius: 20px;
    padding: 1px 7px;
    font-family: var(--HeadingFont) !important;
    letter-spacing: 0.04em;
}

.fee-row-value {
    font-weight: 600;
    color: #92400e !important;
    font-variant-numeric: tabular-nums;
    font-size: 14px !important;
    font-family: var(--HeadingFont) !important;
}
/* ── subtotal row inside group ── */
.fee-subtotal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 18px 10px;
    background: rgba(240,192,96,0.13);
    border-top: 1px dashed #f0c060;
    font-size: 12.5px;
    font-style: italic;
    color: #b45309;
    font-weight: 600;
    font-family: var(--HeadingFont) !important;
}

    .fee-subtotal-row span {
        font-size: 13px !important;
        font-style: italic;
        color: #b45309 !important;
    }
    /* ── total row ── */
    .fee-total-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 18px;
        background: linear-gradient(90deg, #fef3c7 0%, #fde68a 100%);
        border-top: 2px solid #f0c060;
        font-family: var(--HeadingFont) !important;
    }

.fee-total-label {
    font-size: 14px !important;
    font-weight: 700;
    color: #78350f !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--HeadingFont) !important;
}

.fee-total-value {
    font-size: 15px !important;
    font-weight: 800;
    color: #b45309 !important;
    font-variant-numeric: tabular-nums;
    font-family: var(--HeadingFont) !important;
}

    /* negative = highlight red-amber */
    .fee-total-value.is-negative {
        color: #dc2626;
    }

/* ── zero-state skeleton ── */
.fee-zero-state {
    padding: 22px 18px;
    text-align: center;
    font-size: 13px;
    color: #b45309;
    opacity: 0.65;
    font-family: var(--HeadingFont) !important;
}

/* ── divider icon in subtotal ── */
.fee-sub-icon {
    margin-right: 4px;
}

/* ── amount basis note ── */
.fee-basis-note {
    font-size: 14px;
    color: #78350f;
    opacity: 0.7;
    padding: 6px 18px 10px;
    font-family: var(--HeadingFont) !important;
    font-style: italic;
}


/* ── Load Result Banner ─────────────────────────────────────── */
.lr-banner {
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid #fbbf24;
    font-family: var(--HeadingFont) !important;
}

    .lr-banner.approved {
        border-color: #34d399;
    }

.lr-banner-top {
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    background: #fffbeb;
    border-bottom: 1px solid #fde68a;
    font-family: var(--HeadingFont) !important;
}

    .lr-banner-top.approved {
        background: #ecfdf5;
        border-bottom-color: #a7f3d0;
    }

.lr-banner-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fef3c7;
}

    .lr-banner-icon.approved {
        background: #d1fae5;
    }

.lr-banner-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
    font-family: var(--HeadingFont) !important;
    color: #92400e;
}

    .lr-banner-title.approved {
        color: #065f46;
    }

.lr-banner-subtitle {
    font-size: 13px;
    font-family: var(--HeadingFont) !important;
    color: #b45309;
}

    .lr-banner-subtitle.approved {
        color: #059669;
    }

.lr-dismiss-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 3px;
    font-size: 18px;
    line-height: 1;
    font-family: var(--HeadingFont) !important;
    flex-shrink: 0;
    color: #b45309;
}

    .lr-dismiss-btn.approved {
        color: #059669;
    }

.lr-banner-body {
    background: #fff;
    padding: 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    font-family: var(--HeadingFont) !important;
}

.lr-info-row {
    display: flex;
    gap: 0.75rem;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-family: var(--HeadingFont) !important;
    align-items: flex-start;
}

    .lr-info-row.threshold {
        background: #fffbeb;
        border: 1px solid #fde68a;
        font-family: var(--HeadingFont) !important;
    }

    .lr-info-row.standard {
        background: #f8fafc;
        font-family: var(--HeadingFont) !important;
        border: 1px solid #e2e8f0;
    }

    .lr-info-row.approved {
        background: #ecfdf5;
        font-family: var(--HeadingFont) !important;
        border: 1px solid #a7f3d0;
    }

    .lr-info-row svg {
        flex-shrink: 0;
        margin-top: 1px;
    }

.lr-info-text {
    font-size: 14px;
    font-family: var(--HeadingFont) !important;
    line-height: 1.6;
}

    .lr-info-text.threshold {
        color: #92400e;
    }

    .lr-info-text.standard {
        color: #475569;
    }

    .lr-info-text.approved {
        color: #065f46;
    }

.lr-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    font-family: var(--HeadingFont) !important;
}

.lr-mini-card {
    background: #f9fafb;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-family: var(--HeadingFont) !important;
    border: 1px solid #f1f5f9;
}

.lr-mini-card-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
    font-family: var(--HeadingFont) !important;
    margin-bottom: 6px;
}

.lr-mini-card-text {
    font-size: 15px;
    color: #374151;
    font-family: var(--HeadingFont) !important;
    line-height: 1.6;
}

.lr-top-inner {
    display: flex;
    font-family: var(--HeadingFont) !important;
    align-items: flex-start;
    gap: 1rem;
}