/* ===== TablePress: Header Biru + Selang-Seling + Garis + Rata Tengah ===== */
/* Garis pada semua sel */
.tablepress th,
.tablepress td {
	border: 1px solid #dee2e6 !important;
}

/* Header: biru, teks putih, tinggi lebih besar */
.tablepress > thead > tr > th,
.tablepress > thead > tr > td {
	background-color: #1e73be !important;
	color: #ffffff !important;
	font-weight: bold;
	padding-top: 25px !important;
	padding-bottom: 25px !important;
	line-height: 1.6 !important;
}

/* Header kolom angka & aksi: rata tengah */
.tablepress > thead > tr > th:nth-child(2),
.tablepress > thead > tr > th:nth-child(3),
.tablepress > thead > tr > th:nth-child(4),
.tablepress > thead > tr > th:nth-child(5) {
	text-align: center !important;
}

/* Rata tengah kolom angka (body) */
.tablepress > tbody > tr > td:nth-child(2),
.tablepress > tbody > tr > td:nth-child(3),
.tablepress > tbody > tr > td:nth-child(4) {
	text-align: center !important;
}

/* Rata tengah kolom Aksi (body) */
.tablepress > tbody > tr > td:nth-child(5) {
	text-align: center !important;
}

/* Baris ganjil (1, 3, 5...): putih */
.tablepress > tbody > tr.row-odd > td {
	background-color: #ffffff !important;
	color: #333333 !important;
}

/* Baris genap (2, 4, 6...): hijau */
.tablepress > tbody > tr.row-even > td {
	background-color: #d4edda !important;
	color: #333333 !important;
}