/* Copyright (c) Microsoft Corporation.
Licensed under the MIT license. */
@charset "UTF-8";
main {
    margin: 0 auto;
    width: 100%;
}

#btnFullScreen {
    padding: 10px;
    font-size: 16px;
}

#text-container > div > p {
    font: 1.2em "segoe ui", arial, sans-serif;
}

#report-container {
    height: calc(0.5625 * 75vw); /* 16:9 aspect ratio */
    min-width: 800px;
}

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

iframe {
    border: none;
}

#divFullScreen {
    height: 75px;
    width: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 574px) {
    #report-container {
        height: calc(0.5625 * 100vw); /* 16:9 aspect ratio */
    }
}