.overflow-hidden {
    overflow: hidden
}

.pagination-container {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 12px;
}

.paginate-buttons {
    height: 40px;
    line-height: 40px;
    border-radius: 999px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    background-color: rgb(242, 242, 242);
    color: black;
    transition: all linear .3s;
}

.paginate-buttons:hover {
    background-color: rgb(var(--primary));
    color: white;
}

.number-buttons {
    width: 40px;
}

.back-button,
.next-button {
    padding-inline: 16px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.active-page {
    background-color: rgb(var(--primary));
    color: white;
}
