

#container
{
	max-width: 1200px;
}


table { 
color: #333; 
border-collapse: collapse; 
border-spacing: 0; 
}

td, th { 
border: 1px solid transparent; /* No more visible border */
height: 30px; 
transition: all 0.3s;  /* Simple transition for hover effect */
}

th {
background: #4CB2FF;
font-weight: bold;
color: white;
}

td {
text-align: center;
}

/* Cells in even rows (2,4,6...) are one color */ 
tr:nth-child(even) td { background: #F1F1F1; }   

/* Cells in odd rows (1,3,5...) are another (excludes header cells)  */ 
tr:nth-child(odd) td { background: #FEFEFE; }  

tr td:hover { background: #FFF; color: grey; } /* Hover cell effect! */

tr.highlight td
{
	background-color:rgba(76,178,255,0.2);'	
}



input.submit
{
	margin-left: auto;
	margin-right: auto;	
	height: 30px;
	width: 75px;
}

	