/* First Create Btn */
.wrapper {
  width: 100%;
  min-height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.exam-meta-data span {
  font-size: 18px;
}

.title {
  /* color: var(--heading-I) !important; */
  font-size: 24px !important;
  font-weight: 700 !important;
}

div.title {
  background-color: var(--primary);
  border-radius: 0.25rem;
}

.title-cont {
  border: 0 !important;
}

.quiz-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

#externalCopyBtn,
#internalCopyBtn {
  background-color: transparent;
  color: var(--primary);
}

.q-title span {
  font-size: 22px !important;
}

.copy-btn .bx {
  font-size: 16px;
}

.answer {
  width: 50%;
}

.exam-info {
  color: var(--primary);
}

.right-answer {
  background-color: #b6e9b6;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.wrong-answer {
  background-color: #ff8c80;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

@media (max-width: 768px) {
  .quiz-container {
    max-width: 100% !important;
  }
  .answer {
    width: 100% !important;
  }
}
