/* Header tabel tetap center */
thead {
    text-align: center;
    background-color: #ffc0cb; /* soft pink untuk header tabel */
    color: #000; /* teks hitam supaya kontras */
}

/* Kolom aksi (jika ada) center */
.aksi {
    text-align: center;
}

/* Background section kader soft pink */
.kader {
    background-color: #ffe6f0; /* soft pink yang lembut */
    /* background-image: url(../img/tamplate/bg1.jpg); */
    padding: 40px 0; /* beri padding supaya nyaman */
}

/* Tabel responsif dengan border lembut */
.table-bordered {
    border: 1px solid #ffc0cb;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #ffc0cb;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #fff0f5; /* pink muda untuk baris ganjil */
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: #ffe6f0; /* pink lebih soft untuk baris genap */
}

/* H1 di section */
.home-title h1 {
    font-weight: 700;
    color: #d63384; /* pink gelap untuk judul */
}