html,
body {
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
}

.header {
  grid-area: header;
  /* background-color: #0079c1; */
  background-color: #112e51;
}

.footer {
  grid-area: footer;
}

#footerDiv {
  background-color: #323a45;
  color: white;
  font-size: 12px;
  font-family: Helvetica, Arial;
  font-weight: bold;
}

#footerDiv a {
  color: #afb1b6;
  font-size: small;
}

#bboxText {
  background-color: lightgray;
}
/* #messageContainer {
    position: absolute;
    bottom: 60px;
    background-color: lightgray;
}
#messagePanel {
    font-size: medium;
    color: black;
    width: 300px;
    height: 150px;
} */

#helpBtn {
  margin-top: 30px;
  width: 200px;
  margin-left: 50px;
}

.sidebar {
  grid-area: sidebar;
  background-color: #333;
}

.map {
  grid-area: map;
}

.wrapper {
  display: grid;
  /* grid-template-rows: 25%  25% auto; */
  grid-template-rows: 100px, 280px 200px 335px;
  grid-template-areas:
    "header"
    "sidebar"
    "map"
    "footer";
  width: 100vw;
  height: 100vh;
}

.box {
  color: #ffffff;
  padding: 5px;
  font-family: "Merriweather", serif;
  font-size: 22px;
  margin: 0;
  color: white;
  font-weight: 400;
}

@media only screen and (min-width: 544px) {
  .wrapper {
    grid-template-columns: 320px auto;
    grid-template-rows: 60px auto 30px;
    grid-template-areas:
      "header   header"
      "sidebar  map"
      "footer   footer";
  }
}

#bboxContainer {
  margin-top: 50px;
  font-size: medium;
  color: lightgray;
}

#bboxText {
  font-size: small;
  width: 185px;
}

#buttonsContainer {
  margin-top: 100px;
}

#downloadBtn {
  margin-left: 25px;
  margin-right: 20px;
}

#warningContainer {
  color: red;
  font-size: 14px;
  font-weight: bold;
}