/* ===== QUESTION BASE (SHARED) ===== */

.question-block {
  margin: 18px 0;
  padding: 16px 14px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(20,40,60,0.08);
  box-sizing: border-box;
  text-align: left;
}

.question-header {
  margin-bottom: 10px;
  text-align: left;
}

.question-number {
  text-align: left;
  font-weight: 800;
}

.question-instruction {
  font-family: Nunito, Manrope, system-ui, -apple-system, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: #607080;
  font-weight: 700;
}

.question-text {
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 6px 0;
  font-family: Nunito, Manrope, system-ui, -apple-system, sans-serif;
  font-size: 14px;
  cursor: pointer;
  text-align: left;
}

.option input[type="checkbox"],
.option input[type="radio"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin: 2px 0 0 0;
  padding: 0;
  border-radius: 4px;
  flex: 0 0 auto;
}

.question-input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(20,40,60,0.14);
  font-size: 14px;
  box-sizing: border-box;
}

.question-select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(20,40,60,0.14);
  font-size: 14px;
  box-sizing: border-box;
}

.question-hint {
  margin-top: 6px;
  font-size: 12px;
  color: #8A98A6;
}

.questions-container {
  margin-top: 10px;
  padding-bottom: 20px;
}
