/* Global cursor:pointer for all clickable elements (V1 launch polish, iter 20).
   Loaded by every public HTML page after the page's own <style> so this wins on cursor only. */
a[href],
button:not([disabled]),
[onclick],
[role="button"],
.card,
.clickable,
input[type="submit"],
input[type="button"],
input[type="checkbox"],
input[type="radio"],
input[type="reset"],
select,
label[for],
summary {
  cursor: pointer !important;
}

/* Disabled / non-actionable */
[disabled],
button[disabled],
.disabled {
  cursor: not-allowed !important;
}
