Fix cursor not turning to pointer on some buttons/links

Like the ones on the sidebar.

// ==UserScript==
// @name         Fix cursor not turning to pointer on some buttons/links
// @namespace    https://github.com/nate-kean/
// @version      2025-09-30
// @description  Like the ones on the sidebar.
// @author       Nate Kean
// @match        https://jamesriver.fellowshiponego.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=fellowshiponego.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    document.head.insertAdjacentHTML("beforeend", `
        <style id="nates-cursor-pointer-visual-fix">
            data-link {
                cursor: pointer;
            }
        </style>
    `);
})();