/* Default styling for the "Save as PDF" button. Low-specificity so themes can override. */
.html2pdf_button {
    display: inline-block;
    padding: 10px 18px;
    margin: 8px 0;
    background-color: #2271b1;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #2271b1;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.html2pdf_button:hover,
.html2pdf_button:focus {
    background-color: #135e96;
    border-color: #135e96;
    color: #fff;
}

/* Keep the conversion button out of the generated PDF when converting with media=print. */
@media print {
    .html2pdf_button {
        display: none !important;
    }
}
