/* Cabeçalho da tabela */
.tablepress thead th {
	background-color: #003366;
	color: #ffffff;
	padding: 12px;
	font-size: 15px;
	border: none;
	text-align: left;
}

/* Corpo da tabela */
.tablepress tbody td {
	padding: 12px;
	font-size: 14px;
	color: #333;
	border-bottom: 1px solid #ddd;
}

/* Linhas alternadas */
.tablepress tbody tr:nth-child(even) {
	background-color: #f9f9f9;
}

/* Hover */
.tablepress tbody tr:hover {
	background-color: #e6f0ff;
}

/* Links */
.tablepress a {
	color: #003366;
	text-decoration: none;
	font-weight: 500;
}

.tablepress a:hover {
	text-decoration: underline;
}

/* Tabela responsiva */
@media screen and (max-width: 768px) {

	.tablepress {
		font-size: 13px;
	}

}