/* Калька D-11 — печатные стили платформы (подключается media="print" только
   при KALKA_ENABLED). Канон §11: карточка и таблица печатаются на A4 без
   обрезки, штриховки видны (они — линии, не полутон); чёрно-белая печать не
   теряет смысла. Цвета — ключевые слова white/black (не hex: приёмка §12). */

@media print {
  html, body {
    background: white !important;
    color: black !important;
  }
  /* Навигация, панели, действия — не для бумаги */
  nav, aside, header .actions,
  .sidebar, .icon-rail, .nav-sidebar, .dashboard-sidebar-left,
  .gd-density-set, .no-print,
  button, .btn, [data-theme-toggle],
  .toast, .copilot-modal, .modal {
    display: none !important;
  }
  main, .main-content, .content {
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
  }
  .gd-card, .card, table, .gd-stamp {
    break-inside: avoid;
    box-shadow: none !important;
  }
  /* Ссылки-источники печатают адрес: провенанс обязан пережить бумагу */
  .gd-src a::after {
    content: " (" attr(href) ")";
    font-size: 9px;
    word-break: break-all;
  }
  a { color: black !important; text-decoration: underline; }
}
