body {
  font-family: Arial, sans-serif;
  background: #f6f8fa;
  padding: 2rem;
  margin: 0;
}

.container {
  max-width: 750px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
}

input[type="text"],
input[type="number"],
button {
  padding: 0.5rem;
  margin: 0.5rem 0;
  width: 100%;
  box-sizing: border-box;
}

button {
  background: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background: #0056b3;
}

label,
select {
  display: block;
  margin-top: 1rem;
}

.horizontal-field {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.horizontal-field label {
  margin: 0;
  white-space: nowrap;
}

.horizontal-field select {
  flex: 1;
  margin: 0;
}

/* Choice formatting for multiple choice questions */
.choices {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-left: 1rem;
}

.choice-label {
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 0.5rem;
}

.choice-label input[type="radio"] {
  margin: 0;
}

/* 📘 Instruction box styling */
.form-instructions {
  background: #eef5ff;
  border-left: 4px solid #007bff;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 6px;
}

.form-instructions p {
  margin: 0.25rem 0;
}

.form-instructions ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.form-instructions li {
  margin-bottom: 0.3rem;
}

