/*
  Cursor fix: Show native cursor, custom cursor disabled.
  The custom cursor JS was not working reliably, causing invisible cursor.
  v2: Always show native cursor.
*/

/* Remove cursor:none from ALL elements */
html, html body, html body * {
  cursor: auto !important;
}

html body a,
html body button,
html body [role="button"],
html body input,
html body label,
html body select,
html body textarea {
  cursor: pointer !important;
}

/* Hide the custom cursor element entirely */
.sr-cursor,
.sr-cursor-trail {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
