<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
APP USES BOOTSTRAP 4 FOR MOST ALL POSITIONING AND STYLES.
- DO NOT ALTER FOR TEMPLATE USE.
- USE CUSTOM.css to override any of these styles, or add others
*/

body {
    /* Tag is outputted with Bootstrap 4 Classes and Styles already, for flexbox STICKY FOOTER behavior (see tag) */
    /* add optional css here */
    background-color: white;
}
#header-navbar {
    /* The Main Navbar at top of App */
    /* Tag is outputted with Bootstrap 4 Classes already, for Bootstrap 4 NAVBAR behavior with light background (see tag) */
    background-color: #b2ed9e;
}
#header-content {
    /* Optional Header Content directly under the NavBar */
    background-color: inherit;
}
#page-title {
    width: 100%;
    margin: 0px auto 0px auto;   
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}
#page-main-content {
    /* Wrapper around all Content between Header and Footer */
    /* Tag is outputted with Bootstrap 4 Classes already for the following:
            -  STICKY FOOTER behavior using flexbox (see tag) 
            -  CONTAINER behavior for Bootstrap Grid System (see tag) (just add &lt;rows&gt;)
    */
    /* add optional css here */

    padding: 25px 15px 0 15px;
}
#footer {
    background-color: #f5f5f5;
    padding-top: 10px;
    font-size: 75%;

}
#footer p{
    margin-bottom: 0px;
}
#footer a{
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
}
</pre></body></html>