
body, html {
    min-height:100vh;
    height: 100%;
    margin: 0;
    padding: 0;
    min-width: 100vw;
    width: 100%;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

.footer {
    margin-top: auto;
    position: sticky;
    height: 35px
}

#copyRightSVG {
    color: currentColor
}


header {
    margin-bottom: 20px;
    height: 35px;
    align-items: center
}

header > div {
    background-color: currentColor;    
}

.nav-container {
    flex: 3;
}

.nav-container {
    visibility: hidden;
}


.nav-container.active {
    visibility: visible;
}



nav {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-left: 20px
}

.user-info-container {
    flex: 1;
    font-size: 11px;
    height: 100%;
    max-height: 100%;
    align-items: center;
    justify-content: center;
}

#user-google-profile {
    display: flex;
    flex-direction: row;
    gap: 5px;
    max-height: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    object-fit: contain
}

#user-google-profile > img {
    max-height: 100%;
    height: 85%;
    border-radius: 50%;
}

#register-nav-label {
    cursor: pointer;
}

#revoke-nav-label {
    cursor: pointer;
}

.header-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.outer-flex-container {
    display: flex;
    flex-direction: row;
    height: 100%;
}

.outer-flex-container-column {
    flex: 3;
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.outer-flex-container-column.auxiliary {
    flex: 1
}

.icon {
    width: 150px;
    height: 150px; 
    background-color: currentColor;
    mask: url('/static/images/hl-logo-fine.svg') no-repeat center;
    -webkit-mask: url('/static/images/hl-logo-fine.svg') no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain
  }

.centered-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    width: 100%
}


g_id_onload {
    width: 100%;
    justify-content: center;
    align-items: center;
}

g_id_signin {
    width: 100%;
    justify-content: center;
    align-items: center;
}


.tooltip-inner-content {
    border: 2px solid currentColor;
    border-radius: 50%;
    background-color: transparent;
    width: 22px;
    height: 22px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}


.google-login {
    display: none;
    justify-content: center;
    align-items: center;
}

.google-login > div > div > div > div {
    background-color: transparent;
    border: 2px solid currentColor;
    color: currentColor;
    margin-top: 30px;
}


#content-column {
    display: flex;
    flex-direction: column;
    width: 100%
}


#app-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: center;
    justify-items: center;
}

#landing-page-options {
    display: flex;
    flex-direction: column;
    width: 100% !important
}

#landing-page-options > div {
    width: 100% !important;
    margin-top: 25px;
}


#lock-all-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:  transparent; 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    visibility: hidden;
}

#lock-all-overlay.active {
    visibility: visible;
}



#prompt-container {
    height: 100vh;
    width: 100vw;
    background-color: transparent;
    z-index: 1000;
    position: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    top: 0;
    left: 0;
    flex-direction: column;
    padding: 5vh;
    margin: 5vh
}

#upload-prompt {
    align-items: center;
    /* text-align: center; */
    display: flex;
    flex-direction: column;
    width: 80vw;
    height: 60vh;
    justify-content: space-between;
}


#doc-upload-button {
    width: 30%;
    margin-bottom: 2vh;
}


.prompt-item {
    width: 70%
}


#card-bar {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 10vh
}

#close-prompt {
    /* width: 50px !important;
    height: 20px  !important; */
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    margin-left:auto;
    margin-right: 0.5vw;
    margin-top: 0.5vw
}


.hide {
    display: none !important;
}


