body {
    font-family: sans-serif;
    font-family:'Bricolage Grotesque';
    font-size: 14px;
}

tr {
    break-inside: avoid;
    page-break-inside: avoid;
}

.page-break {
    break-after: page;
}

h2 {
    font-size: 1.2rem;
    text-align: center;
}

ol, ul {
    padding-left: 15px;

    li:not(:first-child) {
        margin-top: 1%;
    }
}

.material table.name {
    width: 100%;
    margin-bottom: 2%;

    th {
        width: 80px;
        text-align: left;
    }

    td {
        border-bottom: 1px solid #000;
    }
}

/* some specific styling for assignments */
ol.assignment {
    li {
        margin-bottom: 2%;
    }

    .checklist {
        margin-left: 2%;
    }
}
table.written {
    width: 100%;
    margin-bottom: 10%;

    td {
        border-bottom: 1px solid #000;
        height: 40px;
    }
}

div.grid.characterAnalysis {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 1fr repeat(2, 4fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border: 1px solid #000;

    .head, .space {
        border: 1px solid #000;
        padding: 1%;
    }

    .head {
        background-color: rgba(0,0,0,.05);
        text-align: center;
        font-weight: 700;
    }

    .space {
    }
}

ul.editingChecklist, ul.checklist {
    list-style-type: "▢";

    li::marker {
        font-size: .9rem;
    }
    
    li {
        margin-bottom: 1%;
        padding-left: 1%;
    }
}