
.trivia-modal {
  border-radius: 12px;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#triviaApp {
  text-align: center;
  padding: 10px;
  position: relative;
}
#questionNumber {
  font-weight: bold;
  font-size: 18px;
  color: #6c757d;
}
#questionText {
  font-size: 22px;
  margin-top: 10px;
}
.option-btn {
  display: block;
  margin: 10px auto;
  padding: 12px 20px;
  width: 90%;
  border: none;
  border-radius: 10px;
  background: #f1f1f1;
  transition: all 0.3s;
  cursor: pointer;
  font-size: 16px;
}
.option-btn:hover {
  background-color: #e0e0e0;
}
.option-btn.correct {
  background-color: #d4edda;
  color: #155724;
}
.option-btn.incorrect {
  background-color: #f8d7da;
  color: #721c24;
}
#feedback {
  font-weight: bold;
  font-size: 18px;
}
#finalMessage {
  font-size: 24px;
  font-weight: bold;
  color: #28a745;
}
