/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 07 2025 | 08:15:53 */
/* Grundlegendes Layout */
.wpcf7 form {
  font-family: "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto;
  padding: 1em;
  background: #fff;
  border-radius: 8px;
}

/* Formularfelder kompakter darstellen */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="file"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 8px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 4px;
  margin-bottom: 16px;
  box-sizing: border-box;
  transition: border-color 0.2s ease-in-out;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 textarea:focus {
  border-color: #00325c;
  outline: none;
}

/* Checkboxen und Radiobuttons */
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
  transform: scale(1.1);
  margin-right: 6px;
}

/* Labels */
.wpcf7 label {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

/* Submit-Button */
.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
  background: #00325c;
  color: #fff;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.wpcf7 input[type="submit"]:hover {
  background: #00518a;
}

/* Hinweisboxen und Preisinfo kompakter */
#preisinfo {
  font-size: 14px;
  line-height: 1.4;
  background: #f1f1f1;
  border: 1px solid #ccc;
  padding: 12px;
  border-radius: 6px;
  margin-top: 1em;
}

/* Kleinere Buttons wie "Foto entfernen" */
#clearUpload {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 4px;
  background: #e0e0e0;
  border: 1px solid #ccc;
  cursor: pointer;
}

#clearUpload:hover {
  background: #d5d5d5;
}