html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.text-excel-green {
    color: #107C41;
}

.text-pdf-red {
    color: #B80000;
}

/*Copy transitions so we fade to success, then flip back after N seconds*/
[data-issg-copy-text]{
    transition: width, color 300ms;
}

@media print {
    #page-nav, #footer-action-bar {
        display: none !important;
    }

    body {
        padding-left: 0 !important;
    }

    [data-issg-copy-text] {
        display: none;
    }
}