#hak-journey-form select,
#hak-journey-form input[type="number"] {
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    padding: 10px;
    border-radius:2px;
}

#hak-journey-form label {
    display: block;
    font-weight: 500;
    line-height: 1rem;
}

#hak-journey-form button,
#hak-next-btn, #hak-submit-btn {
    font-weight: bold;
    border: none;
    cursor: pointer;
    padding: 0.6em 1.5em;
    font-size: 16px;
    transition: background 0.2s, color 0.2s;
}

.hak-question-text {
    display: block;
}

#hak-journey-form {
    /* max-width: 420px; */
    /* margin: 0 auto; */
}

.hak-fade {
    opacity: 1;
    transition: opacity 0.35s;
}

.hak-fade.hak-fade-out {
    opacity: 0;
    pointer-events: none;
}

/* one field per row */
.hak-fields {
  display: grid;
  grid-template-columns: 1fr;   /* single column */
  gap: 14px;
}

/* full width inputs */
.hak-field { width: 100%; }
.hak-input,
.hak-field select,
.hak-field input {
  width: 100%;
  box-sizing: border-box;
}

.hak-label { display: block; margin-bottom: 6px; font-weight: 600; }

/* actions: make error below the button */
.hak-actions {
  margin-top: 16px;
  display: block;              /* no side-by-side flex */
}
#hak-submit.hak-btn {
  display: inline-block;
  padding: 10px 18px;
  border: 0;
  border-radius: 4px;
  background: #d33;            /* or your ACF-styled color */
  color: #fff;
  cursor: pointer;
}
.hak-error {
  margin-top: 8px;             /* sits under the button */
  color: #c00;
  font-size: 0.95rem;
}
.hak-answer { margin-top: 18px; }
