/* Custom styles - Tailwind handles most styling */

/* Global cursor pointer for all clickable elements */
button,
a,
[role="button"],
[type="button"],
[type="submit"],
[type="reset"],
input[type="checkbox"],
input[type="radio"],
select,
.cursor-pointer {
  cursor: pointer;
}

/* Ensure disabled elements show not-allowed cursor */
button:disabled,
a.disabled,
[disabled] {
  cursor: not-allowed;
}
