/* === GLOBAL STYLES === */
body {
  cursor: url('images/plum.png'), auto; /* Custom cursor applied to the entire body */
}

/* Example: Predefined cursors for specific elements */
a {
  cursor: pointer; /* Hand cursor on links */
}

button {
  cursor: crosshair; /* Crosshair cursor on buttons */
}

.draggable {
  cursor: move; /* Move cursor on draggable elements */
}
