.page {
    background-color: white;
    width: calc(6in + 2px + 0.25in/*margin for the cardstock*/);
    margin: 10px auto;
    height: calc(8.5in + 2px);
    overflow: hidden;
    display: grid;
    position: relative;
    border: 1px solid #999;
    box-sizing: border-box;
}
@media print {
    .page {
        border: 1px solid #fff;
    }
    .holes {
        border: none !important;
    }
}
.page-right {
    padding: 0.25in 0.25in 0.25in 1in;
}
.page-left {
    padding: 0.25in 1in 0.25in 0.25in;
}

.holes {
    width: 0.75in;
    height: 8.5in;
    position: absolute;
    padding-top: 1.5in;
}
.page-left .holes {
    left: calc(100% - 0.75in);
    border-left: 1px solid lightgrey;
}
.page-right .holes {
    border-right: 1px solid lightgrey;
}

.hole {
    left: calc(0.25in + 0.125in);
    background-color: #999;
    border-radius: 50%;
    width: 0.25in;
    height: 0.25in;
    position: absolute;
    margin-left: -0.125in;
    margin-top: -0.125in;
}
.hole:nth-child(2) {
    top: calc(1.5in + 2.75in);
}
.hole:nth-child(3) {
    top: calc(1.5in + 2 * 2.75in);
}

.header-with-hr {
    width: 100%;
    display: flex;
    height: 24px;
}
.hr-part {
    content: '&nbsp;';
    flex-grow: 1;
    background-image: url('../gui/single-border-hr.png');
    background-repeat: repeat-x;
    background-position-y: center;
}
.hr-header-text {
    flex-shrink: 1; font-family: Merienda, cursive;
    padding: 0 5px;
}

.rounded-square {
    width: 14px;
    height: 14px;
    border: 1px solid black;
    border-radius: 4px;
    background-color: white;
    font-size: 9pt;
    margin: 1px 2px 1px 1px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    line-height: 44px;
}

.merienda {
    font-family: Merienda, cursive;
}