html {
    --light-gray-1: #f4f4f4;
    --light-gray-2: #ededed;
    --light-gray-3: #e4e4e4;

    --dark-gray-1: #696969;

    --dark-accent-color: #d74242;
    --accent-color: #de4444;
    --light-accent-color: #db6262;

    --main-font-fam: Montserrat, 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-family: var(--main-font-fam);

}

/* global google icon settings */
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 250,
  'GRAD' 0,
  'opsz' 24
}

body {
    margin: 0;
    padding: 0;

    background-color: white;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;

    width: 350px;
    height: 100%;

    padding: 24px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;

    background-color: var(--light-gray-1);
    border-right: 1.5px solid var(--light-gray-2);

    z-index: 100;
}
.extranav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    width: 100%;
}


.site-title {
    width: 100%;
    display: inline;
    position: relative;
    margin-bottom: 36px;
}

.site-title h3 {
    font-size: 30px;
    font-weight: 700;
    
    margin: 0;
}
.site-title h3 .title-ai {
    color: var(--accent-color);
}
.site-title h3 a {
    color: black;
    text-decoration: none;
}
.site-title p {
    position: relative;
    font-size: 12px;
    font-weight: 500;
    
    /* width: 70%; */
    
    color: var(--dark-gray-1);
    
    margin: 8px 3px 0px 3px;
}
.site-title p .site-subtitle-bolder {
    font-weight: 590;
}

.site-title::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 1.5px;
    bottom: -16px;
    left: 5%;

    background-color: var(--light-gray-3);
}

.bottom-sidebar {
    position: absolute;


    bottom: 12px;
    left: 20px;
    right: 20px;

    color: var(--dark-gray-1);

    font-size: 12px;
}
.bottom-sidebar p {
    margin: 6px 0;
}

.content-container {
    width: calc(100vw - 350px);
    margin-left: 350px;

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
}


.mobile-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    box-sizing: border-box;

    z-index: 200;

    display: none;
    align-items: center;
    justify-content: start;

    height: 48px;
    padding: 6px 6px 6px 18px;
    gap: 8px;

    background-color: var(--light-gray-1);
    border-bottom: 1.5px solid var(--light-gray-2);

    font-size: 20px;

    box-shadow: 0 0 12px rgba(0, 0, 0, 0.083);
}
.mobile-navbar h3, .mobile-navbar h4 {
    margin: 0;
}
.mobile-navbar h3 {
    font-size: 20px;
}
.mobile-navbar h4 {
    font-size: 16px;
    margin-top: 2px;
}
.mobile-navbar a {
    color: black;
    text-decoration: none;
}
.open-filters-menu-button-container {
    height: 100%;
    aspect-ratio: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}
.open-filters-menu-button {
    font-size: 30px !important;
    color: var(--accent-color);
}

/* .active-link {
    text-decoration: underline !important;
    text-decoration-color: var(--accent-color);
    color: var(--accent-color) !important;
} */


@media (max-width: 899px) {
    .sidebar {
        width: 100%;
        padding-top: 100px;
        opacity: 0;
        pointer-events: none;
        overflow-y: visible;
    }
    .extranav-container {
        overflow-y: scroll;
    }
    .sidebar.visible {
        opacity: 1;
        pointer-events: all;
    }
    .content-container {
        margin-left: 0;
        margin-top: 64px;
        width: 100%;
    }

    .mobile-navbar {
        display: flex;
    }
    .site-title {
        display: none;
    }

    .sidebar.visible ~ .content-container {
        pointer-events: none;
    }
}