/* 연습문제 */

.quizTestDiv {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.quizInfo {
  width: 100%;
  max-width: 1000px;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px 20px;
  line-height: 200%;
  font-size: 15px;
  color: #444;
  font-weight: 500;
}
.quizInfo p {
  display: flex;
  align-items: center;
  gap: 5px;
}
.quizInfo p::before {
  content: '';
  width: 5px;
  height: 5px;
  background-color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

/* 퀴즈 문제 영역 */
.quizTestBoxAll {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quizInfoText {
  color: #459745;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

.quizAnswerDiv {
  flex: 1;
  display: flex;
  align-items: end;
  justify-content: end;
}

.quizAnswerBtn {
  width: 90px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: #fa8500;
  font-size: 14px;
  color: white;
  font-weight: 500;
  cursor: pointer;
}

/* 연습문제 정답확인 */
.quizTestExplanDiv {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quizTestExplanBox {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #f4fcf4;
  padding: 15px;
  border-radius: 4px;
  margin: 10px 0 0 0;
}

.quizExplanTit {
  color: #459745;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid #459745;
  padding: 0 0 8px 0;
}

.quizTestAnswer {
  font-size: 15px;
}
.quizExplanation {
  font-size: 15px;
}

.quizTestTit {
  font-weight: 600;
  color: #333;
}

.quizExplanText {
  width: 100%;
  min-height: 200px;
  border: none;
  padding: 5px 0;
  background-color: transparent;
  font-size: 15px;
  color: #222;
  resize: none;
  margin: 2px 0 0 0;
  cursor: default;
}

.nextBtn {
  width: 90px;
  height: 40px;
  border: 1px solid #fa8500;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fa8500;
  font-weight: 500;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  margin: 10px auto 0;
}

@media (max-width: 800px) {
  .quizTestExplanDiv {
    width: 100%;
  }

  .quizInfo {
    width: 90%;
    font-size: 13px;
  }

  .quizInfo p {
    line-height: 160%;
  }
  .quizInfo p:first-child {
    margin-bottom: 5px;
  }
  .quizInfo p::before {
    flex-shrink: 0;
  }

  .quizExplanTit {
    font-size: 14px;
  }

  .quizTestAnswer {
    font-size: 14px;
  }

  .quizInfoText {
    font-size: 14px;
  }

  .quizExplanation {
    font-size: 14px;
  }

  .quizExplanText {
    min-height: 150px;
    font-size: 13px;
  }

}