/* Global cursor styles */
* {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='white' stroke='black' d='M1 1v10.5c0 .2.2.3.4.2l3-3c.1 0 .2 0 .3 0h4.3c.2 0 .3-.2.2-.4L1.4.8c-.2-.1-.4 0-.4.2z'/%3E%3C/svg%3E") 1 1, auto !important;
}

/* Interactive elements */
a, button, input[type="submit"], input[type="button"], 
.clickable, [role="button"], select, 
input[type="checkbox"], input[type="radio"] {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='white' stroke='black' d='M1 1v10.5c0 .2.2.3.4.2l3-3c.1 0 .2 0 .3 0h4.3c.2 0 .3-.2.2-.4L1.4.8c-.2-.1-.4 0-.4.2z'/%3E%3C/svg%3E") 1 1, pointer !important;
}

/* Text selection */
input, textarea, [contenteditable="true"] {
  cursor: text !important;
}

/* Not allowed cursor */
button:disabled, 
button:disabled *, 
input:disabled, 
select:disabled, 
textarea:disabled, 
.disabled, 
.disabled *, 
[aria-disabled="true"],
[aria-disabled="true"] *,
[disabled],
[disabled] *,
.not-allowed,
.not-allowed * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='4.84 5.18 14.32 14.98'%3E%3Cfilter id='a' color-interpolation-filters='sRGB' height='1.257' width='1.257' x='-.128' y='-.128'%3E%3CfeGaussianBlur stdDeviation='1.177'/%3E%3C/filter%3E%3Cg transform='translate(-206.819 -480.746)scale(.651)'%3E%3Cpath d='M336.125 747.437c-6.075 0-11 4.925-11 11s4.925 11 11 11 11-4.924 11-11-4.925-11-11-11' filter='url(%23a)' opacity='.2'/%3E%3Ccircle cx='336.125' cy='757.425' fill='%23fff' r='11'/%3E%3Cpath d='M331.125 748.777c-4.783 2.762-6.422 8.877-3.66 13.66s8.877 6.422 13.66 3.66c4.783-2.76 6.421-8.877 3.66-13.66s-8.877-6.421-13.66-3.66m1 1.732c3.532-2.039 7.974-1.075 10.374 2.094l-13.748 7.937c-1.545-3.663-.158-7.992 3.374-10.03m-2.374 11.763 13.748-7.937c1.544 3.663.158 7.991-3.374 10.03-3.532 2.04-7.974 1.076-10.374-2.093'/%3E%3C/g%3E%3C/svg%3E") 8 8, not-allowed !important;
} 