﻿
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 div {
    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;
}

#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;
    }

    #pageTitle {
        align-content: end !important;
        justify-content: end !important;
    }

    #titleContainer {
        margin-left: auto;
    }
}