/* Pagination wrapper */
.gb-pagination {
    margin-top: 25px;
    display: flex;
    gap: 6px;
}

/* Base page button */
.gb-pagination .page-item .page-link {
    background: #f7c948; /* warning yellow */
    color: #3b2f00;
    border: 1px solid #e0a800;
    padding: 8px 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.2s ease-in-out;
    text-decoration: none;
}

/* Hover */
.gb-pagination .page-item .page-link:hover {
    background: #ffdd57;
    border-color: #d39e00;
    color: #1f1600;
}

/* ACTIVE */
.gb-pagination .page-item.active .page-link {
    background: #d39e00;   /* darker warning */
    border-color: #b88700;
    color: #fff;
    cursor: default;
}

/* Disabled states (if you add them) */
.gb-pagination .page-item.disabled .page-link {
    background: #e4e4e4;
    border-color: #cccccc;
    color: #777;
    cursor: not-allowed;
}
