/* Copyright (c) Microsoft Corporation.
Licensed under the MIT license. */

body {
    margin: 0;
    padding: 0;
    color: #333333 !important;
    box-sizing: border-box;
    background-image: url('../images/infrabyte_bg.png');
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: #333333;
}

header {
    padding: 10px;
    background-color: #F8F9FA;
}

footer {
    margin-top: auto;
}

.logo-container {
    padding: 10px 0px;
}

.user-name {
    font-size: 14px;
}

.logo {
    width: 150px;
}

.logo:hover {
    cursor: pointer;
}

.desktop-menu {
    padding: 5px;
    margin-bottom: 10px;
}

.desktop-menu ul {
    padding: 0;
    margin: 0;
}

.desktop-menu ul li {
    list-style-type: none;
    display: inline-block;
    margin-left: 15px;
    font-size: 16px;
}

.desktop-menu ul li a.active {
    background-color: #E3E3E3;
}

.menu-button:hover {
    background-color: #E3E3E3;
}

.menu_icon {
    display: none;
}

@media screen and (min-width: 128px) and (max-width: 1100px) {
    .desktop-menu {
        position: fixed;
        transition: 0.4s ease-in-out;
        right: -280px;
        top: 100px;
        background-color: #333333;
        width: 280px;
        height: 100%;
    }
    .desktop-menu ul li {
        display: block;
        text-align: left;
        padding: 10px 25px;
        margin: 0px;
        border-bottom: 1px solid #F8F9FA;
    }
    .desktop-menu ul li a {
        color: #F8F9FA;
    }
    .menu-button:hover {
        background-color: #333333;
    }
    .menu_icon {
        display: block;
        color: #333333;
        font-size: 25px;
        padding: 10px 15px; 
    }
    .mobile-menu {
        right: 0;
        transition: 0.4s ease-in-out;
    }
}

main {
    margin: 0 auto;
    width: 100%;
}

section#text-container > div > p {
    font: 1.2em "segoe ui", arial, sans-serif;
}

.embed-container > div > p {
    font: 1.2em "segoe ui", arial, sans-serif;
}

section#report-container {
    height: calc(0.5625 * 61vw); /* 16:9 aspect ratio */
}

.embed-container {
    height: calc(0.5625* 96vw); /* 16:9 aspect ratio */
}

@media only screen and (max-width: 575px) {
    .embed-container {
        height: calc(0.5625 * 100vw); /* 16:9 aspect ratio */
    }
}

@media only screen and (max-width: 575px) {
    section#report-container {
        height: calc(0.5625 * 100vw); /* 16:9 aspect ratio */
    }
}

footer > p {
    font: 1em "segoe ui", arial, sans-serif;
}

iframe {
    border: none;
}

.table-warning {
    background-color: grey !important;
}
