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

html{
    
}

body {
    background-color:lightgray !important;
}

header {
    
    height: 60px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 200px;
    box-shadow: 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%), 0 2px 4px -1px rgb(0 0 0 / 20%) !important;
     z-index:1;
    /* padding: 0 15px 0 15px;*/
}

.loginHeader{
    font-weight: bold;
    font-size:1.5rem;
    text-align:center;
}

header >div {
    background-color: #1F3849;
    z-index:1;
}

.HeaderGrid {
    display: grid;
    grid-template-columns: 60px 1fr;
}

.HeaderText {
    display:flex;
    align-items:center;
    color: #FFFFFF;
    font: bold 1.6em "segoe ui", arial, sans-serif;
}

header > p {
    color: #FFFFFF;
    font: bold 1.6em "segoe ui", arial, sans-serif;
    margin-left: 31px;
    padding-top: 20px;
}

#logoutForm {
    padding: .5em;
  
}
#logout {
    padding: .5em;
    border: 1px solid white;
    border-radius: 8px;
    color: white !important;
}

    #logout:hover {
        background-color: #adff7d;
        color: black !important;
        font-weight: bold;
        border: 1px solid black;
    }


main {
    margin: 0 auto;
    width: 100%;
}

.gridcontainer {
    display: grid;
  height:100%;
}

#report-container {
    position: relative;
    margin-top:-40px;
}

.gridcontainer .maingrid {
    display: grid;
    grid-template-columns:250px 1fr;
    position: relative;
  
}

.gridcontainer .maingrid > div {
    box-shadow: 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%), 0 2px 4px -1px rgb(0 0 0 / 20%);
}

.OverLay {
    height: 41px;
    background-color: white;
    width: 100%;
    position:absolute;
    top:0;
}

    .gridcontainer #pbiAppPlaceHolder {
        width: 300px;
    }
.notification-bar {
    display: none;
}



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

#report-container {
    /*height: calc(0.5625 * 70vw);*/ /* 16:9 aspect ratio */
    /*width:70vw;*/
}
.SideMenu {
    /* background-color:blue;*/
    display:grid;
    grid-template-rows:1fr 40px;
}

.Settings{
    padding:.1em;
}

.Settings > div:nth-of-type(1) {
    border-radius: 4px;
    padding-left:.5em;
    background-color: #1F3849;
    display: grid;
    align-items: center;
    height: 100%;
}

    .Settings a {
        color: white !important;
        text-decoration: none;
    }
    .Settings a:hover {
        color: black !important;
   
    }

    .Settings > div:nth-of-type(1):hover {
        background-color: #adff7d;
        color: black !important;
        font-weight: bold;
        border: 1px solid black;
    }

    .accordion {
        padding: .1em;
    }
.accordion-button {
    background-color: #1F3849 !important;
    color: white !important;
    font-weight: bold;

}
.ReportList {
    display: grid;
}
    .ReportList > div {
        padding: .5em;
        padding-left: 1.5em;
        background-color: #457096;
        /*  border-bottom: 1px solid;*/
        text-align:unset !important;
        color: white;
        font-weight: bold;
        cursor: pointer;
        border-radius: 0 !important;
    }

        .ReportList > div:hover {
            background-color: #adff7d;
            color:black;
        }

.ActiveItem {
    background-color: #adff7d !important;
    color: black !important;
}


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

iframe {
    border: none;
}

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


.ManageMain {
    border: 1px solid black;
    display:grid
    /*   padding:1rem;*/
}

.ManageSub > div:nth-of-type(1) {
    padding: .5em;
}

.ManageSub > div:nth-of-type(2) {
    padding: 1em;
    background-color:white;
}

.ManageSubHeader {
    display: grid;
    grid-template-columns: 1fr 50px;
    background-color: #1F3849;
    color:white;
    font-size:1.75rem;
    font-weight:bold;
}
.ManageSubHeader >div:nth-of-type(1){
    display:flex;
    align-items:center;
}