/*
 * FRONTEIRAS_BLOQUEIO_PESQUISA_GOOGLE_V2
 *
 * Impede seleção acidental de textos da interface.
 * Mantém campos de formulário normalmente interativos.
 */

body *:not(input):not(textarea):not(select):not(option):not([contenteditable="true"]) {
  -webkit-user-select: none !important;
  user-select: none !important;
  -webkit-touch-callout: none !important;
}

input,
textarea,
select,
option,
[contenteditable="true"] {
  -webkit-user-select: auto !important;
  user-select: auto !important;
  -webkit-touch-callout: default !important;
}

button,
a,
label,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
}
