body {
  display: grid;
  place-items: center;
  height: 100vh;
  background: #c4c4c4;
  font-family: "Inter", sans-serif;
  color: #1d211c;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.label {
  position: absolute;
  color: #ffffff;
  font-size: 11px;
  font-family: Arial, Helvetica, sans-serif;
}

.TraverseInfo {
  width: 333px;
  height: 85px;
  position: absolute;
  border-radius: 5px;
  padding: 5px;
  box-sizing: border-box;
  overflow: auto;
  text-align: center;
  font-size: 16px;
  color: #000;
  background-color: #fff;
  border: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.maincell,
.cell {
  width: 65px;
  height: 25px;
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
  background-color: #fff;
  border: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-family: monospace;
  overflow: hidden;
  white-space: nowrap;
}

.cell {
  width: 45px;
}

.pitot-settings {
  width: 262px;
  height: 25px;
  display: flex;
  position: absolute;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
  color: #454545;
  background-color: #ececec;
  border: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-family: monospace;
}

#terminal {
  width: 333px;
  height: 190px;
  display: flex;
  position: absolute;
  background-color: #828282;
  color: #cfffbe;
  padding: 5px;
  box-sizing: border-box;
  border-radius: 5px;
  overflow-y: auto;
  border: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-family: monospace;
  white-space: pre-wrap;
}

.button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 37px;
  background: linear-gradient(0deg, #f0f0f0 0%, #e5e5e5 50%, #f0f0f0 100%);
  border: 0;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
  text-align: center;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.button:active {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transform: translateY(2px) translateX(2px);
  color: #cfffbe;
}

.menubutton {
  width: 333px;
  height: 37px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(0deg, #f0f0f0 0%, #e5e5e5 50%, #f0f0f0 100%);
  border: 0;
  border-radius: 5px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
  text-align: center;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.menubutton:active {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transform: translateY(2px) translateX(2px);
  color: #cfffbe;
}