.elementor-4931 .elementor-element.elementor-element-c1aa750{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS *//* Wrapper */
.rsvp-wrapper {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  color: #1a1a1a;
}

/* Headings */
.rsvp-wrapper h2 {
  font-size: 28px;
  margin-bottom: 25px;
}

.rsvp-wrapper h3 {
  font-size: 18px;
  margin-bottom: 18px;
}

/* Sections */
.section {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.05);
}

/* Person Box */
.person {
  background: #fafafa;
  border-radius: 12px;
  padding: 16px;
  margin-top: 16px;
  border: 1px solid rgba(0,0,0,0.05);
}

/* FORM GRID */
.form-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

/* Labels (links) */
.form-row > label:first-child {
  font-size: 14px;
  color: #555;
}

/* Rechte Seite (Inputs / Checkbox-Text) */
.form-row > label:last-child {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #333;
}

/* Inputs */
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 11px 13px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #fff;
  transition: all 0.2s ease;
}

/* Fokus */
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #d4a373;
  box-shadow: 0 0 0 3px rgba(212,163,115,0.15);
}

/* Checkbox */
.form-row input[type="checkbox"] {
  width: auto;
  transform: scale(1.15);
  cursor: pointer;
  margin-right: 2px;
}

/* TEXT neben Checkbox schöner */
.form-row label input[type="checkbox"] + span {
  margin-left: 6px;
}

/* Dotted Boxes (Kind / Flug / Übernachtung) */
.childBox,
.flightBox,
.stayBox,
#flightMainBox,
#stayMainBox {
  padding: 14px;
  border: 1px dashed #d6d6d6;
  border-radius: 10px;
  margin: 12px 0 16px 0;
  background: rgba(0,0,0,0.015);
}

/* Buttons */
button {
  background: #d4a373;
  color: white;
  border: none;
  padding: 11px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

button:hover {
  background: #c18c5c;
}

button:active {
  transform: scale(0.97);
}

/* Entfernen Button */
.person button {
  background: #eee;
  color: #555;
  margin-top: 12px;
}

.person button:hover {
  background: #ddd;
}

/* Abstand Fix für Add Button */
#persons {
  margin-bottom: 25px;
}

/* Hidden */
.hidden {
  display: none;
}

/* Textarea */
textarea {
  min-height: 90px;
  resize: vertical;
}

/* Mobile */
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .form-row > label:last-child {
    margin-top: 4px;
  }
}/* End custom CSS */