@media print {

  /* Ховаємо навігацію */
  .md-sidebar,
  .md-header,
  .md-footer,
  .md-tabs {
    display: none !important;
  }

  /* Контент на всю ширину */
  .md-content {
    margin: 0 !important;
  }

  .md-content__inner {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
  }

  /* Кращі шрифти для друку */
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  /* Посилання — з URL */
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 9pt;
  }

  /* Code blocks */
  pre, code {
    white-space: pre-wrap !important;
    word-break: break-word;
    border: 1px solid #ccc;
  }

  .print-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 6px;
    border-radius: 50%;
    line-height: 1;
  }

  .print-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
  }

  .print-btn:focus {
    outline: none;
  }

}
