html {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
}

.container {
  margin: 10px auto;
  width: 90%;
  max-width: 720px
}

.logo {
  text-align: center
}

.system-status {
  margin: 32px 0;
  border: 1px solid #dedede;
  border-radius: 4px 4px 0 0;
  padding: 8px 16px;
  text-align: center;
  color: white;
}

.components-status {
  margin: 0 0 48px;
  border-top: 1px solid #dedede;
  border-radius: 4px 4px 0 0
}

.component {
  border: 1px solid #dedede;
  border-top: none;
  padding: 8px 16px
}

.component .name {
  vertical-align: middle;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 75%
}

.component .status {
  float: right
}

.components-restarts {
  margin: 0 0 64px;
  padding: 0 0 64px;
  border-top: 1px solid #dedede;
  border-radius: 4px 4px 0 0
}

.components-downtime {
  margin: 0 0 32px;
  border: 1px solid #dedede;
  border-radius: 4px 4px 0 0
}

.components-downtime .box {
  display: flex;
}

.components-downtime .box .box-item {
  padding: 16px;
  display: inline-block;
  width: 45%
}

@media screen and (max-width: 767px) {
  .components-downtime .box .box-item {
    width: 90%;
  }
}


.components-downtime .box .box-item .componentName {
  padding: 2px;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid #efefef;
  margin-bottom: 2px
}

.components-downtime .box .box-item .downTime .name {
  margin-right: 4px
}

.components-downtime .box .box-item .downTime .value {
  float: right
}

div.operational {
  background: #c69963
}

div.misbehavin {
  background: #ff0000
}

span.operational {
  color: #c69963
}

span.unreachable {
  color: red
}

span.starting {
  color: #c69963
}

span.stopping {
  color: red
}