html {
  font-size: 12px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}


@media print {
    body {
        background-color: #FFFFFF;
        background-image: none;
        color: #000000
    }

    #PgContent {
        width: 100%;
    }

    .page {
        page-break-after: always;
    }

    tr {
        break-inside: avoid;
    }

    td {
        break-inside: avoid;
    }

}



html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.h3,h3 {
    color: teal;
}

.dot-review {
    height: 12px;
    width: 12px;
    background-color: dodgerblue;
    border-radius: 50%;
    display: inline-block;
}

.dot-discuss, .dot-upcoming {
    height: 12px;
    width: 12px;
    background-color: gold;
    border-radius: 50%;
    display: inline-block;
}

.dot-followup, .dot-pastdue {
    height: 12px;
    width: 12px;
    background-color: red;
    border-radius: 50%;
    display: inline-block;


}

.dot-completed {
    height: 12px;
    width: 12px;
    background-color: green;
    border-radius: 50%;
    display: inline-block;
}



button.link {
    background: none !important;
    border: none;
    padding: 0 !important;
    /*optional*/
    font-family: arial, sans-serif;
    /*input has OS specific font-family*/
    color: #069;
    text-decoration: underline;
    cursor: pointer;
}

tr.clickable {
    cursor: pointer
}