/*
====================================================
DoseClock Print Styles
Phase 4 Package 4
Keeps medication logs and stock pages readable when printed/exported
====================================================
*/

@media print {
  body {
    background: #ffffff !important;
    color: #000000 !important;
    font-size: 11pt;
  }

  .site-header,
  .header-actions,
  .site-nav,
  .nav-toggle,
  .nav-toggle__button,
  .btn,
  button,
  .action-bar,
  .page-actions,
  .form-actions,
  .no-print {
    display: none !important;
  }

  .page-main {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
  }

  .card,
  .panel,
  .section-card,
  .stock-card,
  .med-card {
    box-shadow: none !important;
    border: 1px solid #999999 !important;
    break-inside: avoid;
  }

  table {
    width: 100% !important;
    border-collapse: collapse !important;
  }

  th,
  td {
    border: 1px solid #999999 !important;
    padding: 0.35rem !important;
  }

  a[href]::after {
    content: "" !important;
  }
}
