html {
  height: 90vh;
  font-family: Charcoal, sans-serif;
}

body {
  background: rgb(0, 0, 0);
  color: #fff;
  height: 90vh;
  align-items: stretch;
}

header {
  grid-area: header;
  display: flex;
  justify-content: space-between;
}

header h3 {
  margin-left: 10px;
  font-family: Charcoal, sans-serif;
}

footer {
  grid-area: footer;
  margin-bottom: 0;
}

.fa-adjust {
  z-index: 2000;
  position: absolute;
  right: 20px;
  margin: 10px;
  top: 75px;
}

.container {
  display: grid;
  grid-template-areas:
    "header  header header header header header"
    "map     map    map    map    schools   schools"
    "map     map    map    map   schools   schools"
    "map     map    map    map      schools   schools"
    "map     map    map    map    schools   schools"
    "footer  footer footer footer footer footer";
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: auto 1fr 1fr 1fr 1fr auto;
  grid-gap: 10px;
  height: 99vh;
  width: 99.5%;
  align-items: stretch;
}

.block {
  background: rgb(26, 25, 25);
  padding-top: 0;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(71, 71, 71, 0.5);
}

#mapid {
  background: rgb(26, 25, 25);
  grid-area: map;
  position: relative;
}

#locality-dropdown {
  right: 5%;
  width: 350px;
  top: 10%;
  height: 30px;
  grid-area: search;
  color: #fff;
  z-index: 2000;
  float: right;
  margin: 15px;
  display: flex;
  flex-direction: row-reverse;
}

#btnExport:hover {
  background: rgb(70, 69, 69);
}

#btnExport {
  background: rgb(43, 42, 42);

  color: #fff;
}

#attributes-container {
  grid-area: att;
}

#btnExport2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
  color: #fff;
  background: rgb(26, 25, 25);
}

#txtFileName {
  color: #fff;
  margin-left: 1px;
}

.attr-value {
  color: #fff;
  margin-left: 5px;
  margin-right: 5px;
  flex: 1;
  margin-right: 20px;
  font-size: small;
}

.pattr-value {
  color: #fff;
  margin-left: 5px;
  margin-right: 5px;
  flex: 1;
  margin-right: 20px;
  font-size: small;
}

.attr-name {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
  color: #fff;
  background: rgb(45, 44, 46);
  font-size: small;
}

.attr-wrapper {
  font-size: small;

  /* right: 5%; */
  width: 100%;
  /* top: 10%; */
  /* height: 30px; */
  color: #fff;
  z-index: 2000;
  /* float: right; */
  margin: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

#dropdown-list {
  width: 90%;
  /* top: 10%; */
  height: 30px;

  color: #fff;
  z-index: 2000;
  padding: 15px;
}

#schools {
  grid-area: schools;
  overflow-y: auto;
  overflow-x: hidden;
}

#links {
  grid-area: links;
  overflow-y: auto;
  overflow-x: hidden;
}

#nodes {
  grid-area: nodes;
  overflow-y: auto;
  overflow-x: hidden;
}

#camera {
  grid-area: camera;
  overflow-y: auto;
  overflow-x: hidden;
}

.attr-header {
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #fff;
  z-index: 2000;
  margin: 5px;
  display: flex;
  flex-direction: row;
}

.bttn-wrapper {
  float: right;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2000;
  display: flex;
  flex-direction: row;
  margin-right: 10px;
}

.save-bttn:hover {
  background: rgb(42, 146, 11);
}

.save-bttn {
  background: rgb(43, 42, 42);
  color: #fff;
  padding: 4px;
  margin: 5px;
}

.discard-bttn:hover {
  background: rgba(196, 5, 5, 0.877);
}

.discard-bttn {
  background: rgb(43, 42, 42);
  color: #fff;
  padding: 4px;
}

.discard-bttn:hover {
  background: rgba(196, 5, 5, 0.877);
}

.title {
  margin: 10px;
  color: #fff;
}
