/* Reset cursor to default */
* {
    cursor: default !important;
}

/* Hide custom mouse cursor elements */
.mouse-wrapper,
.mouse {
    display: none !important;
    visibility: hidden !important;
}

/* Reset specific cursor types to default */
a, button, input, textarea, select {
    cursor: pointer !important;
}

/* Reset body cursor */
body {
    cursor: default !important;
}

/* Hide any custom cursor that might be positioned absolutely */
[class*="mouse"],
[class*="cursor"] {
    display: none !important;
} 