.small-header {
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 0;
    color: var(--bs-tertiary-color);
}

.form-label.is-required::after {
    content: '*' / '';
    color: var(--bs-danger);
    padding-left: 0.10rem;
}

/* Printer Styles */
@media print {
    :root {
        --bs-body-font-size: 14px;
        --bs-border-width: 0;
    }
    
    body {
        display: block;
    }
    
    .global-title {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }
    
    .global-title .navbar-brand {
        border-right: none;
        padding-right: 2rem;
        margin-right: 0;
    }
    
    .global-title .navbar-brand img {
        height: 37px;
    }
    
    .global-title .navbar-subbrand {
        padding-left: 0;
    }
    
    .global-title .navbar-subbrand .title {
        padding: 0;
        font-size: 24px;
    }
    
    main {
        width: 100%;
        margin: auto;
    }
    
    main.pb-3 {
        padding-bottom: 0 !important;
    }
    
    main .container.py-5 {
        width: 100%;
        max-width: 100%;
        padding: 1rem !important;
    }
    
    nav,
    .return-to-home,
    .site-footer .nav,
    .site-footer .copyright,
    .site-footer .logo img{
        display: none;
    }

    .site-footer {
        padding: 1rem;
        background: none;
    }

    .site-footer:before {
        background: none;
    }
    
    .site-footer .logo {
        margin-bottom: 0.5rem;
    }
    
    .site-footer .schema {
        color: black;
        margin-bottom: 0;
    }
    
    .site-footer a:not(.btn) {
        color: black;
    }
    
    .site-footer .logo:before {
        content: "University of Arkansas for Medical Sciences";
    }
    
    .col {
        max-width: 750px;
        width: 100%;
    }
}