/* Дополнительные стили для книги */

/* Скрываем индикатор статуса (draft/review/done) в навигации:
   material-mkdocs автоматически рисует значок при поле status: в frontmatter,
   но в публичной версии это лишняя информация. */
.md-status,
.md-nav__link .md-status {
  display: none !important;
}

/* Лучшая читаемость основного текста */
.md-typeset {
  font-size: 0.78rem;
  line-height: 1.7;
}

/* Заголовки глав покрупнее */
.md-typeset h1 {
  font-weight: 600;
}

/* Подсветка плашки «в работе» */
.translation-status {
  display: inline-block;
  padding: 0.15em 0.6em;
  border-radius: 0.25em;
  font-size: 0.75em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.translation-status.todo { background: #fdecea; color: #b71c1c; }
.translation-status.in-progress { background: #fff8e1; color: #b07000; }
.translation-status.review { background: #e3f2fd; color: #0d47a1; }
.translation-status.done { background: #e8f5e9; color: #1b5e20; }

[data-md-color-scheme="slate"] .translation-status.todo { background: #4a1f1c; color: #ff8a80; }
[data-md-color-scheme="slate"] .translation-status.in-progress { background: #3d2f00; color: #ffd54f; }
[data-md-color-scheme="slate"] .translation-status.review { background: #0d2a4a; color: #82b1ff; }
[data-md-color-scheme="slate"] .translation-status.done { background: #1b3d1e; color: #a5d6a7; }
