.nextpage-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.nextpage-pagination a {
    margin: 0 5px;
    padding: 8px 12px;
    color: #666;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nextpage-pagination a:hover {
    background-color: #f5f5f5;
    color: #333;
}

.nextpage-pagination a.current {
    background-color: #0073aa;
    color: white;
    border-color: #0073aa;
}

.nextpage-pagination .prev-page,
.nextpage-pagination .next-page {
    font-weight: bold;
}

/* Estilos para os botões de navegação */
.bd-nextpage-pagination {
    margin: 30px 0;
    text-align: center;
}

.bd-nextpage-buttons {
    display: flex;
    justify-content: space-between;
}

.bd-nextpage-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.bd-nextpage-button:hover {
    background-color: #005177;
    color: #fff;
}

.bd-nextpage-prev {
    margin-right: auto;
}

.bd-nextpage-next {
    margin-left: auto;
}