html {
  height: 100%;
}

body {
  display: flex;
  flex: 1 auto;
  flex-direction: column;
  justify-content: stretch;
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1;
  height: 100%;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1.25rem;
  margin: 0;
  line-height: 1.15;
}

.header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 0.95rem 2rem;
  gap: 15px 30px;
}

.main {
  flex: 1 auto;
  position: relative;
  display: flex;
  justify-content: stretch;
}

.map {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.map-container {
  position: relative;
  flex: 1 auto;
  border: 4px solid #eaeaed;
}

#search {
  position: relative;
}

.search-terms {
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.15rem;
  line-height: 1.5rem;
  padding: 0.5rem 1rem;
}

.search-results {
  display: none;
  margin-top: 0;
  border: 1px solid #ccc;
  position: absolute;
  list-style: none;
  z-index: 2;
  color: #000;
  background-color: #fff;
  padding: 0;
}

.search-result-items {
  margin: 0;
  border-top: 1px solid #ccc;
  padding: 10px;
  cursor: pointer;
}

.search-result-items.highlighted {
  background-color: blue;
  color: white;
}
