/* Layout */
.gds-calculator-form {
  max-width: 720px;
  margin: 2rem auto;
  padding: 1.25rem 1.5rem;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}

.gds-q {
  margin: 1rem 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #eee;
}

.gds-section-heading {
  margin: 1.5rem 0 .5rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #444;
}

/* Inputs */
.gds-q input[type="text"],
.gds-q input[type="email"],
.gds-q input[type="number"],
.gds-q input[type="date"],
.gds-q select,
.gds-q textarea {
  width: 100%;
  max-width: 100%;
  padding: .6rem .7rem;
  border: 1px solid #c9c9c9;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
  box-sizing: border-box;
}

.gds-q textarea { min-height: 110px; }

.gds-q label { display: block; margin: .35rem 0; color: #222; }

/* Radio/checkbox inline nicety */
.gds-q input[type="radio"],
.gds-q input[type="checkbox"] { margin-right: .4rem; }

/* Controls + progress */
.gds-controls { margin-top: .75rem; display: flex; gap: .5rem; }
.gds-controls .gds-back,
.gds-controls .gds-next,
.gds-controls-bottom .button {
  padding: .55rem .9rem;
  border-radius: 8px;
  border: 1px solid #c9c9c9;
  background: #f5f5f5;
  cursor: pointer;
}
.gds-controls .gds-back:disabled { opacity: .5; cursor: default; }

.gds-progress { margin-top: .5rem; font-size: .9rem; color: #666; }
