@media print {

  /* Hide site chrome */
  header,
  footer,
  nav,
  .site-header,
  .site-footer,
  .menu,
  .mobile-menu,
  .cookie-notice,
  .cky-consent-container,
  .cky-banner-container,
  .cky-popup-wrapper,
  .no-print,
  button,
  .wp-block-buttons {
    display: none !important;
  }

  /* Clean page */
  body {
    background: #fff !important;
    color: #000 !important;
    font-size: 12pt;
    line-height: 1.35;
  }

  a {
    color: #000 !important;
    text-decoration: none !important;
  }

  /* Main content area */
  .site-main,
  main,
  article,
  .entry-content,
  .content,
  .container,
  .wp-site-blocks {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  h1, h2, h3, h4, h5 {
    page-break-after: avoid;
    margin-top: 12pt;
    margin-bottom: 6pt;
  }

  p, li {
    orphans: 3;
    widows: 3;
  }

  /* Prevent awkward breaks */
  .wpforms-container,
  form,
  fieldset,
  table {
    page-break-inside: avoid;
    break-inside: avoid;
  }

  /* Optional: give form fields printable lines */
  input,
  textarea,
  select {
    border: 1px solid #000 !important;
    background: #fff !important;
  }

  @page {
    size: A4;
    margin: 12mm;
  }
  
  input,
  textarea,
  select {
    border: 1.5px solid #000 !important;
    background: #eeeeee !important;
    color: #000 !important;
    padding: 4px 6px !important;
    box-shadow: none !important;
  }

  /* checkboxes and radio buttons */
  input[type="checkbox"],
  input[type="radio"] {
    border: 1px solid #000 !important;
    background: #eeeeee !important;
  }
   /* Hide header + footer areas */
  /* Hide site header/footer but not the page title */
  
  footer,
  header,
  .site-header,
  .site-footer,
  header#masthead,
  nav,
  .navbar {
    display: none !important;
  }


  /* Ensure the page title prints */
  h1,
  .entry-title,
  .page-title {
    display: inline-block !important;
    font-size: 16px !important;
    font-weight: bold !important;
    margin-bottom: 2mm !important;
    height: 65px;
    overflow: hidden;
    clear: both;
    margin-top: 0 !important;
  }

  .availbadge{
    display: none;
  }

  .send-form-button{
    display: none !important;
  }

  /* Make page content use full width */
  main,
  .site-main,
  .entry-content,
  .container,
  .content-area {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .wpcf7-submit{
    display: none;
  }

  .show-title{
    display: block !important;
    font-size: 30px !important;
  }




}