/* Copyright (c) Microsoft Corporation.
Licensed under the MIT license. */

.imgbox {
    display: grid;
    height: 100%;
}

.center-fit {
    max-width: 100%;
    max-height: 100vh;
    margin: auto;
}

h2 {
    background-color: #4C545D;
    color: white;
    text-align: center;
    font-size: 20px;
    padding: 10px;
}

#report-container {
    height: calc(3 * 100vw);
}

iframe {
    border: none;
}

@media only screen and (min-width: 575px) {
    #report-container {
        height: calc(0.70 * 100vw);
    }
}

