#cesiumContainer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.map-overlay-container {
  position: absolute;
  width: 25%;
  top: 0;
  left: 0;
  padding: 10px;
  z-index: 999;
}

.map-overlay {
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  color: white;
  background-color: rgba(55, 55, 55, 0.9);
  border-radius: 3px;
  padding: 10px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.map-overlay h2,
.map-overlay p {
  margin: 0 0 10px;
  color: white;
}

.map-overlay h2 {
  font-size: 16px;
  font-weight: bold;
}

.map-overlay p {
  font-size: 12px;
  line-height: 1.4;
}

.map-overlay a {
  color: #a0d2ff;
  text-decoration: none;
}

.map-overlay a:hover {
  text-decoration: underline;
}

.controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background-color: rgba(55, 55, 55, 0.8);
  padding: 10px;
  border-radius: 3px;
}

.controls button {
  margin: 0 5px;
  padding: 5px 10px;
  cursor: pointer;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #ccc;
  border-radius: 3px;
}

.controls button:hover {
  background-color: rgba(255, 255, 255, 1);
}

.map-credits-link {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 999;
}
