body {
  font-family: Arial, sans-serif;
  margin: 20px;
  background: #f0f0f0;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
}

#quiz-container {
  background: #ffffff;
  padding: 20px;
  border-radius: 6px;
  max-width: 800px;
  margin: 0 auto;
}

.question-block {
  margin-bottom: 25px;
  padding: 15px;
  border-bottom: 1px solid #ccc;
}

.question-block:last-child {
  border-bottom: none;
}

.question-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.answers label {
  display: block;
  margin: 5px 0;
  cursor: pointer;
}

.answer-status {
  margin-top: 8px;
  font-weight: bold;
}

.correct {
  color: green;
}

.wrong {
  color: red;
}
