@font-face {
	font-family: IRANSans;
	font-style: normal;
	font-weight: 500;
	src: url('fonts/woff/IRANSansWeb(FaNum)_Medium.woff') format('woff');  /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
}

.matlabi-quiz {
  margin-top: 2em;
  font-family:IRANSans;
}
.quiz-question {
  margin-bottom: 1.5em;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
}
.quiz-question h4 {
  margin-bottom: 10px;
  font-size: 18px;
}
.quiz-choice {
  display: block;
  width: 100%;
  text-align: right;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.quiz-choice:hover {
  background-color: #f0f0f0;
}
.quiz-choice.correct {
  background-color: #e8f5e9 !important;
  border-color: #a5d6a7;
  color: #232323;
}
.quiz-choice.incorrect {
  background-color: #ffebee !important;
  color: #232323;
  border-color: #ef9a9a;
}