ul.simple-pagination {
    list-style: none;
    display: inline-flex; /* Menggunakan inline-flex */
    justify-content: center; /* Posisikan di tengah */
    align-items: center; /* Align secara vertikal di tengah */
    padding: 10px;
    margin: 0;
}

.simple-pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.simple-pagination li {
    list-style: none;
    margin: 0 3px; /* Memberi jarak antar item */
    display: inline; /* Pastikan elemen li dalam satu baris */
}

.light-theme a, .light-theme span {
    color: black; /* Warna teks */
    font-size: 14px; /* Ukuran teks lebih kecil */
    font-weight: bold;
    line-height: 30px; /* Sesuaikan dengan tinggi elemen */
    text-align: center;
    border: 2px solid var(--bs-secondary); /* Warna border */
    min-width: 30px; /* Lebar minimum item */
    padding: 0 10px; /* Sesuaikan padding */
    border-radius: 15px; /* Membulatkan border */
    background-color: var(--bs-secondary); /* Background kuning */
    transition: background-color 0.3s ease, border-color 0.3s ease;
    display: inline-block; /* Tambahkan ini untuk inline */
}

.light-theme a:hover, .light-theme li:not(.disabled):not(.active) span:hover {
    text-decoration: none;
    background-color: var(--bs-secondary-hover); /* Hover lebih terang */
}

.light-theme .current {
    background-color: transparent;
    color: black;
    border-color: var(--bs-secondary);
}

.light-theme .ellipse {
    background: none;
    border: none;
    cursor: default;
}

/* Prev and Next Button Styles (Smaller) */
.light-theme .prev, .light-theme .next {
    padding: 5px; /* Ukuran padding lebih kecil */
    border-radius: 15px; /* Membulatkan tombol prev/next */
    background-color: var(--bs-secondary); /* Warna kuning */
    border: 2px solid var(--bs-secondary);
    color: black;
    font-size: 14px; /* Ukuran font lebih kecil */
}

.light-theme .prev:hover, .light-theme .next:hover {
    background-color: var(--bs-secondary-hover); /* Hover */
}

/* Ellipsis Style */
.light-theme .ellipse {
    color: black;
    font-size: 14px; /* Ukuran font ellipsis */
    font-weight: bold;
}
