/* TablePress Professional Styling */
.tablepress {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	border: 1px solid #ddd;
	font-family: Arial, sans-serif;
	font-size: 16px;
}

/* Header Styling */
.tablepress thead th {
	background-color: #004080;
	color: #fff;
	text-align: left;
	padding: 12px;
	border-bottom: 2px solid #003366;
}

/* Table Body */
.tablepress tbody tr {
	background-color: #f8f9fa;
	transition: background-color .3s ease-in-out;
}

.tablepress tbody tr:nth-child(even) {
	background-color: #e9ecef;
}

.tablepress tbody tr:hover {
	background-color: #d6e0f5;
}

/* Table Cells */
.tablepress td,
.tablepress th {
	padding: 10px;
	border: 1px solid #ccc;
}

/* Footer (if used) */
.tablepress tfoot th {
	background-color: #004080;
	color: #fff;
	font-weight: bold;
}

/* Responsive */
@media screen and (max-width: 768px) {
	.tablepress td,
	.tablepress th {
		padding: 8px;
		font-size: 14px;
	}
}