.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for html, class: .elementor-element-ccaafb1 *//* Basisstijl voor het unieke formulier */
.no-show-form {
  max-width: 720px;
  margin: 40px auto;
  padding: 30px 24px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222;
  box-sizing: border-box;
}

.no-show-form h1 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: left;
}

/* Layout in grid */
.no-show-form__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px 20px;
  margin-bottom: 20px;
}

/* Formuliervelden */
.no-show-form__field {
  display: flex;
  flex-direction: column;
}

.no-show-form__field--full {
  grid-column: 1 / -1;
}

.no-show-form label {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.no-show-form input,
.no-show-form textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d0d4dd;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-sizing: border-box;
}

.no-show-form input:focus,
.no-show-form textarea:focus {
  border-color: #2b6cb0;
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.35);
  background-color: #f8fafc;
}

/* Placeholder */
.no-show-form input::placeholder,
.no-show-form textarea::placeholder {
  color: #9ca3af;
}

/* Required indicator */
.no-show-form__required {
  color: #e53e3e;
  font-weight: 700;
}

.no-show-form__required-note {
  font-size: 1.2rem;
  color: #6b7280;
  margin: 10px 0 18px;
}

/* Fieldset no-show */
.no-show-form__fieldset {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px 16px 10px;
  margin: 10px 0 20px;
}

.no-show-form__fieldset legend {
  padding: 0 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.no-show-form__info {
  font-size: 1.3rem;
  color: #374151;
  margin: 8px 0 12px;
}

/* Checkbox */
.no-show-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  cursor: pointer;
}

.no-show-form__checkbox input[type="checkbox"] {
  margin-top: 2px;
}

/* Verstuurknop */
.no-show-form__submit {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 999px;
  border: none;
  
  background: #ff7101;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.2s ease;
}

.no-show-form__submit:hover {
  filter: brightness(1.05);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}

.no-show-form__submit:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Responsiveness */
@media (max-width: 600px) {
  .no-show-form {
    padding: 20px 16px;
    margin: 20px;
  }

  .no-show-form h1 {
    font-size: 1.3rem;
  }
}/* End custom CSS */