th.snippet, td.snippet {
  white-space: nowrap;
}

/* Data sample table: smaller font and vertical borders */
div[style*="overflow-x: auto;"] table {
  font-size: 0.92em; /* header font size */
  border-collapse: collapse;
}
div[style*="overflow-x: auto;"] th,
div[style*="overflow-x: auto;"] td {
  border: 1px solid #ccc;
  padding: 4px 8px;
}

/* Make publish_date column narrower */
div[style*="overflow-x: auto;"] th:first-child,
div[style*="overflow-x: auto;"] td:first-child {
  min-width: 110px;
  max-width: 130px;
  width: 10vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Make table cell font smaller than header */
div[style*="overflow-x: auto;"] td {
  font-size: 0.85em;
}

/* Make players column wider */
div[style*="overflow-x: auto;"] td:nth-child(7),
div[style*="overflow-x: auto;"] th:nth-child(7) {
  min-width: 160px;
  max-width: 220px;
  white-space: nowrap;
} 