﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Times New Roman", Times, serif;
}

h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.roll-preview {
    font-size: 22px;
    font-weight: 700;
}

.borderbox {
    padding: 10px;
    margin: 10px;
    border: 2px solid #333;
    border-radius: 15px;
}

.coursecode {
    display: grid;
    justify-content: space-between;
    grid-template-columns: 2fr 1fr;
    font-size: 19px;
    font-weight: 700;
}

.no-print {
    display: flex;
    justify-content: space-between;
    margin: 1px 0;
    font-size: 1.1rem;
    font-weight: 100;
}

.print-footer {
    display: none;
    margin-top: 30px;
    font-size: 14pt;
    font-family: "Times New Roman", Times, serif;
    page-break-before: always;
}

@media print {
    .no-print {
        display: none;
    }

    .print-footer {
        display: block;
    }

    .container {
        width: auto;
        margin: 10mm;
        padding: 8px;
    }

    @page {
        size: A4 portrait;
        margin: 5mm 5mm 15mm 5mm;  top, right, bottom, left 
    }
}



