/* PWA / app-like */

html {
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior-y: none;
}

body {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

button,
select,
label,
.library-button,
.icon-button {
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

/* Quando instalado (standalone), remove tooltips desnecessários e ajusta respiro */
@media all and (display-mode: standalone), all and (-webkit-display-mode: standalone) {
  .library-button[data-tooltip]:hover::after,
  .icon-button[data-tooltip]:hover::after {
    display: none;
  }
}
