html, body, #map {
  height: 100%;
  margin: 0;
  padding: 0;
}

.controls-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 4px;
}

.controls-right button,
.controls-right input,
.controls-right label {
  margin: 2px;
}

.height-control {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap; /* ラベルとスライダーの分断を防ぐ */
}

/* モバイルで触りやすく */
#heightSlider {
  width: 160px; /* 好みで調整 */
  touch-action: pan-y; /* スクロール優先だがスライダー操作も安定 */
}
