/* Section: Whale Tape — large-swap feed table + pressure summary.
   Follows the dashboard section vocabulary (dark card, mono numerics). */

.section--whale-tape {
    margin-top: 28px;
}
.section--whale-tape .wt-meta {
    font-family: var(--font-mono, ui-monospace, monospace);
    font-size: 0.7rem;
    color: var(--color-text-muted, #9ca3af);
    margin-left: 10px;
}
.section--whale-tape .wt-sub {
    font-size: 0.8rem;
    color: var(--color-text-muted, #9ca3af);
    margin: 4px 0 12px;
}

/* ── pressure summary pills ── */
.wt-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.wt-pill {
    font-family: var(--font-mono, ui-monospace, monospace);
    font-size: 0.72rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-secondary, #d1d5db);
}
.wt-pill--buy  { color: #6ee7a8; border-color: rgba(34, 197, 94, 0.35); }
.wt-pill--sell { color: #f87171; border-color: rgba(239, 68, 68, 0.35); }
.wt-pill--net.wt-pill--buy  { background: rgba(34, 197, 94, 0.1); }
.wt-pill--net.wt-pill--sell { background: rgba(239, 68, 68, 0.1); }

/* ── tape table ── */
.wt-scroll { overflow-x: auto; }
.wt-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
}
.wt-table thead th {
    text-align: left;
    font-family: var(--font-mono, ui-monospace, monospace);
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
    color: var(--color-text-muted, #9ca3af);
    padding: 6px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.wt-table thead th.wt-num { text-align: right; }
.wt-table tbody td {
    padding: 6px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary, #f3f4f6);
    white-space: nowrap;
}
.wt-table tbody tr:hover td { background: rgba(255, 255, 255, 0.02); }
.wt-num {
    text-align: right;
    font-family: var(--font-mono, ui-monospace, monospace);
}
.wt-strong { font-weight: 600; }
.wt-dim { color: var(--color-text-muted, #9ca3af); }
.wt-side {
    font-family: var(--font-mono, ui-monospace, monospace);
    font-size: 0.68rem;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 4px;
}
.wt-side--buy  { color: #6ee7a8; background: rgba(34, 197, 94, 0.12); }
.wt-side--sell { color: #f87171; background: rgba(239, 68, 68, 0.12); }
.wt-addr a, .wt-tx a {
    color: #60a5fa;
    text-decoration: none;
    font-family: var(--font-mono, ui-monospace, monospace);
}
.wt-addr a:hover, .wt-tx a:hover { text-decoration: underline; }

@media (max-width: 640px) {
    .wt-via, .wt-table thead th:nth-child(5) { display: none; }
}
