/* Make TablePress table scrollable and center-aligned */
.tablepress {
	display: block;
	width: 100% !important;
	overflow-x: auto;
	margin: 0 auto;
	border-collapse: collapse;
}

/* Fix alignment on mobile */
@media (max-width: 768px) {
	.tablepress td,
	.tablepress th {
		white-space: normal !important;
		word-wrap: break-word;
		text-align: left;
	}
}

/* Make TablePress full-width and prevent unnecessary wrapping */
.tablepress {
	width: 100% !important;
	max-width: 100% !important;
	display: block;
	overflow-x: auto;
	font-size: 11px !important;
	white-space: nowrap;
}

/* Table header and cell styling */
.tablepress th,
.tablepress td {
	white-space: nowrap !important; /* prevent wrapping */
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 10px;
	text-align: left;
}

/* Optional: allow horizontal scroll if content overflows */
.tablepress-wrapper {
	overflow-x: auto;
}

.tablepress thead th {
	font-size: 11px !important;
}