/* ===== PAGINATION WRAPPER ===== */
.pagination {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    gap: 6px;
}

/* Centralização opcional */
.pagination.justify_center {
    justify-content: center;
}

/* ===== ITEM ===== */
.page-item {
    display: inline-flex;
    border-radius: var(--border-radius-default);
}

.page-item.active .page-link{
    background-color: #3483FA !important;
}

/* ===== BUTTON / LINK ===== */
.page-link {

    padding: 12px 12px;
    cursor: pointer;
    background-color: #bbb;
    color: var(--color-white-default);
    border: 0;
    font-size: 20px;
    border-radius: var(--border-radius-default);

    /* min-width: 36px;
    height: 36px;
    

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 500;

    border-radius: 6px;
    border: 1px solid #d1d5db; */
    /* background-color: #ffffff; */
    /* color: #374151;

    cursor: pointer;
    user-select: none;

    transition: all 0.2s ease; */
}

/* ===== HOVER ===== */
.page-link:hover:not(:disabled) {
    background-color: #3483FA;
    border-color: #9ca3af;
    color: #111827;
}

/* ===== ACTIVE PAGE ===== */
.page-item.active .page-link {
    /* background-color: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    cursor: default; */
    border-radius: var(--border-radius-default);
}

/* ===== DISABLED ===== */
.page-item.disabled .page-link,
.page-link:disabled {
    /* background-color: #f9fafb;
    border-color: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    pointer-events: none; */
}

/* ===== ARROWS ===== */
.page-link svg {
    width: 16px;
    height: 16px;
}

/* ===== FOCUS (ACESSIBILIDADE) ===== */
.page-link:focus {
    outline: none;
}

.page-link:focus-visible {
    /* box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.35); */
}

/* ===== MOBILE ===== */
@media (max-width: 640px) {
    .page-link {
        min-width: 32px;
        height: 32px;
        font-size: 13px;
        padding: 0 10px;
    }
}
