/* table.css */
table, th, td {
	border: 1px solid black;
}

table {
	border-collapse: collapse;
}

tr:hover {
	background-color: #f5f5f5;
}

th {
	background-color: #4CAF50;
	color: white;
}

a {
	color: blue;
}