body {
  margin: 0;
  font-family: sans-serif;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
#layout {
  display: flex;
  height: 100%;
}
#form-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 66%;
  height: 100%;
  background: #fff;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
  z-index: 1;
}
#map-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 34%;
  transition: none;
}
#map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}

#time-slider-container {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
  padding: 8px;
  border-radius: 4px;
}


#map-toggle {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: rgba(255,255,255,0.8);
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 4px;
}
.full-map #form-panel {
  display: none;
}
.full-map #map-container {
  width: 100%;
}

mark {
  background-color: yellow;
  font-weight: bold;
}

