/* ── Reset ── */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Interactive elements always show the pointer cursor */
button,
[role="button"],
summary,
label[for],
a[href],
[data-action*="click->"],
[onclick] {
  cursor: pointer;
}

button:disabled,
button[disabled],
[role="button"][aria-disabled="true"] {
  cursor: not-allowed;
}
