/* mouse.css - 自定义鼠标指针样式 */
body {
  /* 使用相对路径引用SVG文件 */
  cursor: url('./kokomi.cur') 0 0, auto !important;
}

/* 链接悬停时的指针样式 */
a,
button,
[role="button"] {
  cursor: url('./链接选择.cur') 0 0, pointer !important;
}

a:active,
button:active,
[role="button"]:active {
  cursor: url('./候选.cur') 0 0, pointer !important;
}

/* 输入框的文本选择指针 */
input,
textarea,
[contenteditable] {
  cursor: url('./文本选择.cur') 0 0, text !important;
}

/* 禁用状态的指针样式 */
:disabled,
.disabled {
  cursor: url('./禁用状态.cur') 0 0, not-allowed !important;
}

/* 加载状态的指针样式 */
.loading,
[aria-busy="true"] {
  cursor: url('./加载.cur') 0 0, progress !important;
}

/* 可拖拽元素的指针样式 */
[draggable="true"] {
  cursor: url('./可拖拽1.cur') 0 0, grab !important;
}

[draggable="true"]:active {
  cursor: url('./可拖拽.cur') 0 0, grabbing !important;
}