/* Prevent text selection and image dragging globally */
* {
    user-select: none;
    -webkit-user-select: none;
}

img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* Re-enable clicks on the nav brand logo */
#nb621261 > img {
    pointer-events: auto;
    cursor: pointer;
}


/* Re-enable interactions on clickable elements */
a, button, input, textarea, select,
[role="button"],
[tabindex] {
    user-select: auto;
    -webkit-user-select: auto;
    pointer-events: auto;
    cursor: pointer;
}
