
.app-root-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
}

.app-main {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5px;
    min-width: 0;
    width: var(--app-container-width);
    margin-left: auto;
    margin-right: auto;
}
.app-page {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1 1 auto;
    /*padding: 10px 10px 10px 10px;*/
    width: 100%;
    min-height: 100%;
}

.app-page-header {
    border-bottom: 1pt solid lightgray;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
}
.app-page-title {
    margin-block-start: 10px;
    margin-block-end: 5px;
}

.app-flex-1 {
    flex: 1;
}

.app-remove-all-padding {
    padding: 0px;
}

.app-remove-left-padding {
    padding-left: 0px;
}

.app-flex-auto {
    flex: auto;
}

.app-page-banner {
}

.app-page-summary {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
}

.app-quotes {
    display: flex;
    flex-direction: row;
    text-align: center;
}

    .app-quotes p {
        padding: 0px 15px 0px 15px;
        font-size: 1.25em;
        text-align: left;
    }

.app-quote {
    color: var(--brand-color);
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.50em;
    padding: 15px 15px 0px 15px;
    width: 100%;
}

.app-banner-heading {
    color: var(--color-on-brand);
    font-size: 3.0rem;
    font-weight: 700;
    line-height: normal;
    padding: 10px 15px 10px 15px;
}

.app-banner-sub-heading {
    color: white;
    font-size: 1.0rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0px 15px 10px 15px;
}

.app-banner-text {
    color: white;
    font-size: 1.0rem;
    padding: 10px 15px 10px 15px;
}

.app-content-rows {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0px 0px 0px 5px;
    width: 100%;
}

.app-content-columns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.app-text-image-container {
    display: flex;
    align-items: center
}

.app-text-autofill-container {
    flex: 1;
    order: 1;
}

.app-image-autowidth-container {
    order: 2;
}

.app-justify-center {
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto;
}

.app-print-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 110px;
    height: 36px;
}
    .app-print-button i {
        color: #0078d4; /* blue */
    }

@media print {
    /* hide everything */
    body * {
        visibility: hidden;
    }

    /* show only the printable area */
    #app-page, #app-page * {
        visibility: visible;
    }

    /* position printable area at top-left */
    #app-page {
        position: absolute;
        left: 0;
        top: 0;
    }
    .app-no-print {
        display: none !important;
    }
}
