/* Warna baris tabel (genap) */
.tabulator .tabulator-row:nth-child(even) {
  background-color: #f2f2f2; /* Warna abu terang */
}

/* Warna baris tabel (ganjil) */
.tabulator .tabulator-row:nth-child(odd) {
  background-color: #ffffff; /* Warna putih */
}

/* Warna saat baris dihover */
.tabulator .tabulator-row:hover {
  background-color: #cce5ff; /* Warna biru terang */
}

/* Warna teks kolom */
.tabulator .tabulator-cell {
  color: #000; /* Warna teks abu gelap */
}

/* Warna teks header */
.tabulator .tabulator-header .tabulator-col {
  background-color: #fff; /* Warna biru */
  font-weight: bold;
  color: #000;
}

.tabulator .tabulator-footer {
    background-color: #fff;
    border-top: 1px solid #999;
    color: #000;
}

.tabulator .tabulator-footer .tabulator-page {
    background: #dfdfdf;
    border: 1px #000;
}