.bankStatementTableLayout {
    display: flex;
}

.bankStatementTableLeftSpace {
    margin-left: 30px;

}

.statementRow {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 10px;
}

.statementMargins {
    margin: 5px 20px 10px 20px;
}

.statementTitleLeft,
.statementTitleRight {
    font-size: 0.9rem;
    font-weight: 500;
    height: 15px;
    display: flex;
    align-items: center;
}

.statementMiddle {
    border: none;
    border-top: 1px solid #ccc;
    width: 100%;
    margin: 0;

}

.statementItemLeft,
.statementItemRight {
    margin: 5px 5px 5px 25px;
    font-size: 0.8rem;
    height: 13px;
    display: flex;
    align-items: center;
}

.subTotalStrip {
    margin-left: 10px;
    margin-right: 10px;
    height: 30px;
    border-bottom-style: solid;
    border-bottom-width: thin;
    border-bottom-color: #d2d7d3;
}

@media print {
    .statementMargins {
        margin: 1px 10px 1px 10px;
    }

    .statementTitleLeft,
    .statementTitleRight {
        font-size: 0.9rem;
        font-weight: bold;
        min-height: 16px;
        height: auto;
    }

    .statementItemLeft,
    .statementItemRight {
        margin: 5px 10px;
        font-size: 0.8rem;
        min-height: 14px;
        height: auto;
    }

    .statementMiddle {
        border-top: 2px solid #ccc;
        width: 100%;
        margin: 0;
    }
}