.table-wrapper {
  position: relative;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

tr {
  border-top: 1px solid var(--border);
}

tr:last-child {
  border-bottom: 1px solid var(--border);
}

th, td {
  padding:12px 8px;
  text-align:center;
  white-space:nowrap;
}

td {
  font-size: 0.9rem;
}

th {
  background:#f0f0f2;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size: 0.8rem;
}

.gold {
  background: rgba(var(--gold), 0.25);
}
.silver {
  background: rgba(var(--silver), 0.25);
}
.bronze {
  background: rgba(var(--bronze), 0.25);
}

.sticky-first-col td:first-child,
.sticky-first-col th:first-child {
  position:sticky;
  left:0;
  z-index:1;
}

.sticky-first-col td:first-child {
  background: #fff;
}

/* 개인 세부 기록 */
.detail-history-table {
  max-height: 600px;
  overflow: auto;
}

.detail-history-table thead {
  position: sticky;
  top: 0;
  z-index: 1;
}

.detail-history-table th,
.detail-history-table td {
  border:1px solid var(--border);
}

.score-high{
  color: rgb(0, 190, 19);
  font-weight:600;
}
.score-low{
  color: rgb(223, 65, 65);
  font-weight:600;
}
