/* Copyright (c) Microsoft Corporation.
Licensed under the MIT license. */

header {
    background-color: #007FFF;
    height: 75px;
    width: 100%;
}

header > p {
    color: #FFFFFF;
    font: bold 1.6em "segoe ui", arial, sans-serif;
    margin-left: 31px;
    padding-top: 20px;
}

main {
    margin: 0 auto;
    width: 100%;
}

section#text-container > div > p {
    font: 1.2em "segoe ui", arial, sans-serif;
}
nav.navbar{
    height:70px;
}
section#report-container {
    height: calc( 100vh - 70px); /* 16:9 aspect ratio */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: scroll;
}
main.row{
    flex-wrap: nowrap;
}
@media only screen and (max-width: 575px) {
    section#report-container {
        height: calc(100vh - 70px); /* 16:9 aspect ratio */
        position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 85px;
    }
}
@media all and (orientation: landscape) {
    section#report-container {
        height: calc(100vh - 90px); /* 16:9 aspect ratio */
        position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 80px;
    }
}

footer > p {
    font: 1em "segoe ui", arial, sans-serif;
}

iframe {
    border: none;
}

#fullScreenIcon{
    width: 32px;
    fill: #FFFFFF;
    cursor: pointer;
}