﻿
body, html {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

html {
    /*background-color: rgba(35, 35, 35, 1.0);*/
}

body {
    margin: 0;
    overflow: hidden;
    background-color: rgba(220, 220, 220, 0.1);
    /*box-shadow: inset 0px 0px 10px 0px rgba(100, 100, 100, 1.0);*/
}

.btn-dark {
    background-color: rgb(49, 50, 51);
}

.btn-outline-dark:hover {
    background-color: rgb(49, 50, 51);
}

#navbar {
    width: 100%;
    height: auto;
    display: flex;
    font-size: 0.9em;
    margin-bottom: auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px 5px 10px 5px;
    background-color: rgb(49, 50, 51);
    /*background-color: rgba(190, 10, 0, 0.8);*/
}

#navbar .navbar-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#logoContainer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#logo {
    width: 100px;
    margin-right: auto;
}

#logo:hover {
    cursor: pointer;
}

#titleContainer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pageTitle {
    color: white;
    font-size: 1.2em;
}

#languageContainer {

}

#globeIconContainer {
    width: auto;
    display: flex;
    margin-left: auto;
    margin-right: 5px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: white;
}

#globeIcon {
    width: 18px;
}

#languageSelect {
    color: white;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 2px;
    /*field-sizing: content;*/ /* This sizes the select element based on the selected option. So it will only be as wide as the option that is selected. */
    background-color: rgb(49, 50, 51);
    border: 1px solid rgb(49, 50, 51);
}

#layoutBody {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#contentContainer {
    width: 100%;
    height: 100%;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    align-items: center;
    justify-content: center;
}

#versionContainer {
    width: 100%;
    height: auto;
    padding: 5px;
    display: flex;
    margin-top: auto;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgb(49, 50, 51);
}

#versionText {
    /*color: white;*/
    margin: 0 auto;
}

@media only screen and (max-width: 900px) {
    /*#whitespaceContainer {
        display: none !important;
        border: 2px solid green;
    }*/

    #titleContainer {
        display: none !important;
    }

    #languageContainer {
        margin-left: auto;
        width: 100% !important;
    }
}