/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 29 2026 | 23:10:01 */
/* Centers the table at 80% of the content area width. The border-collapse property removes the doubled borders that appear between adjacent cells by default. The table-layout: fixed property locks column widths rather than letting the browser calculate them from cell content. */
#tablepress-2 {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	border-collapse: collapse;
	table-layout: fixed;
}
/* The TablePress table name renders above the table. Matched to the table width and centered so it aligns visually with the table below it. */
#tablepress-2-name {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	font-size: 20px;
}
/* Header row — club blue background, white bold text, black border */
#tablepress-2 th {
	border: 1px solid black;
	background: #5685BD;
	color: #FFF;
	font-weight: 600;
	padding: 10px;
	text-align: left;
}
/* Body cells — black border, padding, word wrap for fixed-width columns */
#tablepress-2 td {
	border: 1px solid black;
	padding: 10px;
	overflow-wrap: break-word;
}
/* Explicit widths for each column. Only take effect because table-layout: fixed is set on the table above. Total = 100%. */
#tablepress-2 .column-1 {
	width: 12.5%;
}
#tablepress-2 .column-2 {
	width: 20%;
}
#tablepress-2 .column-3 {
	width: 12.5%;
}
#tablepress-2 .column-4 {
	width: 17.5%;
}
#tablepress-2 .column-5 {
	width: 17.5%;
}
#tablepress-2 .column-6 {
	width: 20%;
}
/* All columns are left-aligned. Defined explicitly per column so alignment can be adjusted independently without touching other columns. */
#tablepress-2 td.column-1,
#tablepress-2 td.column-2,
#tablepress-2 td.column-3,
#tablepress-2 td.column-4,
#tablepress-2 td.column-5,
#tablepress-2 td.column-6 {
	text-align: left;
}
/* Subtle gray background on hover with a short transition to avoid a jarring flash. Applied only to tbody rows, not the header or footer. */
#tablepress-2 tbody tr {
	transition: background-color 0.15s ease;
}
#tablepress-2 tbody tr:hover {
	background: #F7F7F7;
}
/* Footer row renders as a solid club blue bar with no visible text. The font-size: 0 and line-height: 0 properties collapse any text content to nothing. Top border removed to avoid doubling with the last body row's bottom border. Left, right, and bottom borders close the visual frame. */
#tablepress-2 tfoot th {
	background: #5685BD;
	padding: 0;
	height: 20px;
	line-height: 0;
	font-size: 0;
	width: auto;
	border-top: 0;
	border-right: 1px solid black;
	border-bottom: 1px solid black;
	border-left: 1px solid black;
}
