#map {
    width: 100%;
    height:100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.ol-popup {
    position: absolute;
    background-color: white;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #cccccc;
    bottom: 12px;
    left: -50px;
    /* min-width: 280px; */
    min-width: 400px;
  }
  .ol-popup:after, .ol-popup:before {
    top: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
  }
  .ol-popup:after {
    border-top-color: white;
    border-width: 10px;
    left: 48px;
    margin-left: -10px;
  }
  .ol-popup:before {
    border-top-color: #cccccc;
    border-width: 11px;
    left: 48px;
    margin-left: -11px;
  }
  .ol-popup-closer {
    text-decoration: none;
    position: absolute;
    top: 2px;
    right: 8px;
  }
  .ol-popup-closer:after {
    content: "✖";
  }

  #popup-content {
    height: 250px; 
    overflow:auto;
  }

  .monospace {
    font-family: monospace;
  }

  code, kbd, pre, samp {
    font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  }

  code {
    font-size: 87.5%;
    color: #e83e8c;
    word-wrap: break-word;
  }

 .no-select {
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
 }

 .dropdown-content{
    border-radius: 10px;
 }

 .select-wrapper {
    /* background: rgba(255,255,255,.8); */
    border-radius: 10px;
 }

 .graph-overlay{
  width: 50rem;
  height: 25rem;
  /* z-index: 10; */
  position: fixed;
  background: white;
  right: 1vh;
  bottom: 3vh; 
  display: none;
  border-radius: 4px;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
  padding: 1rem;
 }
 .map-sliders{
  /* width: 25rem;
  height: 12rem; */
  /* z-index: 10; */
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 1rem;
  padding: 1rem;
  position: fixed;
  background: white;
  right: 1vh;
  top: 3vh; 
  border-radius: 4px;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
 }

div.olMapViewport {
  z-index: 0;
}

.legend-container{
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap:0.5rem;
  padding: 1rem;
  position: fixed;
  background: white;
  left: 1vh;
  bottom: 3vh;
  border-radius: 4px;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
}

.legend-container #legend{
  background-image: linear-gradient(to right, rgb(165 0 38), rgb(255 255 255), rgb(49 54 149));
}