/* THE PRINT LEAK IS BLOCKED BY CSS, NOT JAVASCRIPT (D-038).

   window.print() is only one route to printing. Ctrl+P CANNOT be intercepted
   by JavaScript, and a disabled button is therefore insufficient. While
   values are concealed, a print media rule replaces the report body with a
   notice. */
@media print {
  .masthead nav, .no-print, .dropzone, button { display: none !important; }
  body { background: #fff; }
  .panel { box-shadow: none; border: 1px solid #ccc; }

  body.values-concealed .report { display: none !important; }
  body.values-concealed .print-blocked { display: block !important; }
}
.print-blocked { display: none; }
