html, body, #app {
  max-width: 100vw;
  overflow-x: hidden;
  height: 100%;
  flex: 1;
}

html, body, div {
  display: flex;
  /* overflow: scroll; */
  scrollbar-width: none;
  min-width: 0;
}

body {
  color: #fff;
  background: #b03c3c;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input {
  background: #fff;
  color: #000;
  border: none;
  padding: 4px 8px;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield; }

button {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 4px;
}

button:disabled {
  background-color: gray;
}

input:focus, button:focus {
  outline: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

table.zebra tr:nth-child(even) {
  background-color: #2d2d2d;
}

table.zebra td {
  padding: 10px;
}

@media (prefers-color-scheme: dark) {
  html {
    color-scheme: dark;
  }
}
