﻿@media print {
    body {
        background: white;
    }
}

.print-root {
    font-family: "Tahoma", Arial, sans-serif;
    font-size: 13px;
    color: #000;
    padding: 20px;
}

.print-header h2 {
    text-align: center;
    margin-bottom: 20px;
}

.header-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 8px;
    column-gap: 20px;
    margin-bottom: 10px;
}

    .header-grid span {
        font-weight: bold;
    }

.description {
    margin-top: 10px;
    padding: 8px;
    border: 1px solid #000;
}

.print-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

    .print-table th,
    .print-table td {
        border: 1px solid #000;
        padding: 6px;
        text-align: center;
    }

    .print-table th {
        background-color: #f0f0f0;
        font-weight: bold;
    }

.signatures {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

    .signatures div {
        width: 30%;
        text-align: center;
    }

    .signatures .line {
        margin-top: 30px;
        border-bottom: 1px dashed #000;
    }
