/* TABLEPRESS – Style épuré, luxe et naturel */
.tablepress {
	width: 100%;
	border-collapse: collapse;
	font-family: 'Lora', serif;
	background-color: #1b1b1b; /* fond charbon élégant */
	color: #f2f2f2;
	font-size: 16px;
	overflow-x: auto;
}

/* En-tête */
.tablepress thead th {
	background-color: #232323;
	color: #d4af37; /* doré plus naturel */
	font-weight: 600;
	padding: 12px 10px;
	text-align: center;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Cellules */
.tablepress tbody td {
	padding: 12px 10px;
	border-bottom: 1px solid rgba(255,255,255,0.07);
	text-align: center;
	transition: color .3s ease;
}

/* Alternance douce */
.tablepress tbody tr:nth-child(even) {
	background-color: #202020;
}

/* Survol */
.tablepress tbody tr:hover {
	background-color: #292929;
}

.tablepress tbody tr:hover td {
	color: #d4af37;
}

/* Scroll horizontal mobile */
@media (max-width: 768px) {
	.tablepress {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}

	.tablepress thead {
		display: table-header-group;
	}

	.tablepress tbody td {
		display: table-cell;
	}
}