.playerstats{
	margin: auto;
	width: 100%;
	max-width: 430px;
	padding: 0px;
		
	font-size: 18px;
	color: #FFF;
	text-align: center;
	overflow: hidden;
	border-collapse: collapse;	
}

.opponentstats{
	margin: auto;
	width: 100%;
	max-width: 280px;
	padding: 0px;
		
	font-size: 18px;
	color: #FFF;
	text-align: center;
	overflow: hidden;
	border-collapse: collapse;	
}

.evenrow{
	background-color: var(--bgBlue);
}

.oddrow{
	background-color: #0002;
}

.highlightrow{
	background-color: var(--blue);
}

.playerstats td{
	padding: 0px;
	height: 30px;
	width: 38px;
	min-width: 38px;
	
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #FFF;
	border: 2px solid var(--bgNavy);
}

.opponentstats td{
	padding: 0px;
	height: 30px;
	width: 38px;
	min-width: 38px;
	
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #FFF;
	border: 2px solid var(--bgNavy);
}

.table-header td{
	height: 20px;
	
	background-color: #FFF;
	color: var(--red);
	border: 2px solid #FFF;
	
	font-size: 14px;
}

.playerstats .season{
	width: 40px;
	min-width: 40px;
	text-align: left;
	padding: 0px 8px;
}

.stat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	grid-auto-rows: minmax(16px, auto);
	
	max-width: 600px;
	margin: 16px 16px;
	padding: 0px;
}

.stat-entry {
	padding: 0px;
	height: 60px;
	max-width: 160px;
	display: grid; 
    grid-template-columns: auto;
	
	background-color: var(--blue);
	box-shadow: 0px 2px 6px var(--shadow);
	
	font-size: 18px;
	
	border: 3px;
	border-color: #FFF;
	border-style: none none solid none;
}

.stat-entry-header{
	height: 20px;
	padding: 5px 8px;
	
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-align: center;
	
	color: #FFF;
	text-align: center;
}

.stat-entry-body{
	height: 20px;
	padding: 5px 8px;
	
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-align: center;
	
	background-color: var(--bgNavy);	
	color: #FFF;
	text-align: center;
}

@media screen and (max-width: 570px)
{	
	.stat-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 430px)
{	
	.playerstats{
		font-size: 14px;
	}
		
	.playerstats td{
		height: 24px;
		width: 28px;
		min-width: 28px;
	}
	
	.playerstats .season{
		width: 40px;
		min-width: 40px;
	}
}

@media screen and (max-width: 340px)
{
	.playerstats{
		font-size: 13px;
	}
	
	.playerstats td{
		height: 22px;
		width: 25px;
		min-width: 25px;
	}
		
	.stat-entry {
		height: 48px;
		max-width: 140px;
		font-size: 14px;
	}
	
	.stat-entry-header{
		height: 16px;
		padding: 4px 8px;
	}

	.stat-entry-body{
		height: 16px;
		padding: 4px 8px;
	}
}