.topstats-grid{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px 16px;
	grid-auto-rows: minmax(16px, auto);
	margin: 0px auto;
	width: 100%;
	max-width: 816px;
	color: #FFF;
}

.topstats-entry{
}

.topstats{
	margin: auto;
	width: 100%;
	max-width: 400px;
	padding: 0px;
		
	font-size: 18px;
	color: #FFF;
	text-align: center;
	overflow: hidden;
	border-collapse: collapse;
}

.topstats .evenrow{
	background-color: var(--bgBlue);
}

.topstats .oddrow{
	background-color: #0002;
}

.topstats td{
	height: 30px;
	width: 40px;
	min-width: 40px;
	
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	
	/*border: 2px solid var(--bgNavy);*/
	border: 2px;
	border-color: var(--bgNavy);
	border-style: solid solid none solid;
}

.topstats .keycell{
	background-color: #FFF;
	color:  var(--red);
}

.topstats .table-header td{
	height: 24px;
	
	background-color: var(--blue);
	color: #FFF;
	/*border: 2px solid var(--blue);*/
	border: 2px;
	border-color: var(--blue);
	border-style: none solid none solid;
	
	font-size: 14px;
}

.topstats .table-header-note td{
	height: 24px;
	
	background-color: var(--bgBlue);
	color: #FFF;
	border: 2px solid var(--bgBlue);
	
	font-size: 14px;
}


.topstats .table-header a {
	text-decoration: none;
	color: var(--red);
}

.topstats .table-header a:hover {
	color: var(--blue);
}

.topstats .name{
	width: auto;
	min-width: 110px;
	text-align: left;
	padding: 0px 8px;
}

.topstats .totals{
	text-align: right;
	font-style: italic;
	padding: 0px 4px;
	background-color: var(--bgNavy);
}

.topstats.player:hover tr{
	background-color: #FFF;
	color: var(--red);

}

@media screen and (max-width: 760px)
{	
	.topstats-grid{
		grid-template-columns: repeat(1, 1fr);
	}
}

@media screen and (max-width: 380px)
{	
	.topstats{
		font-size: 14px;
	}
		
	.topstats td{
		height: 22px;
		width: 34px;
		min-width: 34px;
	}
}