body {
  font-family: "Roboto", sans-serif;
  padding: 20px;
  background-color: #f9f9f9;
}

h1 {
  text-align: center;
  color: #4a90e2; /* Add a friendly blue color */
  margin: 5px;
}
h2 {
  text-align: center;
  margin: 5px;
  color: #889713; /* Add a friendly blue color */
}

p {
  text-align: center;
  font-size: 18px;
  margin-bottom: 30px;
  color: #666; /* Slightly muted text */
}

#worksheet-form {
  border: 2px dashed #4a90e2; /* Change to blue for friendliness */
  padding: 20px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 10px; /* Rounded edges */
  background-color: #ffffff; /* White background for content area */
}

.question {
  margin-bottom: 30px; /* Give more space between questions */
  font-size: 20px; /* Make text slightly larger */
}

.options-div {
  margin-top: 10px;
}
/* Options styling */
.option-span {
  display: inline-block; /* Makes it behave like a block while being inline */
  margin: 0px 5px; /* Space around options */
  padding: 5px 10px; /* Internal spacing */
  cursor: pointer;
  background-color: #e0e0e0; /* Light grey background */
  border-radius: 10px; /* Rounded edges for options */
  transition: background-color 0.3s; /* Smooth hover transition */
}

.option-span:hover {
  background-color: #4a90e2; /* Blue on hover */
  color: #ffffff; /* White text on hover */
}

.option-span.selected {
  background-color: #4a90e2; /* Blue background for selected option */
  color: #ffffff; /* White text for selected option */
  font-weight: bold; /* Bold text for selected option */
}

.helpText {
  color: #f36a6a; /* Change to a less aggressive shade of red */
  margin-top: 10px;
  font-weight: bold; /* Bold for emphasis */
}

#score {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
  color: #4caf50; /* Green for positive feedback */
}

/* Buttons styling */
.btn-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.btn-container button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s; /* Add transform for a 'press' effect */
}

.btn-container button:active {
  transform: scale(0.95); /* Press effect on button click */
}

/* Reset Button (Orange) */
#resetBtn {
  background-color: #ff9800;
  color: white;
}

#resetBtn:hover {
  background-color: #e68a00;
}

/* Submit Button (Green) */
#submitBtn {
  background-color: #4caf50;
  color: white;
}

#submitBtn:hover {
  background-color: #45a049;
}

/* Close Button (Red) */
#closeBtn {
  background-color: #f44336;
  color: white;
}

#closeBtn:hover {
  background-color: #d32f2f;
}

.selected-word {
  font-weight: bold;
  color: #000;
}

.highlighted {
  background-color: #e0e0e0;
}
