
.mtable, .hover-table {
border-collapse:collapse;
width:70%;
margin:20px auto;
}
.mtable td, .mtable th, .hover-table td , .hover-table th {
	border: 1px solid lightblue;
	text-align:center;
	padding:10px;
}

.mtable th{
 	background-color:#3f8f8b;
 	color:white;
 	border:1px solid black;
 	width:30vw;
 }

.mtable th:nth-child(even) {
	background-color:#2a6461;
}

.mtable tbody tr:nth-child(even){
	background-color: #f2f2f2;
} 
.mtable tbody tr:hover{
	background-color:#ddd;
}

.hover-table th{
	background-color: #007bff;
	color:white;
}


.hover-table tbody tr:nth-child(even) {
	 background-color: #e6f0ff;
	 }
.hover-table tbody tr:hover{
	background-color:#cce0ff;
	}
.hover-table td:hover{
	font-size: 1.1em;
	font-weight: bold;
	background-color: #ffc107;
	cursor: pointer;
	transition: font-size 0.2s, background-color 0.2s;
}
