/* Shared styles for the "Тесты" section quiz engine (le-test.js). */

.le-test {
  max-width: 560px;
  margin: 16px 0;
}

.le-test-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  font-weight: 700;
  color: #1A1F36;
}

.le-test-progress {
  height: 8px;
  border-radius: 999px;
  background: #E6E9F2;
  overflow: hidden;
}

.le-test-progress-bar {
  height: 100%;
  width: 0;
  background: #4C6EF5;
  transition: width 0.25s ease;
}

.le-test-card {
  background: #fff;
  border: 1px solid #E6E9F2;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(28, 39, 76, 0.08);
}

.le-test-question {
  font-weight: 800;
  font-size: 18px;
  color: #1A1F36;
  margin: 0 0 18px;
}

.le-test-answers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.le-test-answer {
  border: 2px solid #E6E9F2;
  background: #F5F7FC;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 15px;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  color: #1A1F36;
}

.le-test-answer:hover {
  border-color: #C5CCE8;
}

.le-test-answer.le-correct {
  border-color: #12B76A;
  background: #ECFDF5;
  color: #067647;
}

.le-test-answer.le-wrong {
  border-color: #E11D48;
  background: #FEF2F2;
  color: #B42318;
}

.le-test-result {
  background: #fff;
  border: 1px solid #E6E9F2;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}

.le-test-score {
  font-weight: 700;
  color: #64748B;
  margin: 0 0 6px;
}

.le-test-level {
  font-weight: 900;
  font-size: 22px;
  color: #3B5BDB;
  margin: 0 0 14px;
}

.le-test-advice {
  color: #1A1F36;
  line-height: 1.5;
  margin: 0 0 20px;
}
