html,
body {
  background-color: #fff;
  font-family: "Helvetica", "Arial", "Verdana", sans-serif;
  margin: 0;
  padding: 0;
}

.app-container {
  max-width: 100%;
  overflow: hidden;
}

.header {
  background-color: #369;
  padding: 10px 0;
}

.header > h1 {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  margin: 15px auto 0;
  min-width: 347px;
  text-align: center;
  width: 347px;
}

.inputs-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 20px 7px 20px 0px;
}

input {
  -moz-appearance: textfield;
  -webkit-appearance: none;
  -webkit-border-radius: 5px;
  appearance: none;
  border-radius: 5px;
  border: 1px solid #333;
  font-size: 20px;
  height: 30px;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: center;
  width: 32px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.inputs-and-city {
  display: flex;
  gap: 20px;
}

.inputs-column {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-top: 8px;
}

.city {
  border-bottom: 1px solid #333;
  border-right: 1px solid #333;
  height: 230px;
  width: 230px;
}

.city div {
  font-size: 20px;
  font-weight: bold;
  border-left: 1px solid #333;
  border-top: 1px solid #333;
  color: #0b0;
  float: left;
  height: 45px;
  line-height: 45px;
  width: 45px;
}

.status-bar {
  background-color: #eee;
  border-radius: 4px;
  height: 10px;
  margin: 5px auto 60px;
  width: 354px;
}

.status-bar.thinking {
  background-color: #369;
}

.status-bar.complete {
  background-color: #0b0;
}

.status-bar.invalid {
  background-color: #911;
}
