/* ===== FORMULAR-KASTEN ===== */
.formulario-wrapper {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  padding: 30px;
  max-width: 600px;
  margin: 40px auto;
  border: 1px solid #f0f0f0;
}

/* ===== TITEL ===== */
.formulario-wrapper h3 {
  color: #e63900;
  font-size: 1.8em;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f8b400;
}

/* ===== FORMULAR-FELDER ===== */
.formulario-wrapper label {
  display: block;
  margin: 20px 0 8px;
  font-weight: bold;
  color: #555;
  font-size: 0.95em;
}

/* ► Unificamos TODOS los campos (text, email, tel, date, time) + select
   ► Ajustamos box-sizing para que NUNCA se salgan del contenedor
   ► Fondo blanco por defecto (como lo veías antes) */
.formulario-wrapper select,
.formulario-wrapper input[type="text"],
.formulario-wrapper input[type="email"],
.formulario-wrapper input[type="tel"],
.formulario-wrapper input[type="date"],
.formulario-wrapper input[type="time"] {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1em;
  transition: border 0.3s, background 0.3s;
  background: #fff;               /* antes era #f9f9f9 */
  box-sizing: border-box;         /* evita overflow */
}

/* ► Mismo foco para todos los tipos */
.formulario-wrapper select:focus,
.formulario-wrapper input[type="text"]:focus,
.formulario-wrapper input[type="email"]:focus,
.formulario-wrapper input[type="tel"]:focus,
.formulario-wrapper input[type="date"]:focus,
.formulario-wrapper input[type="time"]:focus {
  border-color: #f8b400;
  background: #fff;
  outline: none;
}

/* ===== VERSTECKTE FELDER ===== */
#origen-direccion,
#destino-direccion,
#parada-direccion {
  display: none; /* Standardmäßig ausgeblendet */
}

/* ===== EINGEBLENDETE FELDER (via JS) ===== */
.show-address-field {
  display: block !important;
  margin-top: 10px;
}

/* ===== CHECKBOXEN ===== */
.formulario-wrapper input[type="checkbox"] {
  margin-right: 10px;
  transform: scale(1.1);
}

/* ===== PREIS-ANZEIGE ===== */
#precio-final {
  display: inline-block;
  padding: 10px 20px;
  background: #f8f8f8;
  border-radius: 8px;
  font-size: 1.3em;
  margin-top: 10px;
  color: #e63900;
}

/* ===== BUTTON ===== */
.formulario-wrapper button {
  width: 100%;
  padding: 15px;
  background: #f8b400;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 25px;
  cursor: pointer;
  transition: background 0.3s;
}

.formulario-wrapper button:hover {
  background: #e6a900;
}
