/* Base styles for all pagination buttons */
.dygpg-pagination {
    width: 100%;
    text-align: center;
    margin-top: 15px;
}
.dygpg-pagination div {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 5px;
    background-color: var(--agb-accent-color);
    color: white;
    border: none;
    cursor: pointer;  /* this makes the cursor appear as a hand, as it would for a link */
    transition: transform 0.3s ease;
}

/* Change text color to the accent color and background to white for the active page */
.dygpg-pagination div.dygpg-pagination-active {
    background-color: white;
    color: var(--agb-accent-color);
    border: 2px solid var(--agb-accent-color);
}

/* Make sure text doesn't select on click */
.dygpg-pagination div::selection {
    background: transparent;
}
.dygpg-pagination-link:hover, .dygpg-pagination-prev:hover, .dygpg-pagination-next:hover {
    transform: scale(1.1);
}