/* Global interactive cursor for links and buttons */
a,
button,
[role="button"],
input[type="button"],
input[type="submit"],
input[type="reset"],
summary {
    cursor: pointer;
}

a:disabled,
button:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled,
input[type="reset"]:disabled {
    cursor: not-allowed;
}
