/*
This is sample, non-production-ready stylesheet for an embedded dashboard web application.
© 2022 Amazon Web Services, Inc. or its affiliates. All Rights Reserved.

This AWS Content is provided subject to the terms of the AWS Customer Agreement
available at http://aws.amazon.com/agreement or other written agreement between
Customer and either Amazon Web Services, Inc. or Amazon Web Services EMEA SARL or both.
*/
body {
    margin: 0;
    background-color: #ededed;
    height: 100vh;
    font-family: 'Noto Sans', sans-serif;
}

.topnav {
    overflow: hidden;
    background-color: #ffffff;
    z-index: 2; /* Stay on top */
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    /*top:-40px;*/
}

.topnav a {
    float: left;
    color: #455d70;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    height: 100%;
    margin-top: auto;
    /* margin-bottom: auto; */
}

.topnav .stat_logo {
    height: 30px;
}

.topnav a.active {
    color: #292929;
    font-size: 30px;
}

.topnav a.active:hover {
    color: #ffffff;
    background-color: #213d4d;
}

/* common */
.clickable {
    cursor: pointer;
}

.clickable:hover {
    color: #ffffff;
    background-color: #213d4d;
}

.closebtn {
    display: none;
    position: absolute;
    left: 14em;
    top: 50%;
    z-index: 3;
    width: 25px;
    height: 25px;
    border-radius: 15px;
    background-color: #e3e3e3;
    box-shadow: 0px 1px 5px 0px rgb(0 0 0 / 20%),
        0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 3px 1px -2px rgb(0 0 0 / 12%);
}

.backdrop {
    background-color: rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 1;
}

/* The side navigation menu */
.sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 2; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: #292929;
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 85px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
    padding: 16px 8px 16px 32px;
    text-decoration: none;
    font-size: 18px;
    color: #ffffff;
    display: block;
    transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
    background-color: #213d4d;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left 0.5s;
    padding: 0px;
    height: 95%;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#container {
    transition: margin-left 0.5s;
    padding: 0px;
    height: 100%;
}

.pages {
    display: none;
}
.pages:target {
    display: block;
    padding: 0px;
    height: 100%;
    padding-top: 40px;
}
