/* CSS Document */
header {
    display: flex;
    background-color: aqua;
    width: 100%;
    justify-content: space-evenly;
    height: 30vh;
    overflow: scroll;
}
#menuAdmin {
    display: flex;
}
#menuAdmin ul {
    display: block;
}
header li {
    padding: 0 1rem;
    list-style: none;
}
table, th, td {
    border: 1px solid;
}
#container {
    display: grid;
    grid-template-columns: 2fr 1fr;
}
#left {
    height: 70vh;
    overflow: scroll;
}
#variables {
    display: none;
    position: absolute;
    right: 0;
    top: 25vh;
    width: 25vw;
    border: 1px solid;
    padding: 0 1rem;
    margin: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
}