table {
	border-collapse: collapse;
	border-radius: 20px;
}

table thead {
	
	
}

thead th {
	color: var(--white);
	font-weight: bold;
	padding: 10px;
	background-color: var(--cerulean);
	font-size: 20px;
}

thead tr:first-child th:first-child { border-top-left-radius:20px; }
thead tr:first-child th:last-child { border-top-right-radius:20px; }

tbody tr:nth-child(2n+1) { background-color: #ddf6ff; }
tbody tr:nth-child(2n) { background-color:#f0fbff; }
tbody tr:hover { background-color: #00ffc5; }

tbody td:first-child { border-left:0px; }
tbody td:last-child { border-right:0px; }

tbody td {
	border-left: 1px solid var(--grey);
	border-right: 1px solid var(--grey);
	padding: 10px;
}