.instrument {
  margin: 0 2px 0 2px;
  text-align: center;
  line-height: 1;
  min-height: 3em;
  min-width: 5em;
}

.instrumentValue {
  height: calc(100% - 18px);
  width: 100%;
  text-align: center;
  vertical-align: middle;
  margin: 3px 2px 2px 2px;
}


.twoColumn {
  width: 100%;
  padding: 1em 0 1em 0;

  display: flex;
  gap: 1em;
}

.leftColumn {
  width: 50%;
}

.button {
  padding: 0;
  margin: 0.5em;
  height: 3em;
  background-image: linear-gradient(rgb(118, 113, 113) 0%, rgb(208, 206, 206) 74%, rgb(175, 171, 171) 84%, rgb(0, 0, 0) 100%);
  border-radius: 0.5em;
  border-width: 0;
  cursor: pointer;
  flex-grow: 1;
}

.button:active {
  transform: translateY(4px);
}

.button:disabled {
  cursor: not-allowed;
}

.buttontext {
  font-weight: bold;
  font-size: 2em;
  padding: 0;
  margin: 0;
  text-align: center;
  vertical-align: middle;
}

.bigSelect {
  color: black;
  padding: 0;
  margin: 2px;
  cursor: pointer;
  font-weight: bold;
  border: 0;
  height: calc(100% - 18px);
  text-align: center;
  vertical-align: middle;
  background-color:white;
}

.bigSelect:focus {
  outline: none;
}

@media (min-width:601px) {
  .bigSelect {
    height: 2em;
    width: 5.5em;
    font-size: 2em;
    height: calc(100% - 36px);
  }
}


@media (max-width:600px) {
  .bigSelect {
    height: 1em;
    width: 5.5em;
    font-size: 1em;
    height: calc(100% - 18px);
  }
}



input,
select {
  color: blue;
  width: 8em;
}

input:read-only {
  color: black;
}