main {
  margin: 0.1vh;
  padding: 0.5vh;
  border: 1px solid white;
  flex: 1;
  overflow: auto;
  color: lime;
  background-color: black;
  display: flex;
  flex-direction:column;
  .justify-content: center;
  align-items: center;
}

#forecast {
}

#forecast table {
  width: 80%;
  border-collapse: collapse;
  border: 1px solid lime;
  margin-left: auto;
  margin-right: auto;
  table-layout: auto;
}

#forecast th,
#forecast td {
  text-align: left;
  font-size: 100%;
  border: 1px solid lime;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 2px;
  padding-bottom: 2px;
}

#forecast .fullwidth {
  white-space: nowrap;
}

#forecast tbody > tr:nth-of-type(even) {
  background-color: rgb(48,48,48);
}

