    /* ============================================
       PAYOUT CARD (glassmorphism)
       ============================================ */
    .payout-card {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: 24px;
      padding: 40px 36px;
      max-width: 880px;
      width: 100%;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .payout-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 28px;
    }

    .payout-card-title {
      font-size: 20px;
      font-weight: 700;
      color: #1c132c;
      letter-spacing: -0.3px;
    }

    .payout-card-balance {
      font-size: 14px;
      font-weight: 600;
      font-family: 'JetBrains Mono', monospace;
      color: #9ca3af;
    }

    .payout-card-balance span {
      color: #1c132c;
      font-weight: 700;
    }

    .payout-balance-breakdown {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
      padding: 0 4px;
    }

    .payout-bal-chip {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      background: #f8f6ff;
      border: 1px solid rgba(159, 114, 255, 0.15);
      border-radius: 20px;
      font-size: 12px;
      font-family: 'JetBrains Mono', monospace;
      color: #1c132c;
      font-weight: 600;
    }

    .payout-bal-chip img {
      width: 16px;
      height: 16px;
      border-radius: 50%;
    }

    .payout-bal-chip .bal-chain {
      color: #9ca3af;
      font-weight: 500;
    }

    /* ============================================
       RECIPIENT LIST
       ============================================ */
    .recipient-list {
      border: 1.5px solid rgba(0, 0, 0, 0.08);
      border-radius: 14px;
      overflow: visible;
      background: rgba(255, 255, 255, 0.5);
    }

    .recipient-list > .recipient-row:first-child {
      border-radius: 14px 14px 0 0;
    }

    .recipient-list > .recipient-row:last-child {
      border-radius: 0 0 14px 14px;
    }

    .recipient-list > .recipient-row:only-child {
      border-radius: 14px;
    }

    .recipient-row {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 0 4px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.04);
      transition: background 0.12s;
      position: relative;
    }

    .recipient-row:last-child { border-bottom: none; }
    .recipient-row:hover { background: rgba(159, 114, 255, 0.02); }

    .recipient-num {
      width: 32px;
      text-align: center;
      font-size: 12px;
      font-weight: 600;
      color: #b0b4bd;
      flex-shrink: 0;
      font-family: 'JetBrains Mono', monospace;
    }

    .recipient-row input {
      border: none;
      background: transparent;
      outline: none;
      font-size: 13px;
      font-family: 'JetBrains Mono', monospace;
      color: #1c132c;
      padding: 12px 6px;
      min-width: 0;
    }

    .recipient-row input::placeholder { color: #c5c9d2; }

    .recipient-row input:focus {
      background: rgba(159, 114, 255, 0.03);
    }

    .recipient-address {
      flex: 3;
      min-width: 0;
    }

    .recipient-amount {
      width: 90px;
      text-align: right;
      flex-shrink: 0;
      font-weight: 600;
    }

    /* Mini dropdowns for token & chain */
    .mini-dropdown-wrapper {
      position: relative;
      flex-shrink: 0;
    }

    .mini-dropdown-wrapper.token-dd { width: 80px; }
    .mini-dropdown-wrapper.chain-dd { width: 110px; }

    .mini-select {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 8px 8px;
      width: 100%;
      cursor: pointer;
      font-size: 12px;
      font-weight: 600;
      font-family: 'JetBrains Mono', monospace;
      color: #6b7280;
      border-radius: 8px;
      transition: background 0.12s, color 0.12s;
      white-space: nowrap;
      overflow: hidden;
      user-select: none;
    }

    .mini-select .mini-label {
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .mini-select:hover { background: rgba(159, 114, 255, 0.06); color: #1c132c; }
    .mini-select.open { background: rgba(159, 114, 255, 0.08); color: #1c132c; }

    .mini-select img {
      width: 16px;
      height: 16px;
      border-radius: 50%;
    }

    .mini-select .chevron {
      font-size: 8px;
      color: #b0b4bd;
      transition: transform 0.2s;
    }

    .mini-select.open .chevron { transform: rotate(180deg); }

    .mini-dropdown-menu {
      display: none;
      position: absolute;
      top: calc(100% + 4px);
      left: 50%;
      transform: translateX(-50%);
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1.5px solid rgba(0, 0, 0, 0.08);
      border-radius: 12px;
      padding: 4px;
      z-index: 500;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
      animation: miniDropdownIn 0.15s ease;
      min-width: 120px;
    }

    .mini-dropdown-menu.open { display: block; }

    @keyframes miniDropdownIn {
      from { opacity: 0; transform: translateX(-50%) translateY(-4px); }
      to { opacity: 1; transform: translateX(-50%) translateY(0); }
    }

    .mini-dropdown-option {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 10px;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.12s;
      font-size: 13px;
      font-weight: 500;
      font-family: 'JetBrains Mono', monospace;
      color: #1c132c;
      white-space: nowrap;
    }

    .mini-dropdown-option:hover { background: rgba(159, 114, 255, 0.06); }
    .mini-dropdown-option.selected { background: rgba(159, 114, 255, 0.08); font-weight: 600; }

    .mini-dropdown-option img {
      width: 18px;
      height: 18px;
      border-radius: 50%;
    }

    .delete-btn {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      background: transparent;
      color: #c5c9d2;
      font-size: 14px;
      cursor: pointer;
      border-radius: 8px;
      transition: background 0.12s, color 0.12s;
      flex-shrink: 0;
      margin-right: 4px;
      opacity: 0;
    }

    .recipient-row:hover .delete-btn { opacity: 1; }
    .delete-btn:hover { background: rgba(239, 68, 68, 0.08); color: #ef4444; }

    /* Add recipient & Import CSV */
    .recipient-actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 10px;
    }

    .btn-add-recipient {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 14px;
      border-radius: 10px;
      border: none;
      background: transparent;
      color: #9F72FF;
      font-size: 13px;
      font-weight: 600;
      font-family: 'JetBrains Mono', monospace;
      cursor: pointer;
      transition: background 0.15s;
    }

    .btn-add-recipient:hover { background: rgba(159, 114, 255, 0.06); }

    .btn-import-csv {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 14px;
      border-radius: 10px;
      border: 1.5px solid rgba(159, 114, 255, 0.2);
      background: transparent;
      color: #9F72FF;
      font-size: 12px;
      font-weight: 600;
      font-family: 'JetBrains Mono', monospace;
      cursor: pointer;
      transition: background 0.15s, border-color 0.15s;
    }

    .btn-import-csv:hover { background: rgba(159, 114, 255, 0.06); border-color: rgba(159, 114, 255, 0.35); }

    /* ============================================
       PAYOUT SUMMARY
       ============================================ */
    .payout-summary {
      border-top: 1.5px solid rgba(0, 0, 0, 0.06);
      padding-top: 16px;
      margin-top: 8px;
      font-size: 13px;
      font-weight: 500;
      color: #9ca3af;
    }

    .payout-summary span { color: #1c132c; font-weight: 600; }

    /* ============================================
       PAYOUT BUTTONS (purple accent)
       ============================================ */
    .btn-send {
      width: 100%;
      padding: 16px 24px;
      border-radius: 14px;
      background: linear-gradient(135deg, #9F72FF, #b99aff);
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      font-family: 'JetBrains Mono', monospace;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: box-shadow 0.2s, transform 0.2s;
      margin-top: 20px;
    }

    .btn-send:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(159, 114, 255, 0.35); }
    .btn-send:active { transform: translateY(0); }
    .btn-send svg { width: 16px; height: 16px; }

    .btn-secondary {
      width: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 24px;
      border-radius: 14px;
      font-size: 14px;
      font-weight: 600;
      font-family: 'JetBrains Mono', monospace;
      color: #6b7280;
      background: rgba(243, 244, 246, 0.8);
      border: 1.5px solid rgba(0, 0, 0, 0.08);
      cursor: pointer;
      margin-top: 8px;
      transition: background 0.15s, transform 0.2s, color 0.15s;
    }

    .btn-secondary:hover { background: rgba(229, 231, 235, 0.9); transform: translateY(-1px); color: #1c132c; }
    .btn-secondary:active { transform: translateY(0); }
    .btn-secondary svg { width: 16px; height: 16px; flex-shrink: 0; }

    /* ============================================
       REVIEW TABLE
       ============================================ */
    .review-table {
      border: 1.5px solid rgba(0, 0, 0, 0.06);
      border-radius: 14px;
      overflow: hidden;
    }

    .review-header {
      display: flex;
      align-items: center;
      padding: 10px 16px;
      background: rgba(248, 249, 252, 0.8);
      font-size: 11px;
      font-weight: 600;
      color: #b0b4bd;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .review-header .col-num { width: 32px; }
    .review-header .col-addr { flex: 2; }
    .review-header .col-amount { width: 90px; text-align: right; }
    .review-header .col-delivery { flex: 1; text-align: right; }

    .review-row {
      display: flex;
      align-items: center;
      padding: 12px 16px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.03);
      font-size: 13px;
      transition: background 0.12s;
    }

    .review-row:last-child { border-bottom: none; }
    .review-row:nth-child(even) { background: rgba(248, 249, 252, 0.5); }

    .review-row .col-num {
      width: 32px;
      font-weight: 600;
      color: #b0b4bd;
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
    }

    .review-row .col-addr {
      flex: 2;
      font-family: 'JetBrains Mono', monospace;
      color: #1c132c;
      font-weight: 500;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      min-width: 0;
    }

    .review-row .col-amount {
      width: 90px;
      text-align: right;
      font-family: 'JetBrains Mono', monospace;
      font-weight: 700;
      color: #1c132c;
    }

    .review-row .col-delivery {
      flex: 1;
      text-align: right;
      font-size: 12px;
      color: #6b7280;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 4px;
    }

    .review-row .col-delivery img {
      width: 14px;
      height: 14px;
      border-radius: 50%;
    }

    /* Review totals */
    .review-totals {
      border-top: 1.5px solid rgba(0, 0, 0, 0.06);
      padding-top: 16px;
      margin-top: 20px;
      font-size: 14px;
      color: #6b7280;
      line-height: 2;
    }

    .review-totals .total-amount {
      font-size: 18px;
      font-weight: 800;
      font-family: 'JetBrains Mono', monospace;
      color: #1c132c;
      letter-spacing: -0.5px;
    }

    .review-totals .total-label {
      font-size: 13px;
      color: #9ca3af;
    }

    .review-totals .total-meta {
      font-size: 13px;
      color: #9ca3af;
      margin-top: 4px;
    }

    .review-totals .total-memo {
      font-size: 13px;
      color: #6b7280;
      font-style: italic;
      margin-top: 4px;
    }

    /* ============================================
       PAYOUT RESULT CARD
       ============================================ */
    .result-card {
      display: none;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: 24px;
      padding: 40px 36px;
      max-width: 880px;
      width: 100%;
      text-align: center;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
      animation: fadeInUp 0.35s ease;
    }

    .result-check {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: linear-gradient(135deg, #22c55e, #4ade80);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      font-size: 24px;
      color: #fff;
    }

    .result-title {
      font-size: 22px;
      font-weight: 700;
      color: #1c132c;
      margin-bottom: 24px;
      letter-spacing: -0.3px;
    }

    .result-summary-box {
      padding: 20px;
      background: rgba(248, 249, 252, 0.8);
      border: 1px solid rgba(0, 0, 0, 0.04);
      border-radius: 16px;
      margin-bottom: 20px;
    }

    .result-total-amount {
      font-size: 28px;
      font-weight: 800;
      font-family: 'JetBrains Mono', monospace;
      color: #1c132c;
      letter-spacing: -1px;
    }

    .result-total-label {
      font-size: 14px;
      color: #9ca3af;
      margin-top: 2px;
    }

    .result-total-meta {
      font-size: 13px;
      color: #9ca3af;
      margin-top: 6px;
    }

    /* Per-recipient result list */
    .result-list {
      border: 1.5px solid rgba(0, 0, 0, 0.06);
      border-radius: 14px;
      overflow: hidden;
      margin-bottom: 20px;
      text-align: left;
    }

    .result-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.03);
      font-size: 13px;
    }

    .result-row:last-child { border-bottom: none; }

    .result-row-check {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: linear-gradient(135deg, #22c55e, #4ade80);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: #fff;
      flex-shrink: 0;
    }

    .result-row-addr {
      font-family: 'JetBrains Mono', monospace;
      color: #1c132c;
      font-weight: 500;
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .result-row-amount {
      font-family: 'JetBrains Mono', monospace;
      font-weight: 700;
      color: #1c132c;
      margin-left: auto;
      flex-shrink: 0;
    }

    .result-row-delivery {
      font-size: 12px;
      color: #6b7280;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .result-row-delivery img {
      width: 14px;
      height: 14px;
      border-radius: 50%;
    }

    .result-row-explorer {
      color: #9F72FF;
      text-decoration: none;
      font-size: 14px;
      flex-shrink: 0;
      transition: opacity 0.15s;
    }

    .result-row-explorer:hover { opacity: 0.7; }

    /* Result action buttons */
    .result-actions {
      display: flex;
      gap: 8px;
      margin-bottom: 8px;
    }

    .btn-receipt {
      flex: 1;
      padding: 14px 18px;
      border-radius: 14px;
      background: linear-gradient(135deg, #9F72FF, #b99aff);
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      font-family: 'JetBrains Mono', monospace;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .btn-receipt:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(159, 114, 255, 0.35); }
    .btn-receipt:active { transform: translateY(0); }

    .btn-share-result {
      flex: 1;
      padding: 14px 18px;
      border-radius: 14px;
      background: transparent;
      color: #6b7280;
      font-size: 14px;
      font-weight: 600;
      font-family: 'JetBrains Mono', monospace;
      border: 1.5px solid rgba(0, 0, 0, 0.08);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background 0.15s, transform 0.2s;
    }

    .btn-share-result:hover { background: rgba(243, 244, 246, 0.8); transform: translateY(-1px); }
    .btn-share-result:active { transform: translateY(0); }


    /* ============================================
       PAYOUT BALANCE DETAIL POPUP
       ============================================ */
    .payout-balance-detail-overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,0.25);
      z-index: 9990;
    }
    .payout-balance-detail {
      position: fixed; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      background: #fff; border-radius: 14px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.2);
      z-index: 9991; width: 340px; max-height: 420px;
      overflow: hidden;
    }
    .payout-detail-header {
      display: flex; justify-content: space-between; align-items: center;
      padding: 14px 18px; font-weight: 700; font-size: 14px;
      border-bottom: 1px solid #f0f0f5;
    }
    .payout-detail-close {
      cursor: pointer; font-size: 20px; color: #9ca3af; line-height: 1;
    }
    .payout-detail-close:hover { color: #111; }
    .payout-detail-body {
      padding: 8px 12px; max-height: 340px; overflow-y: auto;
    }
    .payout-detail-row {
      display: flex; align-items: center; gap: 10px;
      padding: 8px 6px; border-bottom: 1px solid #f8f8fc;
      font-size: 13px;
    }
    .payout-detail-row:last-child { border-bottom: none; }
    .payout-detail-row img { width: 20px; height: 20px; }
    .payout-detail-amount { font-weight: 600; }
    .payout-detail-label { color: #9ca3af; font-size: 11px; margin-left: auto; }

