body, html {
    cursor: none; /* Hide default cursor everywhere */
}

a, button, .hover-target {
    cursor: none; /* Ensure cursor stays hidden over links */
}

#custom-cursor-img {
    position: fixed;
    pointer-events: none; /* Let clicks pass through to the page */
    z-index: 10000;
    width: 32px; /* Adjust size as needed */
    height: auto;
    transform: translate(-50%, -50%); /* Center image on mouse point */
}

