/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 29 2026 | 23:08:30 */
/* 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-40 {
	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-40-name {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	font-size: 20px;
}
/* Header row — club blue background, white bold text, black border */
#tablepress-40 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-40 td {
	border: 1px solid black;
	padding: 10px;
	overflow-wrap: break-word;
}
/* Explicit widths for each column. These only take effect because table-layout: fixed is set on the table in section 1. Total = 100%. */
#tablepress-40 .column-1 {
	width: 25%;
}
#tablepress-40 .column-2 {
	width: 50%;
}
#tablepress-40 .column-3 {
	width: 12.5%;
}
#tablepress-40 .column-4 {
	width: 12.5%;
}
/* All columns are left-aligned. Defined explicitly per column so alignment can be adjusted independently in future without touching other columns. */
#tablepress-40 td.column-1,
#tablepress-40 td.column-2,
#tablepress-40 td.column-3,
#tablepress-40 td.column-4 {
	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-40 tbody tr {
	transition: background-color 0.15s ease;
}
#tablepress-40 tbody tr:hover {
	background: #F7F7F7;
}
/* The 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. The top border is removed to avoid doubling with the last body row's bottom border. Left, right, and bottom borders close the visual frame. */
#tablepress-40 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;
}
