/* Disable text selection globally */
body {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Allow selection inside inputs & textareas */
input, textarea {
    user-select: auto !important;
    -webkit-user-select: auto !important;
}
