html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  background: #0b1220;
}

#map {
  width: 100%;
  height: 100%;
}

.map-control-panel {
  margin: 12px;
  padding: 10px 12px;
  min-width: 200px;
  background: rgba(17, 24, 39, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: #f9fafb;
  font-size: 12px;
  line-height: 1.2;
}

.map-control-title {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}

.map-control-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.map-control-row label {
  color: #d1d5db;
  font-size: 11px;
}

.map-control-row select {
  height: 28px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #111827;
  color: #f9fafb;
  padding: 2px 6px;
}

.map-control-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
  cursor: pointer;
  user-select: none;
}

.map-control-button {
  margin-top: 10px;
  width: 100%;
  height: 30px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: #1f2937;
  color: #f9fafb;
  cursor: pointer;
}

.map-control-button:hover {
  background: #374151;
}
