/* Custom cursor using views-img/SweezyCursors.png */

/* Base cursor across the document */
html, body {
  cursor: url("/views-img/SweezyCursors.png") 0 0, auto;
}

/* Ensure interactive elements keep the custom cursor */
a, button, [role="button"], input[type="button"], input[type="submit"], input[type="reset"], select, summary, label, .clickable, .clickable_image {
  cursor: url("/views-img/SweezyCursors.png") 0 0, pointer;
}

/* Text inputs can keep I-beam if you prefer default for typing; comment out next rule to force PNG everywhere */
input[type="text"], input[type="email"], input[type="search"], input[type="password"], textarea {
  cursor: text;
}
