/* --- Global Styles & Reset --- */
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #F8F9FE;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

@media print {

  /* Hide the aside and header elements */
  aside,
  .header {
    display: none !important;
  }

  /* Ensure the main content expands and no scrollbars are printed */
  html,
  body {
    height: auto !important;
    overflow: visible !important;
  }

  .footer,
  .print-btn {
    display: none !important;
  }

  /* Remove the shadow from the invoice container */
  .invoice-container {
    box-shadow: none !important;
  }
}
