.ticketing-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
.ticketing-success {
  background: #e8f8f0;
  border: 1px solid #1e8449;
  color: #1e8449;
  padding: 16px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 16px;
}
.ticketing-followup-banner {
  background: #eef4ff;
  border: 1px solid #2c6fbb;
  color: #1c4d85;
  padding: 14px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.ticketing-error-summary {
  background: #fdecea;
  border: 1px solid #c0392b;
  color: #c0392b;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.ticketing-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.ticketing-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ticketing-field label {
  font-weight: 600;
  font-size: 14px;
  color: #2c3e50;
}
.ticketing-field .req {
  color: #c0392b;
}
.ticketing-field input[type="text"],
.ticketing-field input[type="email"],
.ticketing-field select,
.ticketing-field input[type="file"],
.ticketing-field textarea {
  padding: 10px 12px;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
}
.ticketing-field input[readonly],
.ticketing-field select[disabled] {
  background: #f3f4f6;
  color: #667085;
}
.ticketing-field textarea {
  resize: vertical;
  min-height: 120px;
}
.ticketing-checkbox-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* Custom (nagyobb, könnyebben eltalálható) checkbox "chip" a verseny választáshoz. */
.ticketing-checkbox-option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  padding: 10px 18px 10px 14px;
  border: 2px solid #d0d5dd;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  background: #fff;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.ticketing-checkbox-option:hover {
  border-color: #2c6fbb;
}
.ticketing-checkbox-option:has(.ticketing-checkbox-input:checked) {
  border-color: #2c6fbb;
  background: #eef4ff;
}
.ticketing-checkbox-option:has(.ticketing-checkbox-input:disabled) {
  cursor: not-allowed;
  opacity: 0.6;
}
.ticketing-checkbox-input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.ticketing-checkbox-box {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 2px solid #98a2b3;
  border-radius: 7px;
  background: #fff;
  position: relative;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.ticketing-checkbox-input:checked ~ .ticketing-checkbox-box {
  background: #2c6fbb;
  border-color: #2c6fbb;
}
.ticketing-checkbox-input:checked ~ .ticketing-checkbox-box::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 4px;
  width: 7px;
  height: 13px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.ticketing-checkbox-input:focus-visible ~ .ticketing-checkbox-box {
  outline: 2px solid #2c6fbb;
  outline-offset: 2px;
}
.ticketing-checkbox-text {
  font-size: 15px;
}
.ticketing-field-error {
  border-color: #c0392b !important;
  background: #fdf2f1;
}
.ticketing-error {
  color: #c0392b;
  font-size: 13px;
}
.ticketing-submit-button {
  align-self: flex-start;
  background: #2c6fbb;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}
.ticketing-submit-button:hover {
  background: #23568f;
}
