/* Contador */
.jpc-counter {
    font-size: 14px;
    color: #333;
}

/* Paginación */
.jpc-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.jpc-page-info {
    font-weight: 500;
}

.jpc-arrow {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 5px 10px;
    transition: color 0.3s ease, opacity 0.3s ease;
    line-height: 1;
}

.jpc-arrow:hover:not(.disabled) {
    color: #dc2626;
}

.jpc-arrow.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.jpc-arrow:focus {
    outline: none;
}
