/**** Game Log Styles for 2020 Red Wings site ****/

/* future games opaque - no win/loss/otl class yet  */
tr {
	color: #383838;
    color: var(--puck);
    font-size: 1rem;
}

/* team names align left */
td:nth-child(4) {
    text-align: left;
}


/* hide certain columns on small displays */
@media screen and (max-width: 900px) {
	th:nth-child(1),
	td:nth-child(1),
	th:nth-child(5),
	/* colspan:2 */
	td:nth-child(6) {
	    display: none;
	}
	tr {font-size: .8rem;}
}