/* Use the native cursor so it remains precise and independent of the 3D scene. */
@media (hover: hover) and (pointer: fine) and (forced-colors: none) {
  body {
    cursor: url('/assets/cursor-micromondo.svg?v=4') 4 3, auto;
  }

  a[href]:not([aria-disabled="true"]),
  button:enabled,
  summary,
  select:enabled,
  .time-option,
  input:is([type="radio"], [type="checkbox"], [type="button"], [type="submit"]):enabled {
    cursor: url('/assets/cursor-micromondo.svg?v=4') 4 3, pointer;
  }

  input:not([type="radio"], [type="checkbox"], [type="button"], [type="submit"]):enabled,
  textarea:enabled,
  [contenteditable="true"] {
    cursor: text;
  }
}
