/* ===== Reset & Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: #0a0a0a;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 20px;
}

/* ===== Phone Frame ===== */
.phone-frame {
  width: 390px;
  min-height: 844px;
  max-height: 900px;
  background: #111;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  border: 2px solid #222;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ===== Status Bar ===== */
.status-bar {
  display: flex;
  justify-content: space-between;
  padding: 8px 24px;
  font-size: 12px;
  color: #aaa;
  background: #111;
}

/* ===== Screens ===== */
.screen { display: none; height: calc(100% - 30px); overflow-y: auto; flex-direction: column; }
.screen.active { display: flex; }

.screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #111;
  position: sticky;
  top: 0;
  z-index: 10;
}
.screen-header h2 { font-size: 17px; font-weight: 600; }
.back-btn {
  background: none; border: none; color: #3DF57A; font-size: 22px; cursor: pointer;
  padding: 4px 8px;
}
.screen-body { padding: 16px; flex: 1; overflow-y: auto; }

/* ===== Home Screen ===== */
.nav-top {
  display: flex; align-items: center; padding: 8px 16px; gap: 8px;
}
.icon-btn { font-size: 20px; cursor: pointer; color: #888; }
.search-bar {
  flex: 1; background: #1a1a1a; border-radius: 10px; padding: 8px 12px;
  color: #666; font-size: 14px;
}
.wallet-header { text-align: center; padding: 16px; }
.wallet-name { color: #aaa; font-size: 14px; margin-bottom: 4px; }
.wallet-balance { font-size: 36px; font-weight: 700; }
.wallet-change { color: #888; font-size: 13px; }

.action-buttons {
  display: flex; justify-content: center; gap: 16px; padding: 16px;
}
.action-btn {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  cursor: pointer;
}
.action-icon {
  width: 52px; height: 52px; border-radius: 14px; background: #1a1a1a;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  transition: background 0.2s;
}
.action-btn:hover .action-icon { background: #252525; }
.trade-icon { background: #3DF57A !important; color: #000 !important; font-size: 18px; }
.swap-icon { background: #3DF57A !important; color: #000 !important; }
.action-btn span { font-size: 12px; color: #aaa; }

/* ===== Section Tabs ===== */
.section-tabs {
  display: flex; gap: 20px; padding: 16px 16px 0;
  border-bottom: 1px solid #1a1a1a;
}
.tab {
  padding-bottom: 8px; font-size: 14px; color: #666; cursor: pointer;
  border-bottom: 2px solid transparent;
}
.tab.active { color: #fff; border-bottom-color: #3DF57A; }

/* ===== Holdings ===== */
.holdings-list { padding: 16px; flex: 1; }
.holding-item {
  display: flex; align-items: center; padding: 12px 0;
  border-bottom: 1px solid #1a1a1a; cursor: pointer;
}
.holding-item:hover { background: #151515; }
.holding-icon {
  width: 40px; height: 40px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 18px; margin-right: 12px;
}
.holding-info { flex: 1; }
.holding-name { font-size: 15px; font-weight: 500; }
.holding-chain { font-size: 12px; color: #666; }
.harbor-label { font-size: 12px; color: #555; font-weight: 400; }

/* Portfolio sections */
.portfolio-section { margin-bottom: 8px; }
.portfolio-section-header {
  font-size: 13px; font-weight: 600; color: #aaa; padding: 8px 0 4px;
  border-bottom: 1px solid #1a1a1a; margin-bottom: 4px;
}
.portfolio-sub { font-weight: 400; color: #555; font-size: 11px; }
.dex-withdraw-btn {
  background: #3DF57A22; border: 1px solid #3DF57A44; border-radius: 6px;
  color: #3DF57A; padding: 4px 10px; font-size: 11px; cursor: pointer;
  font-weight: 500;
}
.dex-withdraw-btn:hover { background: #3DF57A33; }
.holding-in-orders { font-size: 11px; color: #f0a030; }
.holding-values { text-align: right; }
.holding-amount { font-size: 15px; font-weight: 500; }
.holding-usd { font-size: 12px; color: #888; }

/* ===== Empty State ===== */
.empty-state { text-align: center; padding: 48px 24px; color: #666; }
.empty-heading { font-size: 16px; color: #aaa; font-weight: 600; margin-bottom: 6px; }
.empty-sub { font-size: 13px; color: #555; line-height: 1.5; margin-bottom: 20px; }
.empty-small { text-align: center; padding: 20px; color: #555; font-size: 13px; }

/* ===== Bottom Nav ===== */
.bottom-nav {
  display: flex; justify-content: space-around; padding: 12px;
  background: #111; border-top: 1px solid #1a1a1a;
  position: sticky; bottom: 0;
}
.nav-item { font-size: 11px; color: #555; cursor: pointer; text-align: center; }
.nav-item.active { color: #3DF57A; }

/* ===== Trade Menu Overlay (Trust Wallet style) ===== */

/* ===== Buttons ===== */
.btn-primary {
  background: #3DF57A; color: #000; border: none; border-radius: 14px;
  padding: 16px; font-size: 16px; font-weight: 600; cursor: pointer;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.9; }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-buy {
  background: #3DF57A; color: #000; border: none; border-radius: 14px;
  padding: 14px; font-size: 15px; font-weight: 600; cursor: pointer;
}
.btn-sell {
  background: #FF4D4D; color: #fff; border: none; border-radius: 14px;
  padding: 14px; font-size: 15px; font-weight: 600; cursor: pointer;
}
.full-width { width: 100%; }

/* ===== Inputs ===== */
.input-group { margin-bottom: 16px; }
.input-group.compact { margin-bottom: 10px; }
.input-group label { display: block; font-size: 13px; color: #888; margin-bottom: 6px; }
.input-group input, .input-group select {
  width: 100%; background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 10px;
  padding: 12px; color: #fff; font-size: 15px; outline: none;
}
.input-group input:focus { border-color: #3DF57A; }
.input-with-suffix {
  position: relative; display: flex; align-items: center;
}
.input-with-suffix input { padding-right: 60px; }
.input-suffix {
  position: absolute; right: 12px; color: #3DF57A; font-weight: 600; font-size: 14px;
}
.input-with-btns {
  display: flex; gap: 4px;
}
.input-with-btns button {
  width: 36px; background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 8px;
  color: #3DF57A; font-size: 18px; cursor: pointer;
}
.input-with-btns input { flex: 1; text-align: center; }

.quick-amounts, .quick-pct {
  display: flex; gap: 8px; margin-top: 8px;
}
.quick-amounts button, .quick-pct button {
  flex: 1; background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 8px;
  color: #3DF57A; padding: 6px; font-size: 13px; cursor: pointer;
}
.quick-amounts button:hover, .quick-pct button:hover { background: #222; }
.max-btn {
  background: none; border: none; color: #3DF57A; font-size: 13px;
  cursor: pointer; margin-top: 4px; font-weight: 600;
}

/* ===== Info Cards ===== */
.info-card {
  background: #1a1a1a; border-radius: 14px; padding: 16px; margin-bottom: 16px;
}
.info-label { font-size: 13px; color: #888; margin-bottom: 12px; }

/* ===== Asset Selector ===== */
.asset-selector {
  display: flex; align-items: center; padding: 12px; border-radius: 10px;
  cursor: pointer; transition: background 0.2s; margin-bottom: 4px;
}
.asset-selector:hover { background: #252525; }
.asset-selector.selected { background: #1f2f1f; border: 1px solid #3DF57A33; }
.asset-icon {
  width: 40px; height: 40px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 20px;
  font-weight: 700; margin-right: 12px;
}
.asset-icon.btc { background: #f7931a; color: #fff; }
.asset-icon.usdt { background: #26a17b; color: #fff; }
.asset-info { flex: 1; display: flex; flex-direction: column; }
.asset-name { font-size: 15px; font-weight: 600; }
.asset-chain, .asset-sub { font-size: 12px; color: #666; }
.asset-check { color: #3DF57A; font-size: 18px; }

/* ===== Summary Rows ===== */
.deposit-summary, .withdraw-summary, .confirm-details {
  background: #1a1a1a; border-radius: 14px; padding: 16px; margin-bottom: 16px;
}
.summary-row {
  display: flex; justify-content: space-between; padding: 8px 0;
  font-size: 14px; border-bottom: 1px solid #222;
}
.summary-row:last-child { border: none; }
.summary-row span:first-child { color: #888; }
.broker-fee-row { border-top: 1px solid #333; margin-top: 4px; padding-top: 10px; }
.broker-fee-row span:last-child { color: #FF9500; }
.broker-name { color: #666; font-size: 12px; }
.net-row { background: #3DF57A0a; margin: 4px -14px 0; padding: 10px 14px; border-radius: 0 0 12px 12px; border: none; }
.net-row span:first-child { color: #aaa; font-weight: 500; }
.net-row strong { color: #3DF57A; font-size: 15px; }
.highlight { color: #3DF57A; font-weight: 600; }

/* ===== API Annotations ===== */
/* ===== Inside Market (Bid/Ask) ===== */
.inside-market {
  display: flex; gap: 8px; margin-bottom: 14px;
  background: #0e0e0e; border-radius: 12px; padding: 12px;
}
.inside-bid, .inside-ask, .inside-spread {
  flex: 1; text-align: center;
}
.inside-label {
  font-size: 10px; color: #555; text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 4px;
}
.inside-price {
  font-size: 18px; font-weight: 700;
  font-family: 'SF Mono', 'Fira Code', monospace;
}
.bid-color { color: #3DF57A; }
.ask-color { color: #FF4D4D; }
.inside-size {
  font-size: 11px; color: #666; margin-top: 2px;
}
.inside-spread-val {
  font-size: 14px; font-weight: 600; color: #888; margin-top: 4px;
}
/* Deposit note on confirm */
.confirm-deposit-note {
  background: #1f150d; border: 1px solid #3d2a1a; border-radius: 10px;
  padding: 12px; margin-bottom: 12px; font-size: 13px; color: #ddd;
}
/* Fee row in trade form */
.order-fee-row {
  display: flex; justify-content: space-between; padding: 6px 0;
  font-size: 12px; color: #888; border-bottom: 1px solid #1a1a1a;
  margin-bottom: 8px;
}
.broker-name-sm { color: #555; font-size: 10px; }

/* API reference links on processing steps */
.step-api-link {
  display: inline-block; font-size: 10px; color: #4D8FFF;
  text-decoration: none; margin-left: 8px;
  opacity: 0.6; transition: opacity 0.2s;
}
.step-api-link:hover { opacity: 1; text-decoration: underline; }
.step.done .step-api-link { color: #3DF57A; }
.step.active .step-api-link { opacity: 1; }

/* API docs link outside phone frame */
/* Swap percentage buttons */
.swap-pct-row {
  display: flex; gap: 6px; padding: 8px 0 0;
}
.swap-pct-row button {
  flex: 1; padding: 6px; border-radius: 8px;
  background: #1a1a1a; border: 1px solid #252525;
  color: #3DF57A; font-size: 12px; font-weight: 600;
  cursor: pointer; transition: background 0.15s;
}
.swap-pct-row button:hover { background: #252525; }

.api-docs-link {
  background: #1a1a1a; border: 1px solid #3DF57A44;
  border-radius: 10px; padding: 10px 18px;
  color: #3DF57A; font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.api-docs-link:hover { background: #252525; border-color: #3DF57A; }

/* ===== Trade Form ===== */
.trade-body { padding: 8px 12px; }
.trade-form { margin-bottom: 16px; }
.trade-tabs { display: flex; gap: 4px; margin-bottom: 10px; }
.trade-tab {
  flex: 1; padding: 10px; text-align: center; border-radius: 10px;
  border: none; font-size: 15px; font-weight: 600; cursor: pointer;
  background: #1a1a1a; color: #666;
}
.trade-tab.active.buy-active { background: #3DF57A; color: #000; }
.trade-tab.active.sell-active { background: #FF4D4D; color: #fff; }
.trade-tab.active { background: #3DF57A; color: #000; }

.trade-type-tabs { display: flex; gap: 4px; margin-bottom: 10px; }
.type-tab {
  flex: 1; padding: 6px; text-align: center; border-radius: 8px;
  border: 1px solid #2a2a2a; background: transparent; color: #888;
  font-size: 13px; cursor: pointer;
}
.type-tab.active { border-color: #3DF57A; color: #3DF57A; }

.order-total {
  display: flex; justify-content: space-between; padding: 8px 0;
  font-size: 14px; color: #aaa;
}
.tif-selector { margin-bottom: 10px; }
.tif-selector label { font-size: 12px; color: #666; margin-bottom: 4px; display: block; }
.tif-selector select {
  width: 100%; background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 8px;
  padding: 8px; color: #fff; font-size: 13px;
}

.available-balance {
  display: flex; justify-content: space-between; padding: 6px 0;
  font-size: 13px; color: #888; margin-bottom: 8px;
}

/* ===== Open Orders ===== */
.open-orders, .recent-trades { margin-bottom: 16px; }
.open-orders h3, .recent-trades h3 {
  font-size: 14px; color: #aaa; margin-bottom: 8px;
  padding-bottom: 6px; border-bottom: 1px solid #1a1a1a;
}
.order-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px; background: #151515; border-radius: 8px; margin-bottom: 4px;
  font-size: 12px;
}
.order-item-side { font-weight: 700; }
.order-item-side.buy { color: #3DF57A; }
.order-item-side.sell { color: #FF4D4D; }
.order-item-cancel {
  background: none; border: 1px solid #FF4D4D33; border-radius: 6px;
  color: #FF4D4D; padding: 4px 8px; font-size: 11px; cursor: pointer;
}
.trade-item {
  display: flex; justify-content: space-between; padding: 6px 8px;
  font-size: 12px; border-bottom: 1px solid #111;
}
.trade-item .trade-price.buy { color: #3DF57A; }
.trade-item .trade-price.sell { color: #FF4D4D; }

/* ===== Confirm Screen ===== */
.confirm-card { text-align: center; margin-bottom: 20px; }
.confirm-side {
  font-size: 28px; font-weight: 700; margin-bottom: 4px;
}
.confirm-side.buy { color: #3DF57A; }
.confirm-side.sell { color: #FF4D4D; }
.confirm-pair { font-size: 14px; color: #888; margin-bottom: 16px; }

/* ===== Processing Screen ===== */
.center-content { text-align: center; padding-top: 40px; }
.spinner {
  width: 60px; height: 60px; border: 3px solid #222; border-top-color: #3DF57A;
  border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 24px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.status-sub { color: #888; font-size: 13px; margin-top: 8px; }

.status-steps { text-align: left; margin-top: 30px; padding: 0 20px; }
.step {
  display: flex; align-items: flex-start; gap: 12px; padding: 12px 0;
  opacity: 0.3; transition: opacity 0.4s;
}
.step.active { opacity: 1; }
.step.done { opacity: 0.7; }
.step.done .step-dot { background: #3DF57A; border-color: #3DF57A; }
.step-dot {
  width: 12px; height: 12px; border-radius: 50%; border: 2px solid #444;
  background: transparent; margin-top: 4px; flex-shrink: 0;
}
.step.active .step-dot { border-color: #3DF57A; background: #3DF57A; box-shadow: 0 0 8px #3DF57A55; }
.step-text { flex: 1; }
.step-text span { display: block; font-size: 14px; }
.step-api {
  display: block; font-size: 11px; color: #3DF57A; background: #0a2918;
  padding: 2px 6px; border-radius: 4px; margin-top: 4px;
}

.check-icon { font-size: 60px; color: #3DF57A; }

/* ===== History ===== */
.history-tabs { display: flex; gap: 4px; margin-bottom: 12px; }
.hist-tab {
  flex: 1; padding: 8px; text-align: center; background: #1a1a1a;
  border: none; border-radius: 8px; color: #666; font-size: 12px; cursor: pointer;
}
.hist-tab.active { background: #252525; color: #fff; }
.history-list { flex: 1; }
.history-item {
  display: flex; align-items: center; padding: 12px; border-bottom: 1px solid #1a1a1a;
}
.history-icon {
  width: 36px; height: 36px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; margin-right: 12px;
  font-size: 16px;
}
.history-icon.deposit { background: #1a3d2a; color: #3DF57A; }
.history-icon.trade { background: #1a2040; color: #4D8FFF; }
.history-icon.withdrawal { background: #3d1a1a; color: #FF4D4D; }
.history-info { flex: 1; }
.history-title { font-size: 14px; }
.history-time { font-size: 11px; color: #555; }
.history-amount { text-align: right; font-size: 14px; font-weight: 500; }

/* (API log removed — see API_REFERENCE.md)
  padding: 16px; border-bottom: 1px solid #222;
}
/* ===== Toast ===== */
.toast {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  background: #1a1a1a; border: 1px solid #3DF57A33; border-radius: 10px;
  padding: 12px 20px; z-index: 200; font-size: 14px;
  transition: opacity 0.3s, transform 0.3s;
}
.toast.hidden { opacity: 0; transform: translateX(-50%) translateY(-20px); pointer-events: none; }
.toast.success { border-color: #3DF57A; color: #3DF57A; }
.toast.error { border-color: #FF4D4D; color: #FF4D4D; }

/* ===== Home Order Cards ===== */
.home-tab-content { padding: 0 16px 16px; flex: 1; overflow-y: auto; }
.home-orders-list { padding-top: 8px; }
.home-order-item {
  background: #151515; border: 1px solid #1a1a1a; border-radius: 12px;
  padding: 14px; margin-bottom: 10px;
}
/* Order card */
.order-card-top {
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.order-card-pair { font-size: 15px; font-weight: 700; }
.order-card-badge {
  font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 4px;
}
.order-card-badge.buy { background: #3DF57A22; color: #3DF57A; }
.order-card-badge.sell { background: #FF4D4D22; color: #FF4D4D; }
.order-card-meta { font-size: 11px; color: #555; margin-left: auto; text-transform: capitalize; }
.order-card-main {
  display: flex; align-items: baseline; gap: 6px;
  padding: 10px 12px; background: #1a1a1a; border-radius: 8px; margin-bottom: 6px;
  font-family: 'SF Mono', 'Fira Code', monospace;
}
.order-card-qty { font-size: 16px; font-weight: 700; }
.order-card-qty.buy { color: #3DF57A; }
.order-card-qty.sell { color: #FF4D4D; }
.order-card-at { font-size: 13px; color: #555; }
.order-card-price { font-size: 16px; font-weight: 600; color: #ddd; }
.order-card-total { font-size: 12px; color: #666; margin-bottom: 10px; padding-left: 2px; }
.order-card-actions {
  display: flex; justify-content: space-between; align-items: center;
}
.order-card-time { font-size: 11px; color: #444; }
.order-card-btns { display: flex; gap: 6px; }
.order-card-cancel {
  background: none; border: 1px solid #FF4D4D44; border-radius: 8px;
  color: #FF4D4D; padding: 6px 12px; font-size: 12px; font-weight: 500;
  cursor: pointer; transition: background 0.2s;
}
.order-card-cancel:hover { background: #FF4D4D15; }
.order-card-withdraw-btn {
  background: #3DF57A22; border: 1px solid #3DF57A44; border-radius: 8px;
  color: #3DF57A; padding: 6px 12px; font-size: 12px; font-weight: 500;
  cursor: pointer; transition: background 0.2s;
}
.order-card-withdraw-btn:hover { background: #3DF57A33; }

.exchange-balance-card {
  background: #111; border: 1px solid #1a1a1a; border-radius: 12px;
  padding: 14px; margin-bottom: 12px;
}
.exchange-balance-header {
  font-size: 12px; color: #888; margin-bottom: 8px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.exchange-balance-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0; font-size: 14px; font-weight: 500;
}
.home-order-deposit-note {
  font-size: 11px; color: #888; padding: 6px 10px;
  background: #111; border-radius: 6px; margin-bottom: 8px;
}

/* ===== Swap Screen ===== */
.swap-slippage {
  font-size: 13px; color: #888; background: #1a1a1a; border-radius: 6px;
  padding: 4px 8px;
}
.swap-card {
  background: #1a1a1a; border-radius: 16px; padding: 16px; margin-bottom: 4px;
}
.swap-card-label {
  display: flex; justify-content: space-between; font-size: 12px; color: #666;
  margin-bottom: 10px;
}
.swap-balance { color: #555; }
.swap-card-row {
  display: flex; justify-content: space-between; align-items: center;
}
.swap-asset {
  display: flex; align-items: center; gap: 8px; cursor: pointer;
}
.swap-asset .asset-icon { width: 36px; height: 36px; font-size: 18px; }
.swap-asset-name { font-size: 16px; font-weight: 600; }
.swap-asset-chain { font-size: 11px; color: #666; }
.swap-chevron { color: #666; font-size: 18px; margin-left: 4px; }
.swap-amount-col { text-align: right; flex: 1; }
.swap-amount-input {
  background: transparent; border: none; color: #fff; font-size: 28px;
  font-weight: 700; text-align: right; width: 100%; outline: none;
}
.swap-amount-input::placeholder { color: #333; }
.swap-to-value {
  font-size: 28px; font-weight: 700; color: #fff;
}
.swap-usd { font-size: 12px; color: #666; margin-top: 2px; }

.swap-toggle-row {
  display: flex; justify-content: center; margin: -8px 0; position: relative; z-index: 2;
}
.swap-toggle-btn {
  width: 36px; height: 36px; border-radius: 50%; background: #252525;
  border: 3px solid #111; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform 0.3s;
}
.swap-toggle-btn:hover { transform: rotate(180deg); }

.swap-rate {
  text-align: center; font-size: 13px; color: #888; padding: 12px 0;
}

.swap-mode-toggle {
  display: flex; gap: 4px; margin-bottom: 12px;
  background: #151515; border-radius: 10px; padding: 3px;
}
.swap-mode-btn {
  flex: 1; padding: 8px; text-align: center; border-radius: 8px;
  border: none; font-size: 14px; font-weight: 500; cursor: pointer;
  background: transparent; color: #666; transition: all 0.2s;
}
.swap-mode-btn.active { background: #252525; color: #fff; }

.swap-limit-section { margin-bottom: 12px; }
.swap-limit-hint {
  font-size: 12px; color: #3DF57A; margin-top: 6px; opacity: 0.7;
}

/* Swap Confirm */
.swap-confirm-summary {
  background: #1a1a1a; border-radius: 16px; padding: 20px; margin-bottom: 16px;
}
.swap-confirm-pair {
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.swap-confirm-asset {
  display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600;
}
.swap-confirm-asset .asset-icon { width: 32px; min-width: 32px; height: 32px; font-size: 16px; margin-right: 0; }
.swap-confirm-arrow { color: #3DF57A; font-size: 20px; }

.memo-display {
  background: #0a0a0a; border: 1px solid #1a1a1a; border-radius: 10px;
  padding: 12px; margin-bottom: 16px;
}
.memo-label { font-size: 11px; color: #666; margin-bottom: 6px; }
.memo-value {
  display: block; font-size: 12px; color: #3DF57A; word-break: break-all;
  background: #0d1f15; padding: 8px; border-radius: 6px; line-height: 1.5;
}

/* ===== Utility ===== */
.hidden { display: none !important; }
.market-price { font-size: 13px; color: #3DF57A; font-weight: 600; }

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 2px; }

/* Trade Menu styles are in inline <style> in index.html (CSS parse issue with scrollbar pseudo-elements) */
