.question-image-wrapper {
  max-width: 400px;
  margin-top: 1rem;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  overflow: hidden;
  cursor: pointer;
}

.question-image-wrapper img {
  width: 100%;
  transition: transform 0.3s ease;
}

.question-image-wrapper:hover img {
  transform: scale(1.05);
}

.correct-answer {
  font-weight: bold;
  color: #198754;

}