html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: sans-serif;
  overflow: hidden;
}

.container {
  display: flex;
  height: 100%;
  width: 100%;
}

/* Left Panel */
.sidecar {
  flex: 0 0 33.33%;
  height: 100%;
  overflow-y: auto;
  background-color: #f5f5f5;
  padding: 30px;
  box-sizing: border-box;
  border-right: 1px solid #ccc;
}

/* Scrollable Content Sections */
.content-section {
  background: white;
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.content-section h2 {
  margin-bottom: 10px;
}

.content-section p {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Right Map Viewer */
.map-viewer {
  flex: 1; /* takes remaining space after sidecar */
  height: 100%;
  position: relative;
}

#viewDiv {
  width: 100%;
  height: 100%;
}

.sidecar::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 0;
  right: 0;
  height: 1px;
  background: red;
  z-index: 1000;
}

.sidecar::after {
  content: "";
  position: absolute;
  top: 15%;
  left: 0;
  right: 0;
  height: 2px;
  background: red;
  z-index: 9999;
}

