
html[data-mdb-theme="dark"] body {
    /*background-color: #2b3347 !important;*/
    background-color: #1d1d1d !important;
}

html[data-mdb-theme="light"] body {
    background-color: #E3EAF8 !important;
}


@font-face {
    font-family: LithosPro;
    src: url("../fonts/LithosProRegular.d46daa497596.ttf");
}

.navbar-brand {
    font-family: 'LithosPro', serif;
    font-size: 1.6rem !important;
    letter-spacing: -1px !important;
}

body {
    min-height: 100vh;
}

.btn {
    text-transform: none;
    padding: 10px;
}

#main-menu {
    min-height: 60px;
    /*background-color:#04387c;*/
    background-image: linear-gradient(70deg, rgba(85, 106, 47, .8), rgba(84, 126, 8, 0.8));
    background-size: cover;
}

.markdown-body {
    min-height: 60vh;
    margin: 8px 0 8px 0;
    padding: 10px;
}

.sidebar {
    position: fixed;
    top:0;
    right:0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-image: linear-gradient(70deg, rgba(85, 106, 47, .8), rgba(84, 126, 8, 0.8));
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar li {
    width: 100%;
    list-style-type: none;
    line-height: 3rem;
}

.sidebar a {
    width: 100%;
}


@media(max-width: 800px) {
    #main-menu {
        min-height: auto;
    }
}

@media(max-width: 600px) {
    .sidebar {
        width: 100%;
    }
}

.footer-bg {
    /*background-color: #04387C;*/
    /*background-color: rgba(162,229,178,0.76);*/
    background-image: linear-gradient(70deg, rgba(85, 106, 47, .8), rgba(107, 128, 77, .8));
}

.alert-debug {
    color: black;
    background-color: white;
    border-color: #d6e9c6;
}

.alert-error {
    color: #b94a48;
    background-color: #f2dede;
    border-color: #eed3d7;
}

.download-box {
    background-image: linear-gradient(40deg, rgba(228, 234, 249, 0.2), rgba(222, 224, 220, 0.2));
}


.embed-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;      /* set your preferred max width */
    margin: 2rem auto;     /* centers the video on the page */
}

.embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 16:9 aspect ratio */
.embed-wrapper::before {
    content: "";
    display: block;
    padding-top: 56.25%;  /* 9 / 16 * 100 */
}

/* Optional alignment helpers */
.embed-left { margin-left: 0; margin-right: auto; }
.embed-right { margin-left: auto; margin-right: 0; }
