/* Set A4 untuk print */
@page {
    size: A4;
    margin: 0;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #000;
    background: #f0f0f0;
}

/* Satu muka surat dengan border */
.page {
    width: 210mm;
    min-height: 297mm;
    margin: 10mm auto;
    padding: 10mm 12mm;
    background: #fff;
    border: 1px solid #000;
    position: relative;
}

/* Header & logo */
.header {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.logo-wrap {
    flex: 0 0 80px;
}

.logo {
    max-width: 70px;
    max-height: 70px;
}

.header-text {
    flex: 1;
    text-align: left;
    padding-left: 8px;
}

.coop-name {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
}

.coop-reg {
    font-size: 11px;
    margin-top: 2px;
}

.coop-addr,
.coop-contact {
    font-size: 10px;
    margin-top: 2px;
}

/* Garis pemisah */
.divider {
    border: none;
    border-top: 1px solid #000;
    margin: 4px 0 8px 0;
}

/* Tajuk */
.title {
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: underline;
    margin: 0 0 8px 0;
}

/* Seksyen umum */
.section {
    margin-bottom: 8px;
}

.section h3 {
    font-size: 11px;
    text-transform: uppercase;
    margin: 4px 0;
}

/* Jadual asas */
table {
    border-collapse: collapse;
    width: 100%;
}

.info-table th,
.info-table td {
    padding: 3px 4px;
    border: 1px solid #000;
    vertical-align: top;
    font-size: 10px;
}

.info-table th {
    width: 22%;
    background: #f7f7f7;
}

/* Jadual data */
.data-table th,
.data-table td {
    padding: 3px 4px;
    border: 1px solid #000;
    font-size: 10px;
}

.data-table th {
    background: #f7f7f7;
    text-align: left;
}

.summary-table th,
.summary-table td {
    padding: 3px 4px;
    border: 1px solid #000;
    font-size: 10px;
}

.summary-table th {
    background: #f7f7f7;
    text-align: left;
}

/* Jadual bank */
.bank-table th,
.bank-table td {
    padding: 3px 4px;
    border: 1px solid #000;
    font-size: 10px;
}

.bank-table th {
    width: 25%;
    background: #f7f7f7;
}

/* Style umum */
.text-right {
    text-align: right;
}

.row-total {
    font-weight: bold;
    background: #e9e9e9;
}

/* Nota & teks kecil */
.note,
.note-zakat {
    font-size: 9px;
    margin-top: 4px;
}

/* Disediakan oleh */
.prepared-by {
    font-size: 10px;
    margin: 4px 0;
}

.contact {
    font-size: 9px;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 8mm;
    left: 12mm;
    right: 12mm;
    font-size: 9px;
    text-align: right;
}

/* Print-specific */
@media print {
    body {
        background: #fff;
    }

    .page {
        margin: 0;
        border: 1px solid #000;
        box-shadow: none;
    }
}