/* ── DASHBOARD STAT CARDS ── */
.dash-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  user-select: none;
}
.dash-stat-card:hover {
  border-color: rgba(201,168,76,0.5);
  background: #132038;
  transform: translateY(-2px);
}
.dash-stat-card.active-graph {
  border-color: var(--gold);
  background: #132038;
}
#dashCard-pnl {
  cursor: default;
}
#dashCard-pnl:hover {
  border-color: var(--border);
  background: var(--surface);
  transform: none;
}

/* Stats grid — always 2 columns */
#dashStatsRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 24px;
}

/* Graph panel inside stats grid */
#dashGraphPanel {
  grid-column: 1 / -1;
}
.dash-stat-label { font-size: 10px; letter-spacing: 1px; color: var(--muted); margin-bottom: 8px; }
.dash-stat-val   { font-family: var(--font-display); font-size: 20px; line-height: 1.1; }
.dash-stat-val > span { font-size: 20px; font-family: var(--font-display); }
.dash-stat-sub   { font-size: 11px; color: var(--muted); margin-top: 4px; }
.dash-stat-chart-hint {
  color: var(--gold); opacity: 0.5; font-size: 9px; margin-left: 3px; letter-spacing: 0;
  transition: opacity 0.2s;
}
.dash-stat-card:hover .dash-stat-chart-hint { opacity: 1; }

/* ── DASHBOARD INVESTMENT CARDS ── */
.dash-inv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 24px;
  margin-bottom: 14px;
  transition: border-color 0.2s;
}
.dash-inv-card:hover { border-color: rgba(201,168,76,0.35); }
.dash-inv-card.claimed { opacity: 0.55; }

.dash-inv-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.dash-inv-logo {
  width: 40px; height: 40px; border-radius: 8px;
  border: 1px solid var(--border); background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; overflow: hidden;
}
.dash-inv-title { flex: 1; min-width: 0; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.dash-inv-title .sym { font-family: var(--font-display); font-size: 18px; color: var(--gold); letter-spacing: 1px; }
.dash-inv-title .nm  { font-size: 11px; color: var(--muted); }

.dash-inv-badge {
  font-size: 10px; letter-spacing: 1px; padding: 3px 10px;
  border-radius: 20px; border: 1px solid; flex-shrink: 0;
}

.lock-hist-btn {
  font-size: 9px; letter-spacing: 1px; padding: 3px 8px;
  border-radius: 20px; border: 1px solid rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.07); color: var(--gold);
  cursor: pointer; font-family: var(--font-mono); flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}
.lock-hist-btn:hover { background: rgba(201,168,76,0.14); border-color: var(--gold); }
.dash-inv-badge.locked   { border-color: #4ade80;  color: #4ade80; }
.dash-inv-badge.unlocked { border-color: #f87171;  color: #f87171; }
.dash-inv-badge.claimed  { border-color: var(--muted);  color: var(--muted); }
.dash-inv-badge.removed  { background: rgba(107,114,128,0.15); color: #6b7280; border-color: rgba(107,114,128,0.3); }

.dash-inv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(150px,100%), 1fr));
  gap: 14px 20px;
  margin-bottom: 18px;
}
.dash-inv-stat-label { font-size: 10px; letter-spacing: 1px; color: var(--muted); margin-bottom: 4px; }
.dash-inv-stat-val   { font-family: var(--font-mono); font-size: 14px; color: var(--cream); }
.dash-inv-stat-sub   { font-size: 10px; color: var(--muted); margin-top: 2px; }

.dash-countdown {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-family: var(--font-mono);
}
.dash-countdown .cd-label { font-size: 10px; letter-spacing: 1px; color: var(--muted); flex-shrink: 0; }
.dash-countdown .cd-time  { font-size: 15px; color: var(--gold); flex: 1; min-width: 0; }
.dash-countdown.expired .cd-time { color: #4ade80; }
.dash-countdown .cd-seg { text-align: center; }
.dash-countdown .cd-num { font-size: 18px; color: var(--gold); font-family: var(--font-display); }
.dash-countdown .cd-unit { font-size: 9px; color: var(--muted); letter-spacing: 1px; }

.dash-growth-pos { color: #4ade80; }
.dash-growth-neg { color: #f87171; }
.dash-growth-neu { color: var(--muted); }

/* ── INVESTMENT CARD SUMMARY ROW ── */
.dash-inv-summary {
  display: flex; align-items: stretch;
  border: 1px solid var(--border); border-radius: 6px;
  margin-bottom: 10px; overflow: hidden;
}
.dis-col {
  flex: 1; padding: 11px 15px;
  border-right: 1px solid var(--border);
}
.dis-col:last-child { border-right: none; }
.dis-col-action {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 10px 14px; min-width: 148px;
}
.dis-label {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 1.5px;
  color: var(--muted); text-transform: uppercase; margin-bottom: 5px;
}
.dis-val { font-family: var(--font-mono); font-size: 13px; color: var(--cream); }
.dis-val-package { font-family: var(--font-display); font-size: 19px; color: var(--gold); }
.dis-sub { font-family: var(--font-mono); font-size: 10px; color: var(--muted); margin-top: 3px; }
.dis-timer-val {
  font-family: var(--font-display); font-size: 16px; color: var(--gold); letter-spacing: 1px;
}

/* Show more toggle */
.dash-inv-toggle {
  display: flex; align-items: center; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 3px 0 10px; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 1.5px; color: var(--muted); transition: color 0.15s; width: 100%;
}
.dash-inv-toggle:hover { color: var(--gold); }
.dit-arrow { transition: transform 0.2s; display: inline-block; line-height: 1; }
.dash-inv-toggle.open .dit-arrow { transform: rotate(180deg); }

/* Details section */
.dash-inv-details { display: none; border-top: 1px solid var(--border); padding-top: 12px; }
.dash-inv-details.open { display: block; }
.did-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.035); gap: 16px;
}
.did-row:last-child { border-bottom: none; }
.did-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .8px; color: var(--muted); flex-shrink: 0; }
.did-val   { font-family: var(--font-mono); font-size: 11px; color: var(--cream); text-align: right; }
.inv-streak-wrap { display: flex; align-items: center; justify-content: flex-end; gap: 12px; font-size: 11px; }
@media (max-width: 640px) {
  .inv-streak-wrap { flex-direction: column; align-items: flex-end; gap: 4px; }
}
.did-hr    { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 6px 0; }
.did-actions { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 10px; }

/* ── STAKING SLOTS (investment cards) ── */
.dash-inv-staking {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 15px;
  margin-bottom: 10px;
  background: rgba(201,168,76,0.03);
}
.dis-staking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.dis-sl-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
}
.dis-sl-reward {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.5px;
}
.dis-slots {
  margin-bottom: 7px;
}
.dis-bar-track {
  height: 7px;
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.dis-bar-claimed {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: rgba(201,168,76,0.35);
  transition: width 0.9s linear;
}
.dis-bar-active {
  position: absolute;
  top: 0; bottom: 0;
  background: var(--gold);
  transition: left 0.9s linear, width 0.9s linear;
}
.dis-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dis-bar-row .dis-bar-track {
  flex: 1;
}
.dis-sl-reward-mobile {
  display: none;
}

@keyframes rewardSmoke {
  0%   { opacity: 0.35; filter: blur(4px); transform: translateY(-4px); }
  40%  { opacity: 1;    filter: blur(0);   transform: translateY(0);
         text-shadow: 0 0 10px rgba(201,168,76,0.95), 0 0 28px rgba(201,168,76,0.45); }
  100% { opacity: 1;    filter: blur(0);   transform: translateY(0); text-shadow: none; }
}
.dis-sl-reward-smoke {
  animation: rewardSmoke 0.8s ease-out forwards;
}
.dis-staking-hint {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.3px;
  opacity: 0.75;
}
.dis-staking-claimed {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #4ade80;
  letter-spacing: 0.5px;
}

/* ── STAKE DURATION MODAL ── */
.stake-modal-overlay { position: fixed; inset: 0; background: rgba(4,8,15,0.82); backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: center; z-index: 9999; pointer-events: all; }
.stake-modal-box { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 32px 28px; width: min(420px,90vw); }
.stake-modal-title { font-family: var(--font-display); font-size: 22px; letter-spacing: 2px; color: var(--cream); margin-bottom: 4px; }
.stake-modal-sub { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 24px; }
.stake-days-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 20px; }
.stake-day-btn { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 6px; padding: 14px 4px; cursor: pointer; font-family: var(--font-mono); text-align: center; transition: all 0.15s; }
.stake-day-btn .sdb-num { font-size: 18px; color: var(--cream); display: block; }
.stake-day-btn .sdb-lbl { font-size: 9px; letter-spacing: 1.5px; color: var(--muted); display: block; margin-top: 2px; }
.stake-day-btn .sdb-streak { font-size: 9px; letter-spacing: 1px; color: rgba(201,168,76,0.7); display: block; margin-top: 5px; text-transform: uppercase; }
.stake-day-btn .sdb-reward { font-size: 10px; color: var(--gold); display: block; margin-top: 3px; }
.stake-day-btn .sdb-pct { font-size: 9px; color: var(--muted); display: block; margin-top: 2px; letter-spacing: 0.5px; }
.stake-day-btn:hover { border-color: var(--gold); }
.stake-day-btn.selected { border-color: var(--gold); background: rgba(201,168,76,0.12); }
.stake-day-btn.selected .sdb-num { color: var(--gold); }
.stake-day-btn.selected .sdb-lbl { color: var(--gold); }
.stake-day-btn.selected .sdb-pct { color: var(--gold); }
.stake-unlock-info { font-family: var(--font-mono); font-size: 11px; color: var(--muted); min-height: 18px; margin-bottom: 20px; }
.stake-unlock-info span { color: var(--cream); }
.stake-modal-actions { display: flex; gap: 10px; justify-content: flex-end; }
.stake-modal-cancel { background: transparent; border: 1px solid var(--border); color: var(--muted); border-radius: 4px; padding: 9px 18px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; cursor: pointer; transition: border-color 0.15s, color 0.15s; }
.stake-modal-cancel:hover { border-color: var(--cream); color: var(--cream); }
.stake-modal-confirm { background: var(--gold); border: none; color: #0a0a0a; border-radius: 4px; padding: 9px 22px; font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 1px; cursor: pointer; transition: opacity 0.15s; }
.stake-modal-confirm:disabled { opacity: 0.35; cursor: not-allowed; }
.stake-modal-confirm:not(:disabled):hover { opacity: 0.85; }

/* ── RESPONSIVE — tablet + phone (≤ 768px) ── */
@media (max-width: 768px) {
    /* 2-col grid; referral + staking span full width on mobile */
  #dashStatsRow { grid-template-columns: 1fr 1fr; }
  #dashCard-referral,
  #dashCard-staking { grid-column: 1 / -1; }

  /* Stat card: label full-width, then val + sub inline */
  .dash-stat-card {
    padding: 14px 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 10px;
  }
  .dash-stat-label {
    flex: 0 0 100%;
    margin-bottom: 6px;
  }
  .dash-stat-val,
  .dash-stat-val > span { font-size: 21px; line-height: 1; font-family: var(--font-display); }
  .dash-stat-sub  { font-size: 11px; margin-top: 0; }

  .dash-inv-card  { padding: 18px 16px; }
  .dash-inv-title .sym { font-size: 17px; }
  .dash-inv-stat-label { font-size: 11px; }
  .dash-inv-stat-val { font-size: 14px; }
  .dash-countdown { padding: 12px 14px; }
  .dash-countdown .cd-num { font-size: 17px; }
  .dash-countdown .cd-unit { font-size: 10px; }

  /* Direct referral cards — prevent address overflow */
  .dash-dref-addr {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
  }
  .dash-dref-card { gap: 10px; padding: 12px 14px; }
  .dash-dref-avatar { width: 30px; height: 30px; font-size: 10px; flex-shrink: 0; }
  .dash-dref-invested { font-size: 10px; }

  /* ── Investment summary: hide LP Value, grid layout ── */
  .dash-inv-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  /* Hide LP Value column (grid skips it automatically) */
  .dash-inv-summary .dis-col:nth-child(2) { display: none; }

  /* Package (col 1) + Rewards Claimed (col 3) — row 1, add bottom border */
  .dash-inv-summary .dis-col:nth-child(1),
  .dash-inv-summary .dis-col:nth-child(3) {
    border-bottom: 1px solid var(--border);
  }
  .dash-inv-summary .dis-col:nth-child(3) { border-right: none; }

  /* Unlocks In / action row — spans both columns, label + timer inline */
  .dis-col-action {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    min-width: unset;
    gap: 10px;
    padding: 10px 15px;
  }
  .dis-col-action .dis-label { margin-bottom: 0; white-space: nowrap; }
  .dis-timer-val { font-size: 15px; }

  /* Staking section: hide label and header reward; show reward inline next to bar */
  .dis-sl-label { display: none; }
  .dis-staking-header .dis-sl-reward { display: none; }
  .dis-sl-reward-mobile {
    display: inline;
    font-size: 10px;
    white-space: nowrap;
  }
  .dis-bar-track { height: 4px; }

  /* Ref cap: hide used/total detail, show only remaining */
  .refcap-detail { display: none; }

  /* Dashboard stat cards: hide sub-text except referral and staking */
  .dash-stat-card:not(#dashCard-referral):not(#dashCard-staking) .dash-stat-sub { display: none; }

  /* Unlocked + claimable: stake and claim side by side in one row */
  .inv-unlocked-claim .dis-col-action {
    flex-direction: row;
    justify-content: stretch;
    gap: 8px;
  }
  .inv-unlocked-claim .dis-col-action .inv-action-btn {
    flex: 1;
    margin-top: 0;
  }
  .inv-unlocked-claim .inv-mobile-claim {
    display: block;
    white-space: nowrap;
    font-size: 9px;
    letter-spacing: 0.5px;
    padding: 8px 6px;
  }
  /* Hide the entire staking section — claim is in the action row, nothing else is visible here */
  .inv-unlocked-claim .dash-inv-staking { display: none; }
}

/* ── RESPONSIVE — phone (≤ 480px) ── */
@media (max-width: 480px) {
  .dash-inv-card   { padding: 14px 12px; }
  .dash-inv-grid   { gap: 10px 12px; }
  .dash-countdown .cd-num { font-size: 15px; }
}

/* ── DIRECT REFERRAL PERFORMANCE ── */
.dash-dref-header {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 12px;
}
.dash-dref-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.dash-dref-card:hover {
  border-color: rgba(201,168,76,0.5);
  background: #132038;
}
.dash-dref-card.cap-paused,
.dash-dref-card.cap-paused:hover {
  border-color: #eab308;
  box-shadow: 0 0 0 1px rgba(234,179,8,0.12), 0 0 10px rgba(234,179,8,0.18), inset 0 0 8px rgba(234,179,8,0.04);
}
.dash-dref-card.cap-ineligible,
.dash-dref-card.cap-ineligible:hover {
  border-color: #f87171;
  box-shadow: 0 0 0 1px rgba(248,113,113,0.1), 0 0 10px rgba(248,113,113,0.16), inset 0 0 8px rgba(248,113,113,0.03);
}
.dash-dref-card.dref-no-invest,
.dash-dref-card.dref-no-invest:hover {
  border-color: rgba(120,120,140,0.5);
  background: rgba(80,80,100,0.18);
  box-shadow: none;
  cursor: default;
  opacity: 0.45;
  filter: grayscale(0.6);
}
.dash-dref-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; color: var(--gold);
  flex-shrink: 0;
}
.dash-dref-addr {
  font-family: var(--font-mono); font-size: 13px; color: var(--cream);
  letter-spacing: 0.3px;
}
.dash-dref-invested {
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
  margin-top: 2px;
}
.dash-dref-arrow {
  margin-left: auto; color: var(--muted); font-size: 14px;
  transition: color 0.2s;
}
.dash-dref-card:hover .dash-dref-arrow { color: var(--gold); }

/* ── REFERRAL DETAIL POPUP ── */
.dash-refpop-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 28px 24px;
  width: min(440px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
}
.dash-refpop-title {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 4px;
}
.dash-refpop-addr {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  word-break: break-all;
  margin-bottom: 22px;
}
.dash-refpop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.dash-refpop-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
}
.dash-refpop-stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 6px;
}
.dash-refpop-stat-val {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.1;
}
.dash-refpop-close {
  display: block; width: 100%;
  background: transparent; border: 1px solid var(--border);
  color: var(--muted); border-radius: 6px;
  padding: 10px; font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 1px;
  cursor: pointer; transition: border-color 0.15s, color 0.15s;
}
.dash-refpop-close:hover { border-color: var(--cream); color: var(--cream); }
.dash-refpop-label-btn {
  background: transparent; border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold); border-radius: 4px; padding: 3px 10px;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 1.5px;
  cursor: pointer; flex-shrink: 0; transition: background 0.15s;
}
.dash-refpop-label-btn:hover { background: rgba(201,168,76,0.1); }
.dash-refpop-label-input {
  width: 100%; box-sizing: border-box;
  background: var(--bg); border: 1px solid var(--border);
  color: var(--cream); border-radius: 6px;
  padding: 9px 12px; font-family: var(--font-mono); font-size: 12px;
  outline: none; transition: border-color 0.15s;
}
.dash-refpop-label-input:focus { border-color: var(--gold); }
.dash-refpop-label-save {
  background: var(--gold); border: none; color: #0a0a0a;
  border-radius: 4px; padding: 7px 18px; font-family: var(--font-mono);
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  cursor: pointer; transition: opacity 0.15s;
}
.dash-refpop-label-save:hover { opacity: 0.85; }
.dash-refpop-label-cancel {
  background: transparent; border: 1px solid var(--border);
  color: var(--muted); border-radius: 4px; padding: 7px 14px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px;
  cursor: pointer; transition: border-color 0.15s, color 0.15s;
}
.dash-refpop-label-cancel:hover { border-color: var(--cream); color: var(--cream); }

/* ── MISSED COMMISSIONS BANNER ── */
.dash-missed-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,184,0,0.07);
  border: 1px solid rgba(255,184,0,0.35);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.dmb-icon {
  font-size: 20px;
  flex-shrink: 0;
  color: var(--warn);
}
.dmb-body { flex: 1; min-width: 0; }
.dmb-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--warn);
  margin-bottom: 5px;
}
.dmb-msg {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cream);
  line-height: 1.55;
}
.dmb-amount { color: var(--warn); font-weight: 600; }
.dmb-action {
  background: rgba(255,184,0,0.1);
  border: 1px solid rgba(255,184,0,0.4);
  color: var(--warn);
  border-radius: 4px;
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}
.dmb-action:hover { background: rgba(255,184,0,0.2); }
@media (max-width: 480px) {
  .dash-missed-banner { flex-direction: column; align-items: flex-start; }
  .dmb-action { align-self: stretch; text-align: center; }
}
