@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;400;600;900&display=swap');
.document-preview {
    max-height: calc(100vh - 100px);
}

.document * {
    font-family: sans-serif ;
}

.document b * {
    font-weight: 600;
}

.documentTable {
    width: 100%;
    font-size: 0.8rem;
}

.documentTable thead th {
    font-weight: normal;
    padding-block: 12px;
    background-color: #1976D2;
    color: white;
    padding-inline: 4px;
}

.documentTable tbody td {
    padding-block: 12px;
    padding-inline: 6px;
}

.documentTable .alignRight {
    text-align: right;
}

.documentTable .summary-bg-blue{
    background-color: #1976D2;
    color: white;
}

.documentTable .summary-left{
    text-align: left;
}
.documentTable .summary-right{
    text-align: right;
}

.summary-bg-light-grey {
    background-color: #FAFAFA;
}

@media print {
    .document-preview {
        display: flex;
        justify-content: center;
        padding: 30px;
        max-height: 100dvh;
    }
}