body {
  background-color: #0b1015;
  color: #d1d1d1;
  align-items: center;
  justify-content: center;
  display: flex;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}
h1 {
  color: white;
}
.table {
  min-width: 500px;
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
}
.dialog {
  background-color: rgb(28, 35, 43);
  border-radius: 8px;
  border: 1px solid rgb(50, 56, 63);
}
.header,
.row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 20px 10px 20px;
}
.row:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.1);
}
.header {
  font-weight: bold;
  background-color: rgb(45, 53, 62);
}
.col:first-child {
  width: 50px;
}
.col:last-child {
  flex-grow: 1;
}
.col:nth-child(2) {
  width: 200px;
}
.logo {
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%;
  flex-direction: column;
  padding-bottom: 30px;
}
.logo > img {
  width: 96px;
  padding-top: 30px;
  padding-bottom: 30px;
}

#lastUpdate {
  font-size: 10px;
  border-top: rgb(50, 56, 63) 1px solid;
  text-align: center;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.25);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

#maintenanceWindow > div {
  margin: 20px;
  border: #1d6682 1px solid;
  padding: 10px;
  background-color: #1d66827f;
}

h2 {
  font-size: 18px;
}
