/*@media print {
    html, body {
        width: 210mm;
        height: 297mm;
        background-repeat: no-repeat;
        background-position: 0cm 0cm;
        background-size: 210mm 297mm;
    }
}

body {
    font-family: "Arial", sans-serif;
    font-size: 16px;
    width: 21cm;
    height: 29.7cm;
    padding: 2cm;
}

.header {
    display: flex;
    align-items: center;
    gap: 1cm;
    border-bottom: 2px solid black;
    padding-bottom: 1cm;
    margin-bottom: 1cm;
}

.header-image {
    width: 4cm;
    height: 4cm;
    object-fit: cover;
}

.header-text h1 {
    font-size: 22px;
    margin: 0;
}

.header-text p {
    font-size: 16px;
    margin: 0;
}

.content {
    margin-top: 2cm;
}

.block {
    margin-bottom: 1cm;
}*/

@media print {
    html, body {
        width: 210mm;
        height: 297mm;
        background-repeat: no-repeat;
        background-position: 0cm 0cm;
        background-size:210mm 297mm;
    }

    @page {
        margin: 20mm 15mm 20mm 15mm;
    }
}

body {
    font-family: "Arial";
    border-collapse: collapse;
    font-size: 14px;
    width: 21 cm;
    height: 27 cm;
}

h1 {
    font-size: 18px;
}

.W-50 {
    width: 50%;
    float: left;
} 

.fs-7 {
    font-size: 12px;
}

.fw-bold {
    font-weight: bold;
}

.border {
    border: 1px solid #d2d2d2;
    border-radius: 6px;
    padding: 12px;
}

.me-1 {
    margin-right: 5px;
}

.mb-1 {
    margin-bottom: 5px;
}

.mb-3 {
    margin-bottom: 15px;
}

/*.block {
    position:absolute;
    z-index:1000;
    border: 1px solid red;
}*/

/*.header-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}*/