/* === ОБЩИЕ СТИЛИ результат экзамена пример на русском языке=== */ 
#task-container ul li {
  padding: 14px 18px;         /* чуть меньше чем было */
  border-radius: 10px;        /* чуть менее скруглённый */
  margin-bottom: 18px;
  line-height: 1.75;
  font-size: 17px;            /* немного увеличен */
  font-weight: 400;
}

/* ==== 🌙 ТЁМНАЯ ТЕМА ==== */
body.dark #task-container ul li {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ddd;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body.dark #task-container ul li span[style*="color:red"] {
  color: #ff6666 !important;
}

body.dark #task-container ul li span[style*="color:green"] {
  color: #66cc66 !important;
}

body.dark #task-container ul li b {
  color: #ccc;
}

/* 🌙 Тёмная тема */
body.dark #task-container ul li b:first-child {
  background-color: rgba(255, 255, 255, 0.08);
  color: #b0b8ff;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 600;
}

/* ==== 🌞 СВЕТЛАЯ ТЕМА ==== */
body.light #task-container ul li {
  background-color: #f4f5f7;
  color: #1c1c1e;
  border: 1px solid #e0e0e5;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body.light #task-container ul li span[style*="color:red"] {
  color: #d43c2f !important;
  font-weight: 500;
}

body.light #task-container ul li span[style*="color:green"] {
  color: #007a34 !important;
  font-weight: 500;
}

body.light #task-container ul li b {
  color: #444;
}

/* Абзацы и системный текст */
#task-container p { 
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  padding: 10px 16px;
  background-color: #f6f6f6;
  border: 1px solid #e2e3e7;
  border-radius: 12px;
  color: #1c1c1e;
  margin-bottom: 16px;
}

body.dark #task-container p {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d7eb98;
}


/* Заголовки: мягче */
#task-container h2 {
  font-size: 22px;             /* было слишком большим */
  font-weight: 600;
  margin-bottom: 10px;
}

#task-container h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 12px;
}

/* Список ошибок */
#task-container h3 + ul {
  padding-left: 20px;
}

/* 🌞 Светлая тема */
body.light #task-container ul li b:first-child {
  background-color: #ffffff;
  color: #2b44cc;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 600;
}