/* ===================== FINAL REVIEW SUPPORT ===================== */

.question-review-box {
  margin: 14px 0;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff7ed, #fffbeb);
  border: 1px solid #fed7aa;
  text-align: center;
}

.question-review-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #9a3412;
  background: #ffffff;
  border: 1px solid #fdba74;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(251, 146, 60, 0.18);
  transition: all 0.2s ease;
}

.question-review-link:hover {
  transform: translateY(-1px);
  color: #7c2d12;
  background: #ffedd5;
}

.question-hint {
  margin: 12px 0;
  padding: 12px;
  border-radius: 10px;
  background: #eef2ff;
  color: #3730a3;
  border: 1px solid #c7d2fe;
  line-height: 1.7;
  font-weight: 600;
}

html[dir="rtl"] .question-review-link {
  direction: rtl;
}

html[dir="ltr"] .question-review-link {
  direction: ltr;
}

.final-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eef2ff;
  color: #3730a3;
  border: 1px solid #c7d2fe;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 0.9rem;
}
