@import "tailwindcss";

/* Bloqueia o zoom de pinça e toques duplos no nível do motor de renderização */
html,
body {
  touch-action: pan-x pan-y;

  /* BÔNUS NATIVO: Impede que o usuário selecione/grife textos da interface sem querer */
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
/* Se você tinha algum CSS customizado, pode colar aqui embaixo */
body {
  font-family: "Inter", sans-serif;
}

/* Devolve a capacidade de selecionar texto apenas onde importa (inputs e selects) */
input,
select,
textarea {
  -webkit-user-select: auto;
  user-select: auto;
  text-transform: uppercase;
}
input#username,
input#password {
  text-transform: none;
}
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1f2937;
}

::-webkit-scrollbar-thumb {
  background: #4b5563;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}
