html, body {
    background-color: var(--light-theme-global-background-color);
    height: 100vh;
    margin: 0px;
}

:root {
    --light-theme-global-background-color: #f7f1fa;
    --light-theme-indp-container-color: rgba(194, 173, 221, 0.58);
    --light-theme-indp-container-color_90_opaque: rgba(194, 173, 221, 0.9);
    --light-theme-header-color: #0c0e40;
    --light-theme-text1-color: #0c0e40;
    --light-theme-contrast-dark-color: rgb(21, 8, 37);

    --extern-google-link-color: #a5ceec;
}

.activeContent {
    /*margin-top: 50px;*/
    min-height: 95%;
    height: 95%;
    margin-bottom: 0px;
}

/*.footer {*/
/*    position: fixed;*/
/*    left: 0;*/
/*    bottom: 0;*/
/*    min-height: 5%;*/
/*    width: 100%;*/
/*    background-color: #c295d89a;*/
/*    color: rgba(255, 255, 255, 0.788);*/
/*    text-align: center;*/
/*    font-family: Verdana, sans-serif;*/
/*    font-size: 20px;*/
/*}*/

.navbarForm {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}


.navbarButton {
    overflow: auto;
    align-content: center;
    border-radius: 12px;
    border: none;
    min-height: 50px;
    height: 100%;
    width: 90%;
    background-color: var(--light-theme-contrast-dark-color);
    font-family: Verdana, sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: white;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.navbarButton:hover {
    transition: background-color 0.2s ease, color 0.2s ease;
    color: #e1cece;
    cursor: pointer;
}
.navbarFormContainer {
    width:  80%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.navbarFormHeader {
    height: 20%;
    justify-content: center;
    display: flex;
    align-content: center;
    width: 100%;
}


.NavbarMiniDisplay {
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    position: absolute;
    padding: 0px;
    left: 0px;
    margin: 0px;
    height: 100%;
    min-width: 20%;
    background-color: var(--light-theme-indp-container-color_90_opaque);
    align-items: center;
    justify-content: center;
    z-index: 99;
    transition: opacity 0.2s ease;
}

.NavbarMini {
    background-color: var(--light-theme-contrast-dark-color);
    min-height: 50px;
    min-width:  50px;
    max-height: 50px;
    max-width:  50px;
    top:        5px;
    left:      5px;
    z-index:    100;
    border-radius: 10%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s;
    color: white;
}
.NavbarMini:hover {
    cursor: pointer;
    /*transition: background-color 0.2s;*/
    /*background-color: white;*/
}

.Navbar {
  background-color: #46ACC2;
  display: flex;
  padding: 16px;
  font-family: sans-serif;
  color: white;
}