h1 {
  font-size:28pt;
}
h2 {
  font-size:22pt;
}

* {
  font-family: "Arial", sans-serif;
}
body {

}

table, tr, td, th {
  border: solid 1px black;
  border-collapse: collapse;
}

th {
  background-color: rgb(150, 150, 255);
}

td, th {
  padding: 5px 10px 5px 10px;
  text-align: center;
}
#sensorsToDisplay {
  width:250px;
}

#activityIndicator {
  visibility: hidden;
  margin-left: 15px;
  margin-bottom: 15px;
}

.activityIndicator {
  top: 0;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: relative;
  animation-iteration-count: infinite;
}

.activityIndicatorContainer:nth-child(1) .activityIndicator {
  background-color: rgba(80, 80, 130, 0.5);
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
}

.activityIndicatorContainer:nth-child(2) .activityIndicator {
  background-color: rgba(200, 80, 80, 0.5);
  animation-timing-function: ease-in-out;
}

.activityIndicatorContainer:nth-child(3) .activityIndicator {
  background-color: rgba(80, 200, 80, 0.5);
  animation-timing-function: ease-in-out;
}

.activityIndicatorContainer {
  width: 20px;
  height: 20px;
  animation-name: activityContainer;
  animation-iteration-count: infinite;
  display: inline-block;
  position: absolute;
}

.activityIndicatorContainer:nth-child(1) {
  animation-duration: 1.2s;
  animation-timing-function: linear;
}

.activityIndicatorContainer:nth-child(2) {
  animation-delay: -0.2s;
  animation-duration: 0.8s;
  animation-timing-function: linear;
}

.activityIndicatorContainer:nth-child(3) {
  animation-delay: -0.4s;
  animation-duration: 1.0s;
  animation-timing-function: linear;
}
@keyframes activityContainer {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.inlineblock {
  display: inline-block;
}

#map {
  height:800px;
}