/*Style for Table*/
table, th , td {
border: 1px solid grey;
border-collapse: collapse;
padding: 2px;
font-family: arial;
margin-bottom:1px;
margin-top:1px; 
margin-left:1px;
}
/*Style for Table Header*/
th {
background: darkblue;
color: white;
text-align: left;
}
/*Style for Alternate Rows*/
table tr:nth-child(odd) {
background-color: #dce3f9;
}
table tr:nth-child(even) {
background-color: #dce3f9;
}