/* CRITICAL FIXES - Add to main.css */

/* 1. Hide default cursor EVERYWHERE */
* {
    cursor: none !important;
}

/* Allow cursor only on inputs */
input,
textarea,
select {
    cursor: none !important;
}

/* 2. Prevent text selection */
* {
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

/* Allow selection only in inputs */
input,
textarea {
    user-select: text !important;
    -webkit-user-select: text !important;
}