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

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: column nowrap;
}

#print-report-button {
    width: 100px;
    background-color: rgba(0, 120, 212, 1);
    border-radius: 2px;
    border: 1px solid transparent;
    color: white;
    margin: 2px;
    margin-left: auto;
}

main {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

section#report-container {
    flex: 1;
    min-width: 100%;
    margin: 0;
    padding: 0;
}

iframe {
    border: none;
}

.forbidden-message {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: red;
    font-size: 16px;
}