/* player-patch.css — FixTheAngels.com career stats table fix
   Adds .career-table aliases for .stat-table to fix styling regression
   Include: <link rel="stylesheet" href="/players/player-patch.css"> */

/* ── career-table aliases (mirrors .stat-table styles from player.css) ── */
.career-table-wrap {
  border: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 2.5rem;
}
.career-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  white-space: nowrap;
}
.career-table th {
  background: #0a0005;
  padding: 0.55rem 0.85rem;
  text-align: left;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  border-bottom: 1px solid var(--border);
}
.career-table td {
  padding: 0.6rem 0.85rem;
  border-bottom: 1px solid rgba(186,0,33,0.05);
  color: var(--warm-gray);
}
.career-table tr:last-child td { border-bottom: none; }
.career-table tr:hover td { background: rgba(186,0,33,0.04); }
.career-table td.yr { font-weight: 600; color: var(--offwhite); }
.career-table td.hi { color: var(--gold-light); font-weight: 600; }
.career-table tr.live-row td { background: rgba(186,0,33,0.07); }
.career-table tr.live-row td.yr { color: var(--red); }

/* Also style stat-table and career-table identically for any page variation */
.stat-table-wrap, .career-table-wrap {
  border: 1px solid var(--border);
  overflow-x: auto;
  margin-bottom: 2.5rem;
}
