
@page {
    size: A4;
    margin: 0;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #d0e7ff;
    display: flex;
    justify-content: center;
    height: 100%;
    font-family: Arial, sans-serif;
}

.print-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page {
    position: relative;
    padding: 0mm 10mm;
    margin: 0;

    width: 210mm;
    height: 297mm;

    background: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    page-break-after: always;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;

    gap: 7mm;
}

@media print {
    .no-print{
        display: none;
    }
}