#score_table_container table {
  width: 100%;
  max-width: 600px;
  margin: auto;
  margin-bottom: 16px;
  border-collapse: collapse;
  font-size: 16px;
  background-color: rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

#score_table_container table tbody td {
  padding: 6px 8px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  border-right: 1px solid rgba(0,0,0,0.1);
}

#score_table_container table tbody td:last-child {
  border-right: none;
}

#score_table_container table thead th {
  padding: 8px;
  /* background-color: rgba(218, 165, 32, 0.5); */
  font-weight: bold;
  border-right: 1px solid rgba(0,0,0,0.1);
}

#score_table_container table thead th:last-child {
  border-right: none;
}

#score_table_container table tbody tr:nth-child(even) {
  background-color: rgba(0,0,0,0.05);
}

#score_table_container table tbody tr:last-child td {
  border-bottom: none;
}

#score_table_container table tbody tr:hover {
  background-color: rgba(218, 165, 32, 0.15);
}

/* Sortable Styles */
#score_table_container .sortable {
  cursor: pointer;
  user-select: none;
  position: relative;
}

#score_table_container .sortable:hover {
  background-color: rgba(218, 165, 32, 0.75);
}

#score_table_container .sort-arrows {
  display: inline-block;
  margin-left: 4px;
  font-size: 10px;
  line-height: 8px;
  vertical-align: middle;
}

#score_table_container .sort-arrows:not(.active-column) {
  opacity: 0.4;
}

#score_table_container .sort-up, 
#score_table_container .sort-down {
  display: block;
  color: rgba(0,0,0,0.3);
  transition: color 0.2s;
}

#score_table_container .sort-up {
  margin-bottom: 2px;
}

#score_table_container .sort-up.active, 
#score_table_container .sort-down.active {
  color: rgba(0,0,0,0.8);
  font-weight: bold;
}
