*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body, #root {
  height: 100%;
}

html {
  font-size: 18px;
}

body {
  background: #06262d;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* PWA standalone mode — same size, already bumped above */
@media (display-mode: standalone) {
  html {
    font-size: 18px;
  }
}

button {
  cursor: pointer;
}

select, input {
  outline: none;
}
