:root {
  color-scheme: light;
  --bg: #f5f7fa;
  --surface: #ffffff;
  --surface-2: #eef2f6;
  --text: #16202a;
  --muted: #657383;
  --line: #d8e0e8;
  --green: #147d46;
  --green-bg: #e7f5ee;
  --red: #b42318;
  --red-bg: #fde8e7;
  --amber: #a45f00;
  --amber-bg: #fff3d6;
  --blue: #1d5f9f;
  --blue-bg: #e8f1fb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.modal-open {
  overflow: hidden;
}

button,
select {
  font: inherit;
}

button {
  border: 1px solid var(--line);
  background: var(--text);
  color: #fff;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.language-toggle {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-2);
}

.language-toggle button {
  min-width: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  padding: 8px 10px;
}

.language-toggle button.active {
  background: var(--text);
  color: #fff;
}

select {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 6px;
  padding: 8px 10px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.topbar h1 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

.topbar p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-ticker {
  display: grid;
  grid-template-columns: repeat(3, minmax(96px, auto));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

.top-ticker div {
  min-width: 0;
  padding: 8px 12px;
  border-right: 1px solid var(--line);
}

.top-ticker div:last-child {
  border-right: 0;
}

.top-ticker span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.1;
}

.top-ticker span small {
  font-size: 10px;
}

.top-ticker strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

main {
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: 24px;
}

.strategy-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1fr);
  gap: 16px;
  align-items: stretch;
}

.strategy-main,
.strategy-stats,
.module-scores,
.history-panel,
.formal-trades-panel,
.agent-card,
.logs-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.strategy-main {
  min-height: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.decision-entry {
  border-color: rgba(20, 125, 70, 0.45);
  background: linear-gradient(180deg, #ffffff 0%, var(--green-bg) 100%);
}

.decision-watch {
  border-color: rgba(164, 95, 0, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, var(--amber-bg) 100%);
}

.decision-neutral {
  border-color: rgba(29, 95, 159, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, var(--blue-bg) 100%);
}

.strategy-title span,
.section-heading h2,
.module-scores h2,
.logs-header h2 {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.strategy-title strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
}

.strategy-sources {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.strategy-source-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-left-width: 4px;
  border-radius: 6px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.7);
}

.strategy-source-row.source-signal {
  border-left-color: var(--blue);
}

.strategy-source-row.source-gojibot2 {
  border-left-color: var(--green);
}

.source-title {
  min-width: 0;
}

.source-title span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.source-title strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.source-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.source-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 9px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--muted);
  font-size: 12px;
}

.strategy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.strategy-meta span,
.state-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--muted);
  font-size: 12px;
}

.strategy-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 0;
  overflow: hidden;
}

.metric {
  min-width: 0;
  padding: 13px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.metric .bilingual-label small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
}

.metric strong {
  display: block;
  margin-top: 5px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.module-scores {
  grid-column: 1 / -1;
  padding: 18px;
}

.history-panel {
  grid-column: 1 / -1;
  padding: 18px;
}

.formal-trades-panel {
  grid-column: 1 / -1;
  padding: 18px;
}

.history-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.module-scores h2,
.history-panel h2,
.formal-trades-panel h2,
.history-modal-head h2 {
  margin: 0;
}

.module-scores h2 {
  margin-bottom: 14px;
}

.module-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.module-section-head h2 {
  margin-bottom: 0;
}

.module-section-head a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.module-section-head a:hover {
  text-decoration: underline;
}

.history-chart {
  min-width: 0;
}

.history-chart.compact {
  cursor: pointer;
}

.history-chart svg {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfd;
}

.history-chart text {
  fill: var(--muted);
  font-size: 12px;
}

.history-chart .axis {
  stroke: var(--line);
  stroke-width: 1;
}

.history-chart .price-grid {
  stroke: rgba(101, 115, 131, 0.22);
  stroke-dasharray: 4 4;
}

.history-chart .price-grid.muted {
  stroke: rgba(101, 115, 131, 0.14);
}

.history-chart .price-axis-label {
  font-size: 11px;
}

.history-chart .price-line {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.history-chart .price-line {
  stroke: var(--blue);
  opacity: 0.65;
}

.history-chart circle {
  stroke: #fff;
  stroke-width: 1.5;
}

.history-chart circle.long,
.history-legend .long {
  fill: var(--green);
  background: var(--green);
}

.history-chart circle.short,
.history-legend .short {
  fill: var(--red);
  background: var(--red);
}

.history-chart circle.flat {
  fill: var(--muted);
}

.history-chart circle.outcome-wrong,
.history-chart circle.outcome-missed_long,
.history-chart circle.outcome-missed_short,
.history-legend .wrong {
  stroke: #7f1d1d;
  stroke-width: 3;
}

.history-chart circle.outcome-bias_correct {
  stroke: var(--amber);
  stroke-width: 2.5;
}

.history-chart circle.outcome-pending {
  opacity: 0.45;
}

.history-chart .trade-marker {
  stroke: #fff;
  stroke-width: 2;
}

.history-chart .trade-entry.long {
  fill: var(--green);
}

.history-chart .trade-entry.short {
  fill: var(--red);
}

.history-chart .trade-close.trade-win {
  fill: var(--green);
}

.history-chart .trade-close.trade-loss {
  fill: var(--red);
}

.history-chart .trade-close.trade-breakeven {
  fill: var(--amber);
}

.history-chart .trade-close.trade-open {
  fill: var(--blue);
}

.history-chart .liq-history line {
  stroke-width: 1.8;
  stroke-dasharray: 5 4;
  opacity: 0.66;
}

.history-chart .liq-history text {
  font-size: 10px;
  font-weight: 800;
}

.history-chart .liq-history.target line,
.history-legend .liq-target-key {
  stroke: #0f766e;
  background: #0f766e;
}

.history-chart .liq-history.stop line,
.history-legend .liq-stop-key {
  stroke: #b91c1c;
  background: #b91c1c;
}

.history-chart .liq-history.target text {
  fill: #0f766e;
}

.history-chart .liq-history.stop text {
  fill: #b91c1c;
}

.history-chart .module-line {
  fill: none;
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
  opacity: 0.48;
}

.history-chart .module-dot {
  opacity: 0.9;
  stroke: #fff;
  stroke-width: 1.2;
}

.history-chart .module-funding,
.history-legend .module-funding {
  fill: #7c3aed;
  stroke: #7c3aed;
  background: #7c3aed;
}

.history-chart .module-futures-cvd,
.history-legend .module-futures-cvd {
  fill: #0891b2;
  stroke: #0891b2;
  background: #0891b2;
}

.history-chart .module-spot-cvd,
.history-legend .module-spot-cvd {
  fill: #0f766e;
  stroke: #0f766e;
  background: #0f766e;
}

.history-chart .module-oi,
.history-legend .module-oi {
  fill: #c2410c;
  stroke: #c2410c;
  background: #c2410c;
}

.history-chart .module-price-structure,
.history-legend .module-price-structure {
  fill: #4b5563;
  stroke: #4b5563;
  background: #4b5563;
}

.history-chart .time-label.end {
  text-anchor: end;
}

.chart-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.chart-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.chart-options input {
  width: 16px;
  height: 16px;
}

.history-summary {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  margin-top: 12px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.history-summary .metric {
  border-top: 0;
  border-left: 0;
}

.history-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.history-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.history-legend i {
  display: inline-block;
  width: 18px;
  height: 3px;
  border-radius: 999px;
}

.history-legend .goji {
  width: 9px;
  height: 9px;
  background: #202a34;
  border-radius: 50%;
}

.history-legend .price {
  background: var(--blue);
}

.history-legend .trade-entry-key {
  width: 0;
  height: 0;
  border-right: 8px solid transparent;
  border-bottom: 14px solid var(--green);
  border-left: 8px solid transparent;
  background: transparent;
  border-radius: 0;
}

.history-legend .trade-close-key {
  width: 11px;
  height: 11px;
  transform: rotate(45deg);
  background: var(--amber);
  border-radius: 1px;
}

.history-legend .module-key {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.history-latest {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.history-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.history-modal.open {
  display: block;
}

.history-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 32, 0.62);
}

.history-modal-panel {
  position: absolute;
  inset: 28px;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 60px rgba(16, 24, 32, 0.25);
}

.history-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

#history-modal-body {
  overflow: auto;
  padding: 18px;
}

.history-table-wrap {
  margin-top: 18px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.history-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
  font-size: 13px;
}

.history-table th,
.history-table td {
  padding: 9px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.history-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.history-table tr.outcome-correct td {
  background: rgba(231, 245, 238, 0.55);
}

.history-table tr.outcome-bias_correct td,
.history-table tr.outcome-flat_ok td {
  background: rgba(255, 243, 214, 0.38);
}

.history-table tr.outcome-wrong td,
.history-table tr.outcome-missed_long td,
.history-table tr.outcome-missed_short td {
  background: rgba(253, 232, 231, 0.55);
}

.history-table tr.outcome-pending td {
  color: var(--muted);
}

.trade-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.trade-summary:not(.compact) {
  grid-template-columns: repeat(7, minmax(120px, 1fr));
}

.trade-summary .metric {
  border-top: 0;
  border-left: 0;
}

.trade-preview {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.trade-preview-head,
.trade-preview-row {
  display: grid;
  grid-template-columns: 0.72fr 0.54fr 1fr 0.76fr 0.96fr 0.78fr 0.66fr 0.66fr 0.66fr minmax(170px, 1.15fr) 0.58fr 0.66fr;
  gap: 8px;
  align-items: center;
  min-height: 38px;
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.trade-preview-row:last-child {
  border-bottom: 0;
}

.trade-preview-head {
  background: var(--surface-2);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.trade-preview-row span,
.trade-preview-row strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.liq-graph {
  min-width: 160px;
}

.liq-track {
  position: relative;
  height: 28px;
  border-bottom: 1px solid rgba(101, 115, 131, 0.32);
}

.liq-dot {
  position: absolute;
  bottom: -4px;
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  border-radius: 50%;
  transform: translateX(-50%);
}

.liq-dot.target-wall {
  background: #0f766e;
}

.liq-dot.stop-wall {
  background: #b91c1c;
}

.liq-marker {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  padding: 3px 4px;
  border-radius: 4px;
  white-space: nowrap;
}

.liq-marker.entry {
  background: #111827;
}

.liq-marker.sl {
  background: var(--red);
}

.liq-marker.tp {
  background: var(--green);
}

.liq-levels {
  display: grid;
  gap: 2px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
  white-space: normal;
}

.muted-text {
  color: var(--muted);
}

.trade-win td,
.trade-win {
  background: rgba(231, 245, 238, 0.55);
}

.trade-loss td,
.trade-loss {
  background: rgba(253, 232, 231, 0.55);
}

.trade-breakeven td,
.trade-breakeven {
  background: rgba(255, 243, 214, 0.38);
}

.trade-open td,
.trade-open {
  background: rgba(232, 241, 251, 0.45);
}

.formal-trades-detail {
  margin-top: 24px;
}

.formal-trades-detail h2 {
  margin: 0 0 14px;
}

.module-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.7fr) minmax(160px, 1.4fr) 72px minmax(170px, 0.9fr);
  gap: 12px;
  align-items: center;
  min-height: 34px;
}

.module-row.v32-row {
  min-height: 40px;
}

.module-name {
  color: var(--muted);
  font-size: 13px;
  min-width: 0;
}

.help-label {
  display: inline-flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
  cursor: help;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}

.help-label small {
  color: var(--muted);
  font-size: 11px;
  text-decoration: none;
}

.module-track {
  position: relative;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-2);
}

.module-track span {
  display: block;
  min-width: 2px;
  height: 100%;
}

.positive {
  color: var(--green);
  background: var(--green);
}

.negative {
  color: var(--red);
  background: var(--red);
}

.neutral {
  color: var(--muted);
  background: var(--muted);
}

.module-score {
  background: transparent;
  font-weight: 700;
  text-align: right;
  min-width: 0;
  overflow-wrap: anywhere;
}

.evidence-score {
  font-size: 12px;
  line-height: 1.25;
}

.section-heading {
  margin: 26px 0 12px;
}

.agent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 14px;
}

.agent-card {
  min-width: 0;
  padding: 16px;
}

.agent-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.agent-head h3 {
  margin: 0;
  font-size: 18px;
}

.agent-title small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.agent-head span {
  color: var(--muted);
  font-size: 12px;
}

.state-fresh .state-pill {
  color: var(--green);
  border-color: rgba(20, 125, 70, 0.35);
  background: var(--green-bg);
}

.state-stale .state-pill,
.state-executing .state-pill {
  color: var(--amber);
  border-color: rgba(164, 95, 0, 0.35);
  background: var(--amber-bg);
}

.state-error .state-pill,
.state-missing .state-pill {
  color: var(--red);
  border-color: rgba(180, 35, 24, 0.35);
  background: var(--red-bg);
}

.agent-times,
.agent-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.agent-times {
  margin-top: 10px;
}

.agent-times .metric,
.agent-metrics .metric {
  border-top: 0;
  border-left: 0;
  padding: 10px;
}

.agent-times .metric strong {
  font-size: 14px;
}

.agent-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.execution {
  color: var(--muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.execution.failed,
.disabled-reason {
  color: var(--red);
}

.disabled-reason {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.35;
}

details {
  margin-top: 14px;
}

summary {
  cursor: pointer;
  color: var(--muted);
  font-size: 13px;
}

pre {
  margin: 10px 0 0;
  overflow: auto;
  border-radius: 6px;
  background: #101820;
  color: #e9f0f7;
  padding: 12px;
  font-size: 12px;
  line-height: 1.45;
}

.logs-panel {
  margin-top: 24px;
  padding: 16px;
}

.logs-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

#log-lines {
  height: 360px;
}

#log-lines span {
  display: block;
  white-space: pre-wrap;
}

.log-error {
  color: #ffb4aa;
}

.log-warning {
  color: #ffe08a;
}

.panel-empty,
.empty-line {
  color: var(--muted);
}

@media (max-width: 1080px) {
  .strategy-panel,
  .agent-grid {
    grid-template-columns: 1fr;
  }

  .strategy-stats {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .history-summary {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .trade-summary,
  .trade-summary:not(.compact) {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
  }

  .top-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .top-ticker {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  main {
    padding: 16px;
  }

  .strategy-stats,
  .agent-times,
  .agent-metrics {
    grid-template-columns: 1fr;
  }

  .strategy-source-row {
    grid-template-columns: 1fr;
  }

  .module-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
  }

  .module-row:last-child {
    border-bottom: 0;
  }

  .module-score {
    text-align: left;
  }

  .history-modal-panel {
    inset: 8px;
  }

  .history-panel-head,
  .history-modal-head {
    align-items: stretch;
    flex-direction: column;
  }

  .history-summary {
    grid-template-columns: 1fr;
  }

  .trade-summary,
  .trade-summary:not(.compact) {
    grid-template-columns: 1fr;
  }

  .trade-preview-head,
  .trade-preview-row {
    grid-template-columns: 0.7fr 1fr 0.85fr 0.85fr 0.65fr;
  }

  .trade-preview-head span:nth-child(4),
  .trade-preview-row span:nth-child(4),
  .trade-preview-head span:nth-child(5),
  .trade-preview-row span:nth-child(5),
  .trade-preview-head span:nth-child(7),
  .trade-preview-row span:nth-child(7),
  .trade-preview-head span:nth-child(8),
  .trade-preview-row span:nth-child(8),
  .trade-preview-head span:nth-child(9),
  .trade-preview-row span:nth-child(9),
  .trade-preview-head span:nth-child(10),
  .trade-preview-row span:nth-child(10),
  .trade-preview-head span:nth-child(12),
  .trade-preview-row span:nth-child(12) {
    display: none;
  }
}
