#routing-ui {
  max-width: 900px;
  margin: auto;
}

#mapContainer {
    max-width: 900px;
    margin: auto;
    transition: all 0.3s ease;
}

#mapContainer.fullscreen {
    max-width: 100%;   /* volle Breite */
}

#map {
    width: 100%;
    height: 600px;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#mapContainer.fullscreen #map {
    height: 90vh;      /* fast volle Höhe */
}

#mapContainer.fullwidth {
  max-width: 100%;
}

#toggleMapSize {
  padding: 8px 16px;
  cursor: pointer;
  background-color: #f5deb3; /* sand yellow */
  border: 1px solid #d2b48c; /* etwas dunklerer Rand für Kontrast */
  border-radius: 4px;
  color: #333; /* dunkler Text */
}
input[type="text"] {
  padding: 8px;
  width: 40%;
  margin-right: 5px;
}


.inputs input { padding:8px; width:40%; margin-right:5px; }
.options select, .options input[type=number] { padding:6px; margin-right:5px; }