You can use this css:
.inactiveLink {
pointer-events: none;
cursor: default;
}
And then assign the class to your html code:
page link
It makes the link not clickeable and the cursor style an arrow, not a hand as the links have.
or use this style in the html:
page link
but I suggest the first approach.