/* print.css */

/* Sembunyi elemen tak penting */
a, ul, button, nav, form, .no-print {
  display: none !important;
}

/* Latar belakang putih bersih */
body {
  background: white;
  color: black;
  font-family: 'Arial', sans-serif;
  font-size: 12pt;
}

/* Jadual kemas untuk cetakan */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

table th, table td {
  border: 1px solid #000;
  padding: 8px;
  text-align: left;
}

table th {
  background-color: #ccc !important;
  color: #000 !important;
}

/* Pastikan warna link ditunjukkan sebagai teks */
a:link, a:visited {
  color: black;
  text-decoration: none;
}

/* Tajuk utama */
h2 {
  font-size: 18pt;
  text-align: center;
  margin-bottom: 20px;
}

/* Elak pecahan row antara halaman */
tr, td, th {
  page-break-inside: avoid;
}

/* Auto page break selepas jadual jika panjang */
table {
  page-break-after: auto;
}

/* print.css - maklumat cetakan */
.print-info {
  text-align: right;
  margin-bottom: 20px;
  font-size: 12pt;
}

.print-phone {
  text-align: left;
  margin-bottom: 10px;
  font-size: 10pt;
}

.print-info p {
  margin: 2px 0;
}

/* print.css */
.print-only {
  display: block !important;
}

/* direktori.css (paparan biasa) */
.print-only {
  display: none;
}
