/* MICROCELL - Bloqueo de selección de contenido */

body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Permitir selección normal dentro de formularios */
input,
textarea,
select,
option {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* Evitar arrastrar imágenes */
img {
    -webkit-user-drag: none;
    user-drag: none;
}