html, body {
  margin: 0;
  height: 100%;
  font-family: Arial;
}
#mapView {
  position: relative;
  height: 100vh;
}
#map {
  position: absolute;
  top: 60px;
  bottom: 0;
  width: 100%;
}
#topBar {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5000;

  background: white;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: bold;
}

#controls {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5000;

  background: white;
  padding: 8px;
  border-radius: 10px;

  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

#status {
  position: fixed;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5000;

  background: white;
  padding: 4px 8px;
  border-radius: 6px;
}

button {
  padding: 6px 10px;
  border-radius: 6px;
  border: none;
}

#summaryView {
  display: none;
  padding: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  border: 1px solid #ccc;
  padding: 6px;
  text-align: center;
  font-size: 12px;
}
.start-marker {
  font-size: 22px;
  font-weight: 900;
  color: #00aa00;
  text-shadow: 0 0 4px white;
  }
  
  .end-marker {
  font-size: 22px;
  font-weight: 900;
  color: red;
  text-shadow: 0 0 4px white;
}
#searchBox {
  width: 150px;
}
.point-marker {
  display: none !important;
}