/* #region BUILTIN */
body
{
    background-image: url("images/background.webp");
    background-size: cover;
    background-attachment: fixed;
    margin: 0%;
    color: rgba(255, 255, 255, 1);
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}
/* #endregion */

/* #region BUILTIN / LIGHT */
body.light-mode
{
    color: rgba(0, 0, 0, 1);
}

a
{
    text-decoration: none;
}

p
{
    margin-top: 0;
}

h1, h2, h3, h4, h5, h6
{
    margin: 0;
}

img
{
    user-select: none;
    pointer-events: none;
    border-radius: 9px;
}
/* #endregion */

/* #region CLASSES */
.container
{
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    width: 65%;
    height: 0px;
    margin-left: auto;
    margin-right: auto;
}

.content
{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.navigation-tabs
{
    width: 100%;
    height: 128px;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
}

.tab-button
{
    border-radius: 0;
    border-width: 0px;
    background-color: rgba(64, 78, 114, 1);
    color: rgba(255, 255, 255, 1);
    float: right;
    margin-right: 16px;
    margin-top: 32px;
    height: 64px;
    width: 128px;
    font-size: 16pt;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
}
.tab-button:hover
{
    background-color: rgba(94, 105, 189, 1);
}
.tab-button:active
{
    background-color: rgba(70, 78, 141, 1);
}

.ldm-button
{
    border-radius: 0;
    border-width: 0px;
    background-color: rgba(255, 255, 255, 0.5);
    color: rgba(0, 0, 0, 1);
    width: 82px;
    height: 46px;
    position: fixed;
    backdrop-filter: blur(10px);
}
.ldm-button:hover
{
    background-color: rgba(255, 255, 255, 0.8);
}
.ldm-button:active
{
    background-color: rgba(180, 180, 180, 0.8);
}

.main-content
{
    margin-left: 20px;
    margin-right: 6%;
}

.circle-image
{
    border-radius: 50%;
}

.side-button
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0;
    border-width: 0px;
    background-color: rgba(64, 78, 114, 1);
    color: rgba(255, 255, 255, 1);
    margin-right: 16px;
    margin-top: 32px;
    height: 64px;
    width: 150px;
    font-size: 16pt;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
}
.side-button:hover
{
    background-color: rgba(94, 105, 189, 1);
}
.side-button:active
{
    background-color: rgba(70, 78, 141, 1);
}

.sidebar
{
    float: left;
    display: flex;
    flex-direction: column;
    width: 150px;
    background-color: rgba(0, 0, 0, 0.5);
    margin-right: 20px;
}

.dummy
{
    /* This class is to disable the map image on other pages, bugfix for the light/dark mode toggle being broken. */
    display: none;
}
/* #endregion */

/* #region CLASSES / LIGHT */
body.light-mode .container
{
    background-color: rgba(255, 255, 255, 0.5);
}

body.light-mode .navigation-tabs
{
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

body.light-mode .ldm-button
{
    background-color: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 1);
}
body.light-mode .ldm-button:hover
{
    background-color: rgba(0, 0, 0, 0.8);
}
body.light-mode .ldm-button:active
{
    background-color: rgba(50, 50, 50, 0.8);
}

body.light-mode .sidebar
{
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}
/* #endregion */