:root {
  --bg: #e8eaed;
  --card: #ffffff;
  --text: #111111;
  --muted: #6b7280;
  --line: #d1d5db;
  --green: #1f8f3a;
  --green-soft: #e8f6ec;
  --purple: #6b2fd6;
  --purple-soft: #f0e9ff;
  --red: #d92d20;
  --orange: #c47a00;
  --safe-t: env(safe-area-inset-top, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-ios: cubic-bezier(0.32, 0.72, 0, 1);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body {
  margin: 0; padding: 0;
  height: 100%; height: 100dvh;
  overflow: hidden;
  overscroll-behavior: none;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.shell {
  height: 100dvh; height: 100svh;
  max-height: 100dvh;
  display: flex; flex-direction: column;
  overflow: hidden;
  padding: calc(4px + var(--safe-t)) 10px calc(6px + var(--safe-b));
  max-width: 430px;
  margin: 0 auto;
}

/* ===== Always-visible standings strip ===== */
.standings-strip {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 0 6px;
  min-height: 0;
  overflow: hidden;
}
.stand-chips {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  min-height: 34px;
}
.stand-chip {
  appearance: none;
  border: 0;
  margin: 0;
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 5px 2px 4px;
  border-radius: 10px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  color: #374151;
  cursor: pointer;
  transition: background 180ms var(--ease-spring), box-shadow 180ms var(--ease-spring), transform 180ms var(--ease-spring);
  -webkit-user-select: none;
  user-select: none;
}
.stand-chip:active { transform: scale(0.97); }
.stand-chip-name {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #6b7280;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.stand-chip-wl {
  font-size: 0.78rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #111;
}
.stand-chip.is-leader {
  background: var(--green-soft);
  box-shadow: 0 1px 2px rgba(31,143,58,0.12), inset 0 0 0 1px rgba(31,143,58,0.18);
}
.stand-chip.is-leader .stand-chip-name {
  color: var(--green);
  font-weight: 800;
}
.stand-chip.is-leader .stand-chip-wl {
  color: #166534;
}
.stand-chip.is-selected {
  box-shadow: 0 1px 2px rgba(0,0,0,0.06), inset 0 0 0 1.5px #111;
}
.stand-detail {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 22px;
  padding: 0 2px 1px;
  overflow: hidden;
}
.stand-detail.hidden { display: none; }
.stand-detail-name {
  flex-shrink: 0;
  font-size: 0.58rem;
  font-weight: 800;
  color: #6b7280;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.stand-detail-picks {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  min-width: 0;
  overflow: hidden;
}
.stand-pick-chip {
  flex-shrink: 1;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  max-width: 7.5rem;
  padding: 1px 6px;
  border-radius: 999px;
  background: #fff;
  color: #4b5563;
  font-size: 0.55rem;
  font-weight: 650;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-shadow: 0 0 0 1px #e5e7eb;
}
.stand-pick-chip em {
  font-style: normal;
  font-weight: 800;
  font-size: 0.5rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.stand-pick-chip.HIT {
  background: var(--green-soft);
  color: #166534;
  box-shadow: 0 0 0 1px rgba(31,143,58,0.2);
}
.stand-pick-chip.HIT em { color: var(--green); }
.stand-pick-chip.LOST {
  background: #fef3f2;
  color: #b42318;
  box-shadow: 0 0 0 1px rgba(217,45,32,0.18);
}
.stand-pick-chip.LOST em { color: var(--red); }
.stand-pick-chip.LIVE,
.stand-pick-chip.PENDING {
  background: #fff7e8;
  color: #9a6700;
  box-shadow: 0 0 0 1px rgba(196,122,0,0.2);
}
.stand-pick-chip.LIVE em,
.stand-pick-chip.PENDING em { color: var(--orange); }


/* ===== Premium receipt deck ===== */
.deck {
  flex: 1 1 auto;
  min-height: 0;
  position: relative;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.deck-stage {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.receipt-card {
  position: absolute;
  inset: 0;
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  pointer-events: none;
  /* default stacked look; JS overrides via inline transform while dragging/animating */
  transition:
    transform 520ms var(--ease-ios),
    opacity 420ms var(--ease-spring),
    filter 420ms var(--ease-spring),
    box-shadow 420ms var(--ease-spring);
}

.receipt-card.is-active {
  pointer-events: auto;
  z-index: 10;
}

.receipt-card.is-dragging {
  transition: none !important;
}

.receipt-card .receipt {
  height: 100%;
  display: flex; flex-direction: column;
  background: var(--card);
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 8px 24px rgba(0,0,0,0.08),
    0 20px 48px rgba(0,0,0,0.06);
  overflow: hidden;
  transform: translateZ(0);
}

.receipt-card.is-active .receipt {
  box-shadow:
    0 2px 4px rgba(0,0,0,0.05),
    0 12px 32px rgba(0,0,0,0.12),
    0 28px 64px rgba(0,0,0,0.1);
}

.deck-dots {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 0 4px;
  min-height: 28px;
}

.deck-dot {
  appearance: none;
  border: 0;
  padding: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #c5cad3;
  cursor: pointer;
  transition:
    width 380ms var(--ease-ios),
    background 320ms var(--ease-spring),
    transform 380ms var(--ease-ios);
}

.deck-dot.active {
  width: 18px;
  background: #111;
  transform: scale(1.05);
}

.r-head {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
  padding: 12px 14px 10px;
  border-bottom: 1px solid var(--line);
}
.r-head-left { display: flex; align-items: center; gap: 8px; min-width: 0; }
.r-head-right { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.r-icon {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 12px; font-weight: 800; color: #fff;
  background: var(--green);
}
.r-icon.lost { background: var(--red); }
.r-icon.live { background: var(--orange); }
.r-title { font-weight: 800; font-size: 1.05rem; letter-spacing: -0.02em; }
.r-meta { color: var(--muted); font-size: 0.68rem; white-space: nowrap; }
.share-btn {
  appearance: none; border: 1px solid var(--line);
  background: #f8f9fb; color: var(--text);
  font: inherit; font-weight: 700; font-size: 0.7rem;
  padding: 5px 9px; min-height: 28px; border-radius: 999px; cursor: pointer;
}
.share-btn:active { background: #eef0f4; }

.r-status {
  flex: 0 0 auto;
  padding: 10px 14px 8px;
}
.r-status-row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 8px;
}
.bet-placed {
  font-weight: 800; font-size: 1.05rem; color: var(--green); letter-spacing: -0.02em;
}
.bet-placed.lost { color: var(--red); }
.bet-placed.live { color: var(--orange); }
.odds-wrap { text-align: right; flex-shrink: 0; }
.odds-label { color: var(--muted); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.odds-val {
  font-weight: 800; font-size: 1.15rem; color: var(--purple);
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline; justify-content: flex-end; gap: 6px;
}
.odds-was {
  color: #9ca3af; font-size: 0.85rem; font-weight: 700;
  text-decoration: line-through; text-decoration-thickness: 1.5px;
}
.odds-now { color: var(--purple); }

.type-row {
  display: flex; align-items: center; gap: 8px; margin-top: 6px; flex-wrap: wrap;
}
.sgp {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--green); color: var(--green);
  font-weight: 800; font-size: 0.65rem; letter-spacing: 0.04em;
  padding: 2px 6px; border-radius: 4px;
}
.pick-label { font-weight: 700; font-size: 0.88rem; }
.games-line { color: var(--muted); font-size: 0.72rem; margin-top: 6px; line-height: 1.3; }
.promo-badge {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 8px;
  background: var(--purple-soft);
  color: var(--purple);
  font-weight: 800; font-size: 0.65rem; letter-spacing: 0.03em;
  padding: 4px 8px; border-radius: 6px;
}
.updated { color: var(--muted); font-size: 0.65rem; margin-top: 4px; }

.legs {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  margin: 4px 14px 0;
  border-top: 1.5px dashed var(--line);
  border-bottom: 1.5px dashed var(--line);
  padding: 6px 0;
  display: flex; flex-direction: column;
}

.leg {
  flex: 1 1 0;
  min-height: 0;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: center;
  padding: 2px 0;
  position: relative;
}
.leg-rail {
  position: relative;
  height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.leg-rail::before {
  content: "";
  position: absolute;
  left: 50%; top: -2px; bottom: -2px;
  width: 2px; transform: translateX(-50%);
  background: var(--line);
}
.leg:first-child .leg-rail::before { top: 50%; }
.leg:last-child .leg-rail::before { bottom: 50%; }
.dot {
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid #9ca3af;
  background: #fff;
  z-index: 1; position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 900; color: #fff;
}
.leg.HIT .dot { border-color: var(--green); background: var(--green); }
.leg.HIT .dot::after { content: "✓"; }
.leg.LOST .dot { border-color: var(--red); background: var(--red); }
.leg.LOST .dot::after { content: "×"; font-size: 11px; line-height: 1; }
.leg.PUSH .dot, .leg.VOID .dot { border-color: #64748b; background: #94a3b8; }
.leg.PUSH .dot::after, .leg.VOID .dot::after { content: "—"; font-size: 10px; line-height: 1; }
.leg.LIVE .dot { border-color: var(--orange); background: #fff; box-shadow: 0 0 0 3px rgba(196,122,0,0.15); }
.leg.PENDING .dot { border-color: #9ca3af; background: #fff; }

.leg-main { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.leg-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.leg-text { min-width: 0; flex: 1; }
.leg-primary {
  font-weight: 800; font-size: 0.98rem; letter-spacing: -0.02em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.leg-secondary {
  color: var(--muted); font-size: 0.7rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-top: 1px;
  display: flex; align-items: center; gap: 6px;
}
.leg-stat {
  text-align: right; flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  font-weight: 800; font-size: 0.78rem;
  color: var(--muted);
  max-width: 46%;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.leg.is-ml .leg-stat {
  font-size: 0.72rem;
  letter-spacing: -0.01em;
}
.leg.HIT .leg-stat { color: var(--green); }
.leg.LOST .leg-stat { color: var(--red); }
.leg.PUSH .leg-stat, .leg.VOID .leg-stat { color: #64748b; }
.leg.LIVE .leg-stat { color: var(--orange); }

.leg-meter {
  height: 5px;
  border-radius: 999px;
  background: #e8eaed;
  overflow: hidden;
}
.leg-meter > span {
  display: block; height: 100%; width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #7c5cff, #6b2fd6);
  transition: width 0.45s cubic-bezier(.2,.8,.2,1);
}
.leg.HIT .leg-meter > span { background: var(--green); }
.leg.LOST .leg-meter > span { background: var(--red); }
.leg.PUSH .leg-meter > span, .leg.VOID .leg-meter > span { background: #94a3b8; }
.leg.LIVE .leg-meter > span { background: linear-gradient(90deg, #f0a202, #c47a00); }
.leg.PENDING .leg-meter > span { background: #9ca3af; }

.r-foot {
  flex: 0 0 auto;
  padding: 10px 14px 12px;
}
.money-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 4px; font-size: 0.92rem;
}
.money-row .lab { color: var(--text); }
.money-row .val {
  font-weight: 800; font-variant-numeric: tabular-nums;
  display: inline-flex; align-items: baseline; gap: 6px;
}
.money-row.payout .val { color: var(--green); font-size: 1.05rem; }
.money-row.payout .payout-now { color: var(--green); }
.money-row.payout .payout-was {
  color: #9ca3af; font-size: 0.82rem; font-weight: 700;
  text-decoration: line-through; text-decoration-thickness: 1.5px;
}
.money-row.payout.lost .val,
.money-row.payout.lost .payout-now { color: var(--red); text-decoration: line-through; }
.tx-line {
  margin-top: 8px; color: var(--muted); font-size: 0.62rem;
  font-variant-numeric: tabular-nums;
}

.error-banner {
  flex: 0 0 auto;
  margin-top: 6px;
  background: #fdecec; border: 1px solid #f5c2c2; color: #b42318;
  padding: 6px 10px; border-radius: 8px; font-size: 0.7rem;
}
.hidden { display: none !important; }

.toast {
  position: fixed; left: 50%; bottom: calc(16px + var(--safe-b));
  transform: translateX(-50%);
  background: rgba(17,17,17,0.92); color: #fff;
  font-weight: 700; font-size: 0.8rem;
  padding: 8px 14px; border-radius: 999px; z-index: 100;
}
.share-sheet {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 12px; padding-bottom: calc(12px + var(--safe-b));
}
.share-sheet.hidden { display: none !important; }
.share-sheet-inner {
  width: 100%; max-width: 420px;
  background: #fff; border-radius: 14px; padding: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.share-sheet-inner label { display:block; color: var(--muted); font-size: 0.72rem; margin-bottom: 6px; }
.share-sheet-inner input {
  width: 100%; font: inherit; font-size: 0.8rem;
  padding: 10px; border-radius: 10px;
  border: 1px solid var(--line); background: #f8f9fb; color: var(--text);
}
.share-sheet-actions { display:flex; gap:8px; margin-top: 10px; }
.share-sheet-actions button {
  flex:1; appearance:none; border:1px solid var(--line);
  background:#f8f9fb; color:var(--text); font:inherit; font-weight:700;
  padding:10px; border-radius:10px;
}

@media (prefers-reduced-motion: reduce) {
  .receipt-card { transition: opacity 200ms linear; }
  .deck-dot { transition: none; }
}

/* Picker name pill next to secondary line */
.leg-sec-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.picker-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 1px 6px;
  border-radius: 999px;
  background: #f1f3f5;
  color: #6b7280;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.35;
  max-width: 4.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.r-icon.standings {
  background: #111;
  font-size: 11px;
}

.standings-intro .bet-placed {
  color: #111;
  font-size: 0.98rem;
}

.standings-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  margin: 4px 14px 12px;
  border-top: 1.5px dashed var(--line);
  padding: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stand-row {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 4px 0;
  border-bottom: 1px solid #eef0f3;
}
.stand-row:last-child { border-bottom: 0; }

.stand-top {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}
.stand-name {
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  min-width: 3.6rem;
}
.stand-record {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  font-size: 0.9rem;
  color: #111;
}
.stand-rate {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.stand-open {
  margin-left: auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 1px 7px;
  border-radius: 999px;
  background: #fff7e8;
  color: var(--orange);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.stand-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  min-width: 0;
}
.stand-pick {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  max-width: 100%;
  padding: 1px 6px;
  border-radius: 6px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 0.58rem;
  font-weight: 650;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stand-pick em {
  font-style: normal;
  font-weight: 800;
  font-size: 0.55rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.stand-pick.HIT { background: var(--green-soft); color: var(--green); }
.stand-pick.HIT em { color: var(--green); }
.stand-pick.LOST { background: #fdecec; color: var(--red); }
.stand-pick.LOST em { color: var(--red); }
.stand-pick.LIVE { background: #fff7e8; color: var(--orange); }
.stand-pick.LIVE em { color: var(--orange); }
.stand-pick.PENDING { background: #f3f4f6; color: #6b7280; }



/* Annotated Slip inside Receipt */
.annotated-slip-box {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}
.annotated-slip-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}


.chip-pct {
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.75;
  margin-left: 3px;
}
.stand-chip .chip-name {
  font-weight: 700;
  margin-right: 4px;
}
.stand-chip .chip-record {
  font-weight: 600;
}


/* Tap for Receipts Drawer */
.receipt-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.receipt-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}
.drawer-content {
  background: #181f2a;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-top: 1px solid #334155;
  padding: 20px 20px calc(20px + env(safe-area-inset-bottom));
  max-height: 80vh;
  overflow-y: auto;
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.receipt-drawer.is-open .drawer-content {
  transform: translateY(0);
}
.drawer-handle {
  width: 40px;
  height: 5px;
  background: #475569;
  border-radius: 3px;
  margin: 0 auto 16px;
}
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.drawer-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #f8fafc;
}
.drawer-close {
  background: #334155;
  border: none;
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
}
.drawer-legs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.drawer-leg-card {
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 12px 14px;
}
.drawer-leg-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.drawer-leg-picker {
  font-weight: 800;
  font-size: 0.95rem;
  color: #38bdf8;
}
.drawer-badge {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
}
.drawer-badge.HIT { background: #16a34a; color: #fff; }
.drawer-badge.LOST { background: #dc2626; color: #fff; }
.drawer-badge.PUSH { background: #64748b; color: #fff; }
.drawer-leg-prop {
  font-weight: 700;
  font-size: 0.95rem;
  color: #f1f5f9;
  margin-bottom: 4px;
}
.drawer-quote-box {
  background: rgba(56, 189, 248, 0.08);
  border-left: 3px solid #38bdf8;
  padding: 6px 10px;
  border-radius: 4px;
  margin: 6px 0;
  font-size: 0.82rem;
  color: #94a3b8;
}
.drawer-quote-box strong {
  color: #cbd5e1;
}
.drawer-boxscore-box {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 4px;
}
.drawer-boxscore-box span {
  color: #94a3b8;
  font-weight: 600;
}
.btn-view-receipts {
  margin-top: 8px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  width: 100%;
}
