
textarea {
    min-width: 380px;
    min-height: 200px;
}

.card-template {

    display:flex !important;
    flex-direction: column;
    border: 1px solid black;
    height: 190px;
    width: 380px;
    padding: 8px;
    line-height: 1.2;
    font-size: 15px;
}

.card-template > strong {
    text-align: center;
}

.card-template > p {
    padding: 0;
    margin: 0;
    margin-top: 8px;
    margin-bottom: 8px;
}

#printable-sheet {
    display:none;
}



@media print {

    body > *:not(#printable-sheet) {
        display:none;
    }

    #printable-sheet {
        display:grid;
        width: 100%;
        height: 22in;
        margin: 0;
        padding: 0;
        grid-template-columns: repeat(2, 4.25in);
        grid-template-rows: repeat(10, 2.2in)
    }

    .card-template {
        line-height: .210in;
        font-size: 0.14in;       
        border: none !important;
        padding: 0;
        margin: 0;
    }

}
