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

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevents scrollbars on the body */
}

header {
    background-color: #007FFF;
    height: 75px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 31px;
    position: relative;
    z-index: 10;
}

header > p {
    color: #FFFFFF;
    font: bold 1.6em "segoe ui", arial, sans-serif;
    margin: 0;
}

.buttons-container {
    display: flex;
    gap: 10px;
}

main {
    height: calc(100% - 75px); /* Full height minus header */
    width: 100%;
}

section#report-container {
    width: 100%;
    height: 100%;
}

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

iframe {
    border: none;
    width: 100%;
    height: 100%;
}