/* Печать отчёта: виден только #report, A4, 15 мм поля */

@media print {
  body * {
    visibility: hidden;
  }

  dialog#report-dialog,
  dialog#report-dialog * {
    visibility: visible;
  }

  dialog#report-dialog {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    border: none;
    padding: 0;
    width: 100%;
    max-width: none;
    max-height: none;
    overflow: visible;
    background: #fff;
  }

  dialog#report-dialog .dialog-toolbar {
    display: none;
  }

  #report {
    width: 100%;
  }

  @page {
    size: A4;
    margin: 15mm;
  }

  #report table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 8px;
  }

  #report th,
  #report td {
    border: 1px solid #000;
    padding: 4px 6px;
    text-align: right;
    font-size: 10pt;
  }

  #report th {
    text-align: left;
    background: #eee;
  }

  code,
  .formula {
    font-family: monospace;
    font-size: 10pt;
  }

  /* Цвета не печатаются: заменяем цветовые классы текстовыми метками */
  .ok {
    color: #000;
  }
  .bad {
    color: #000;
    font-weight: 700;
  }

  h1 {
    font-size: 14pt;
  }
  h2 {
    font-size: 12pt;
  }
}
