
/* Rehabilitar la selección y el copiado de texto en toda la web */
* {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

/* Asegurar que los clics sobre imágenes y enlaces funcionen correctamente */
img, a, body, html {
  pointer-events: auto !important;
}