@font-face {
    font-family: 'UTMHelvetIns';
    src: url('./fonts/UTMHelvetIns.ttf') format('truetype');
}

@page {
    size: A4;
    margin: 15mm;
}

body {
    font-family: "Times New Roman", Times, serif;
    font-size: 14px;
    color: #000;
}

/* ===== HEADER GRID ===== */
.header-top {
    display: grid;
    grid-template-columns: 110px 1fr;
    column-gap: 12px;
    align-items: start;
    margin-bottom: 6px;
}

/* LOGO */
.logo-box img {
    width: 100px;
    height: auto;
    display: block;
}

/* RIGHT HEADER */
.header-right {
    text-align: right;
}

.header-right .title {
    font-family: 'UTMHelvetIns', Arial, sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.header-meta {
    font-size: 13px;
    line-height: 1.4;
}

.header-meta .row {
    display: flex;
    justify-content: space-between;
}

/* ===== COMPANY ===== */
.company {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    margin-top: 6px;
}

.company-info {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 6px;
}

/* ===== INFO ===== */
.info p {
    margin: 6px 0;
}

.line {
    border-bottom: 1px dotted #000;
    display: inline-block;
    min-width: 200px;
}

/* ===== TABLE ===== */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}

table, th, td {
    border: 1px solid #000;
}

th {
    font-weight: bold;
    text-align: center;
    padding: 4px;
}

td {
    padding: 4px;
}

.text-center { text-align: center; }
.text-right { text-align: right; }

/* ===== FOOTER ===== */
.footer {
    margin-top: 10px;
}

.signatures {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 28px;
    text-align: center;
    font-size: 13px;
}