.elementor-31 .elementor-element.elementor-element-4a89911{--display:flex;}/* Start custom CSS for html, class: .elementor-element-2d53f25 */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f7fb;
  color: #333;
}

.quiz-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  color: #4CAF50;
  font-size: 2rem;
  margin-bottom: 30px;
}

.question-container {
  margin-bottom: 20px;
}

.question-number {
  font-weight: bold;
  color: #4CAF50;
}

.answer-options {
  margin-top: 15px;
}

.answer-option {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  color: #333;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.answer-option:hover {
  background-color: #e4e4e4;
}

button:active {
  background-color: #ddd;
}

.feedback {
  display: none;
  padding: 10px;
  margin-top: 10px;
  border-radius: 4px;
}

.feedback.correct {
  background-color: #8BC34A;
  color: white;
}

.feedback.incorrect {
  background-color: #F44336;
  color: white;
}

.feedback-hint {
  margin-top: 15px;
  font-size: 0.9rem;
  font-style: italic;
  color: #777;
}

.navigation {
  text-align: center;
  margin-top: 20px;
}

#next-button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#next-button:hover {
  background-color: #45a049;
}/* End custom CSS */