#body{
  /*background-color: teal;*/
}
.default-multiple-choice-CSS {
  width: 100%; /* A more moderate width can improve focus on the content */
  margin: 2em auto; /* Centered with more vertical spacing */
  background-color: #ffffff; /* White background for contrast */
  border: none; /* Remove the border for a flat design */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Softer shadow for a modern look */
  padding: 10px;
}
@media screen and (max-aspect-ratio: 4/3) {
    /* Styles for non-widescreen displays */
    .default-multiple-choice-CSS {
    font-size: 2em; /* Increase font size for better readability on small screens */
    background-color: floralwhite;
  }
}


.default-multiple-choice-title {
  font-size: 2em; /* Larger title for emphasis */
  color: #333333; /* Darker color for better readability */
}

.default-multiple-choice-subtitle {
  font-size: 1em;
  color: #666666; /* Lighter than the title for a visual hierarchy */
  margin-bottom: 2em; /* More space before the question */
}

.default-multiple-choice-question-container {
  padding: 0 2em; /* Padding to prevent text from touching the edges */
}

.default-multiple-choice-question {
  font-size: 1.25em; /* Slightly larger question text */
  color: #333333; /* Same as the title for consistency */
  margin-bottom: 1.5em; /* Increased spacing before answer choices */
}

.default-multiple-choice-answers {
  display: block; /* Each answer is its own block */
  margin-bottom: 1em; /* Consistent bottom margin */
  cursor: pointer;
  background-color: #e7f0fd; /* Lighter blue for subtlety */
  color: #333333; /* Dark text for readability */
  padding: 1em 1.5em; /* Balanced padding */
  text-align: center; /* Center-aligned text */
  border: none; /* Flat design does not use borders */
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.1s; /* Smooth background and subtle click effect */
}

.default-multiple-choice-answers:hover {
  background-color: deepskyblue;
  color: black;
  box-shadow: inset 0 0 10px rgba(128, 128, 128, 0.5); /* Gray interior box shadow */
  transition: all 0.3s;
  user-select: none;
}

.default-multiple-choice-answers:active {
  background-color: aqua;
  color: black;
  transition: all 0.3s;
}

.default-skip {
  display: block; /* Make skip a block to control its placement better */
  width: 40%; /* Auto width to fit content */
  text-align: center;
  margin: 1em auto; /* Center align the skip button */
  padding: 1em 2em; /* Generous padding for a larger click area */
  background-color: #f0f0f0; /* Neutral color for secondary action */
  color: #333333; /* Readable text color */
  border-radius: 5px;
  transition: background-color 0.3s; /* Smooth transition for background color */
  cursor: pointer;
  transition: all 0.3s;
   user-select: none;
}

.default-skip:hover {
  background-color: deepskyblue;
  color: black;
}

.default-skip:active {
  color: black; 
  background-color: aqua;
}
.default-multiple-choice-end-message {
  /* This could be an area for a final message with a clear call to action */
  font-size: 1.25em;
  color: #333333; /* Consistency with other text */
  padding: 2em;
  background-color: #fafafa; /* Slightly off-white for a subtle difference */
}

.default-result-answer{
  text-align: left;
  margin-left: 2em;
  margin-bottom: 1em;
  padding-bottom: 10px;

}
.result_indicator{
  margin: 0 auto;
  align-content: center;
  text-align: center;
  width: fit-content;
  border-radius: 10px;
  height: fit-content;
  /*border-top: 1px dotted gray;*/

  padding-top: 5px;
  box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.1); /* Softer shadow for a modern look */
}

#test_finished_link_button{
  cursor: pointer;
  font-size: 1.25em; /* Slightly larger question text */
  color: #333333; /* Same as the title for consistency */
  margin-bottom: 1.5em; /* Increased spacing before answer choices */
}
