/* formulare-v12.css – barrierearm, seniorenfreundlich */

body {
  font-family: Verdana, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #000;
  background-color: #f7f9fc;
  margin: 0;
  padding: 0;
}

form {
  max-width: 300px;
  margin-left: 0;
  margin-right: auto;
  padding: 15px;
  background-color: #ffffff;
  border: 2px solid #ccc;
  border-radius: 0;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

h1 {
  color: #0458C7;
  font-size: 1.4em;
}

h2 {
  color: #0458C7;
  font-size: 1.2em;
}

label {
  display: block;
  margin-top: 10px;
  font-weight: normal;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  width: 95%;
  padding: 10px;
  font-size: 15px;
  border: 2px solid #336699;
  border-radius: 0;
  background-color: #F5FCFF;
}

textarea {
  resize: vertical;
  min-height: 40px;
}

button,
input[type="submit"],
input[type="reset"] {
  padding: 10px 20px;
  margin-top: 10px;
  font-size: 15px;
  border: none;
  border-radius: 0;
  background-color: #0458C7;
  color: white;
  cursor: pointer;
}

button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover {
  background-color: #5972F0;
}

.help-icon {
  display: inline-block;
  background-color: #FFEA75;
  color: #000;
  font-weight: normal;
  border-radius: 0;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  cursor: help;
  margin-left: 5px;
  position: relative;
  font-size: 13px;
  /* 2 pt kleiner */
}

/* --- NEU: größerer Container und Umbruch --- */
.help-icon:hover::after {
  content: attr(data-help);
  position: absolute;
  left: 25px;
  top: -5px;
  max-width: 600px;
  white-space: normal;
  word-wrap: break-word;
  background: #fff;
  color: #333;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 0;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  text-align: left;
  font-size: 13px;
  font-weight: normal;
  z-index: 100;
}

.label-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Hilfe-Buttons hellblau, kreisrund */
.help-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e6f3ff;
  color: #000;
  border: 1px solid #007bff;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  cursor: help;
  margin-left: 5px
}

/* Modal gelb, größer */
#modalConfirm {
  background: #fffbe6;
  border: 2px solid #e6b800;
  padding: 20px;
  font-size: 17px;
  font-weight: bold;
  text-align: center
}

/* Fahrzeuge: Gruppierung und Nummerierung */
#fahrzeuge {
  margin-top: 10px;
}

#fahrzeuge .fahrzeug {
  border: 1px solid #cdd9ed;
  background: #f8fbff;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

#fahrzeuge .fahrzeug .vehicle-title {
  font-weight: bold;
  color: #0458C7;
  margin-bottom: 8px;
}

#fahrzeuge .fahrzeug .vehicle-body label {
  margin-top: 6px;
}

#fahrzeuge .fahrzeug .remove-vehicle {
  background: #f7e6e6;
  color: #8a1f1f;
  border: 1px solid #e0b3b3;
  margin-top: 6px;
}