table {
    width: 100%;
    border-collapse: collapse;
}
    /* CSS untuk membuat tabel responsif */
    .image-table {
        width: 100%;
        border-collapse: collapse;
    }
    .image-table td {
        width: 25%; /* 4 kolom per baris */
        padding: 10px;
    }
    .image-table img {
        max-width: 100%;
        height: auto;
    }
td {
    padding: 8px;
    text-align: center;
}
img {
 
    height: auto;
    cursor: pointer;
}
.pagination {
    margin-top: 20px;
    text-align: center;
}
.pagination button {
    padding: 8px 16px;
    margin: 0 2px;
    cursor: pointer;
}
/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}
.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}
.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
}
.lightbox-content, .lightbox-caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}
@keyframes zoom {
    from {transform: scale(0.1)}
    to {transform: scale(1)}
}
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}
.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}