/* Print styles for flyer mode */
@media print {
  /* Hide navigation */
  .navbar {
    display: none !important;
  }
  
  /* Hide login button */
  .btn-primary[href="https://my.managementtrust.com"] {
    display: none !important;
  }
  
  /* Hide management portal text */
  p:has(a[href="https://my.managementtrust.com"]) {
    display: none !important;
  }
  
  /* Hide calendar reminder and zoom meeting buttons */
  .calendar-zoom-buttons {
    display: none !important;
  }
  
  /* Hide HOA documents button */
  .hoa-docs-button {
    display: none !important;
  }
  
  /* Ensure QR code is visible and properly sized */
  .qr-code {
    display: block !important;
    max-width: 200px;
    margin: 20px auto;
  }
  
  /* Adjust page for printing */
  body {
    background: white;
  }
  
  .jumbotron {
    background: white;
    padding: 20px;
  }
  
  .container {
    width: 100%;
    max-width: 100%;
  }
}
