.quote-form {
  max-width: 850px;
  margin: auto;
  padding: 25px;
  background: #fff;
  border: 1px solid #ddd;
  font-family: Arial, sans-serif;
}

fieldset {
  border: 1px solid #eee;
  margin-bottom: 20px;
  padding: 15px;
}

legend { font-weight: bold; color: #333; }




.row, .route-container {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.package-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  align-items: center;
}

/* Breitensteuerung der Spalten */
.col-small {
  flex: 0.3;    /* Schmale Felder für Anzahl und Gewicht */
  min-width: 20px;
}

.col-medium {
  flex: 0.5;  /* Mittleres Feld für Verpackungsart */
  min-width: 30px;
}

.col-large {
  flex: 4; 
  min-width: 386px;
}

.col-checkbox {
    flex: 0.1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem; /* Kleinere Schrift für das Label */
    color: #666;
}

.col-checkbox input {
    width: 18px !important; /* Checkbox soll klein bleiben */
    height: 18px;
    margin: 0;
    cursor: pointer;
}

/* Entfernen-Button soll nicht wachsen */
.remove-btn {
  flex: 0 0 30px;
  height: 35px;
  background: #dc3545;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.route-container fieldset { flex: 1; }

input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 3px;
  flex: 1;
}

.add-btn {
  background: #33b887;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 4px;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: #18468b;
  color: #fff;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
}

.privacy-policy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.privacy-policy input {
  width: auto; /* Verhindert, dass die Checkbox die volle Breite einnimmt */
  margin-top: 3px;
  cursor: pointer;
}

.privacy-policy label {
  font-weight: normal;
  cursor: pointer;
}

.privacy-policy a {
  color: #18468b;
  text-decoration: underline;
}

.form-header {
  display: flex;
  align-items: center; /* Zentriert Logo und Text vertikal zueinander */
  gap: 20px;           /* Abstand zwischen Logo und Text */
  margin-bottom: 30px; /* Abstand zum restlichen Formular */
  border-bottom: 2px solid #18468b; /* Optional: Eine Linie zur Trennung */
  padding-bottom: 15px;
}

.logo {
  max-height: 70px;    /* Begrenzt die Höhe des Logos */
  width: auto;         /* Behält das Seitenverhältnis bei */
  display: block;
}

/* Falls der Titel auf dem Handy unter das Logo rutschen soll: */
@media (max-width: 480px) {
  .form-header {
    flex-direction: column;
    text-align: center;
  }
}

h1 {
	color: #33b887;
	font-size: 1.8em;
	font-family: 'Mitr', cursive;
	text-transform: uppercase;
	letter-spacing: 5px;
	text-shadow:
   -1px -1px 2px #18468b,  
    1px -1px 2px #18468b,
    -1px 1px 2px #18468b,
     1px 1px 2px #18468b;
     -webkit-transform:  skewx(20deg);
          -o-transform: skewx(20deg);
             transform: skewx(20deg);
}

input[type="radio"], 
input[type="checkbox"] {
  accent-color: #18468b; /* Ersetze dies durch deinen Hex-Code aus dem Logo */
}

#email-error {
    color: #d93025;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 5px;
    display: none; /* Wird per JS eingeblendet */
    /* Optional: Ein kleines Icon davor wirkt oft Wunder */
}

/* Visuelles Feedback am Feld */
.input-error {
    border: 2px solid #d93025 !important;
    background-color: #fff8f8;
}


.input-group-container {
    margin-bottom: 15px; /* Abstand zur nächsten Sektion */
    display: flex;
    flex-direction: column;
}


