/* General table styling */
#synot-cg-table {
	display: grid;
	gap: 1px;
	border: 1px solid #ddd;
	max-width: 600px;
	margin: 0 auto;
	font-size: 16px;
}

#synot-cg-table > .table-header,
#synot-cg-table > .table-row {
	display: grid;
	grid-template-columns: 1fr 1.4fr 0.8fr;
	position: relative;
	background-color: white;
	text-align: center;
	min-height: 37px; /* Set fixed height */
	align-items: center; /* Vertically center content */
	justify-items: center; /* Horizontally center content */
}

#synot-cg-table > .table-header {
	font-weight: bold;
	background-color: #f4f4f4; /* Adjusted header background */
	font-size: 17px;
}

#synot-cg-table > .table-row:nth-child(odd) {
	background: rgba(0, 0, 0, 0.03);
}

#synot-cg-table > .table-row:hover {
	background-color: #f9f9f9;
}

/* Row link overlay */
#synot-cg-table .row-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2; /* Above the row and the link */
	opacity: 0; /* Invisible but functional */
}

/* Play button styling */
#synot-cg-table .play-button {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #cab841;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	z-index: 1; /* Above row */
}

/* Show button on row hover */
#synot-cg-table > .table-row:hover .play-button {
	display: block;
}



.synot-table-logo img {
	border-radius: 10px;
	display: block;
	margin: 0 auto;
}

.synot-table-logo {
	margin-bottom: 15px;
	display: block;
}

.synot-table-logo:hover {
	opacity: 0.8;
}


.synot-caption {
	text-align: center;
	font-weight: bold;
	margin-block: 10px;
	font-size: 17px;
}



/* General table styling */
#showdown-cg-table {
	display: grid;
	gap: 1px;
	border: 1px solid #ddd;
	max-width: 600px;
	margin: 0 auto;
	font-size: 16px;
}

#showdown-cg-table > .table-header,
#showdown-cg-table > .table-row {
	display: grid;
	grid-template-columns: 1fr 1.4fr 0.8fr;
	position: relative;
	background-color: white;
	text-align: center;
	min-height: 37px; /* Set fixed height */
	align-items: center; /* Vertically center content */
	justify-items: center; /* Horizontally center content */
}

#showdown-cg-table > .table-header {
	font-weight: bold;
	background-color: #f4f4f4; /* Adjusted header background */
	font-size: 17px;
}

#showdown-cg-table > .table-row:nth-child(odd) {
	background: rgba(0, 0, 0, 0.03);
}

#showdown-cg-table > .table-row:hover {
	background-color: #f9f9f9;
}

/* Row link overlay */
#showdown-cg-table .row-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2; /* Above the row and the link */
	opacity: 0; /* Invisible but functional */
}

/* Play button styling */
#showdown-cg-table .play-button {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #e1001a;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	z-index: 1; /* Above row */
}

/* Show button on row hover */
#showdown-cg-table > .table-row:hover .play-button {
	display: block;
}



.showdown-table-logo img {
	border-radius: 10px;
	display: block;
	margin: 0 auto;
}

.showdown-table-logo {
	margin-bottom: 15px;
	display: block;
}

.showdown-table-logo:hover {
	opacity: 0.8;
}


.showdown-caption {
	text-align: center;
	font-weight: bold;
	margin-block: 10px;
	font-size: 17px;
}
