/* styles.css */
@media print {
    @page {
        size: A4;
        margin: 1cm;
    }
    body {
        transform: scale(0.8);
        transform-origin: top left;
        width: 120%;
        margin: 0;
    }
}

table {
    border-collapse: collapse;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

table,
th,
td {
    border: 1px solid black;
}

th,
td {
    padding: 2px;
    text-align: left;
    font-size: 11px;
    word-wrap: break-word;
}

input[type="text"],
textarea {
    width: 99%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 10px;
    word-wrap: break-word;
    border: none;
    outline: none;
}

.center-text {
    text-align: center;
}

.title-large {
    font-size: 2.5em;
    font-weight: bold;
}

.title-medium {
    font-size: 2em;
    font-weight: bold;
}