.quiz-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.solution-step{
  margin-bottom: 14px;
  line-height: 1.8;
}

.solution-step strong{
  color: #20345f;
}

.answer-highlight{
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #eef7ff;
  border: 1px solid #cfe3ff;
  font-weight: 700;
  color: #18345d;
}


/* New unique modal */
.vector-modal-2{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.vector-modal-2.hidden{
  display: none !important;
}

.vector-modal-2-box{
  width: min(92%, 440px);
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 16px 36px rgba(0,0,0,0.22);
}

.vector-modal-2-box h3{
  margin-top: 0;
  color: #1b7b35;
}

.vector-modal-2-box button{
  margin-top: 14px;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(180deg, #4a8cff 0%, #245fe6 100%);
  color: #fff;
}