* {
  height: 100%;
}
body {
  font-family: "Courier New", sans-serif;
  background-color: #282828;
  color: white;
  margin: 0;
}

.ui-element {
  /*background-color: #2f2f2f;*/
  background-color: #282828;
}

#canvas {
  width: 100%;
  height: 100%;
}

#mouseover-label {
  height: 50px;
  width: 600px;
}

.bar {
  background-color: white;
  position: absolute;
}

.country {
  position: absolute;
  border-radius: 100%;
  background-color: white;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);

  transition: width 500ms, height 500ms, left 500ms, top 500ms, background-color 500ms;
}

.rainCountry {
  position: absolute;
  border-radius: 40%;
  z-index: 2;
}
.rainDrop {
  position: absolute;
  z-index: 1;
}
.rainDropShadow {
  position: absolute;
}

.no-highlight-anymore {
  background-color: rgb(185, 185, 185);
}

.highlight {
  background-color: pink;
}


#gui {
  position: absolute;
  left: 0;
  top: 0;
  width: 400px;
  height: 200px;
  z-index: 0;
  padding: 10px;
  padding-top: 40px;
}
#gui input {
  height: auto;
  margin: 0px;
  width: 50%;
  appearance: none;
  height: 25px; /* Specified height */
  background: #919191; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  transition: opacity .2s;
}
#gui span {
  font-weight: 500;
}

.tab {
  margin: 10px;
  font-family:Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: small;
  height: 100px;
  color: #919191;
}

#countryNameLabel {
  position: absolute;
  width: 100%;
  top: 50px;
  font-family:Arial, Helvetica, sans-serif;
  text-align: center;
  font-weight: bold;
  font-size: larger;
  transition: color .5s;
  color: #282828;
  height: auto;
}