/* ── Recent Trades Module ────────────────────────────────────────────────── */

.rt-wrap {
  font-family: system-ui, -apple-system, sans-serif;
  color: #1a202c;
  margin: 16px 0;
  max-width: 100%;
}

.rt-table-wrap {
  overflow-x: auto;
  border: 1px solid #bee3f8;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.rt-table thead {
  background: #1e3a5f;
}

.rt-th {
  padding: 10px 12px;
  text-align: left;
  color: #90cdf4;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
  border-right: 1px solid #2d5282;
}

.rt-th:last-child { border-right: none; }

.rt-row {
  border-bottom: 1px solid #ebf8ff;
  transition: background 0.1s;
}

.rt-row:last-child { border-bottom: none; }
.rt-row:nth-child(even) { background: #f0f8ff; }
.rt-row:hover { background: #ebf8ff; }

.rt-table td {
  padding: 9px 12px;
  vertical-align: middle;
  color: #2d3748;
  border-right: 1px solid #ebf8ff;
  white-space: nowrap;
}

.rt-table td:last-child { border-right: none; }

.rt-time   { color: #a0aec0; font-size: 11px; }
.rt-trader { color: #718096; font-size: 12px; }
.rt-name   { font-weight: 600; color: #1e3a5f; white-space: normal; }
.rt-shares { text-align: right; font-weight: 600; }
.rt-price  { text-align: right; font-weight: 700; color: #1e3a5f; }
.rt-prev   { text-align: right; color: #718096; }
.rt-chg    { text-align: right; }

.rt-player-link {
  color: #1e3a5f;
  font-weight: 700;
  text-decoration: none;
}

.rt-player-link:hover {
  color: #2b6cb0;
  text-decoration: underline;
}

.rt-pos-badge {
  display: inline-block;
  background: #ebf8ff;
  color: #2b6cb0;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid #bee3f8;
}

.rt-type-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rt-empty {
  text-align: center;
  color: #a0aec0;
  font-style: italic;
  padding: 20px;
}

@media (max-width: 600px) {
  .rt-th, .rt-table td { padding: 7px 8px; font-size: 12px; }
  .rt-trader { display: none; }
}
