/* quiz-style.css */
body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  margin: 0;
  padding: 20px;
}

.container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

h1 {
  text-align: center;
  margin-bottom: 30px;
}



.question {
  margin-bottom: 20px;
  padding: 20px;
  border-left: 6px solid transparent;
  background-color: #fafafa;
  border-radius: 6px;
}

.question.correct {
  border-color: #28a745;
  background-color: #e9f9ef;
}

.question.incorrect {
  border-color: #dc3545;
  background-color: #fcebea;
}

.choices label {
  display: block;
  margin-bottom: 5px;
  cursor: pointer;
}

.explanation {
  font-size: 0.9em;
  margin-top: 10px;
  color: #555;
}

.hidden {
  display: none;
}

button {
  display: block;
  margin: 30px auto 0;
  padding: 12px 24px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

#results {
  text-align: center;
  font-size: 1.2em;
  margin-top: 30px;
}
