/* --- Paginación --- */
.jewel-finder-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.jewel-finder-pagination .page-numbers {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    transition: all 0.2s ease-in-out;
}

.jewel-finder-pagination .page-numbers:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.jewel-finder-pagination .page-numbers.current {
    background-color: #333;
    color: #fff;
    border-color: #333;
    font-weight: bold;
}