/* Creates a printer-friendly version, targeting A4 paper size and black and white printers.
 See: https://www.sitepoint.com/css-printer-friendly-pages/
*/
body, section {
  margin: 0;
  color: #000 important;
  background-color: #fff !important;
}

#header-sinatra,
#footer-sinatra,
nav,
form,
iframe,
.adslot {
  display: none;
}

a::after {
  content: " (" attr(href) ")";
}

main::after {
  content: "Copyright: apptweak.com";
  display: block;
  text-align: center;
}


table, img, svg {
  break-inside: avoid;
}

/* target all pages */
@page {
  margin: 1cm;
}
.hide-on-print{
  display: none;
}