﻿@page {
    size: A4;
    margin: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    width: 210mm;
    height: 297mm;
}

.print-container {
    position: relative;
    width: 210mm;
    height: 297mm;
    background: url('/images/T1.jpg') no-repeat center center;
    background-size: cover;
}

.content {
    position: absolute;
    top: 50mm; /* Adjust based on the template layout */
    left: 20mm; /* Adjust based on the template layout */
    width: 170mm; /* Keep content inside A4 bounds */
    color: #000;
}

/* Ensure no extra borders or margins during printing */
@media print {
    body {
        margin: 0;
        padding: 0;
    }
}
