/* Hide non-print elements */
.no-print,
.no-print * {
  display: none !important;
}

/* Page setup for printing */
@page {
  size: A4;
  margin: 20mm;
}

/* Body & Layout */
body {
  background: #fff !important;
  color: #000;
  font-family: 'Segoe UI', sans-serif;
  font-size: 12pt;
  line-height: 1.5;
}

/* Certificate Box */
.cert-box {
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  background: none !important;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
}

td, th {
  padding: 8px;
  border: none;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

/* Footer */
.footer {
  page-break-inside: avoid;
  font-size: 10pt;
  color: #444;
  border-top: 1px solid #aaa;
  padding-top: 10px;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer img {
  max-height: 50px;
}

/* Responsive for print layout */
@media print {
  html, body {
    width: 100%;
    height: auto;
  }
}
