﻿#page_container {
    /*    border-left: 3px solid #000000;
    border-right: 3px solid #000000;
    border-bottom: 3px solid #000000;*/
    margin: 0 auto;
    width: 100%;
    min-width: 320px;
    max-width: 1500px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
    background-color: white;
}

#Header {
    background-color: white;
}

#Logo {
    background-image: url("/Pictures/banner2.png");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 auto;
    max-width: 100%;
    height: 0;
    padding-bottom: 16.66%;
}

#LogoImg {
    display: block;
    width: 100%;
    height: auto;
    max-height: 250px; /* desktop cap */
    object-fit: contain;
}

#Navbar {
    font-size: 14pt;
    color: white;
    background-color: #083e6a;
    border-bottom: 3px solid #b9953d;
    padding: 0 5px;
    z-index: 1000;
    transition: .3s;
    height: 55px;
}

    #Navbar a {
        color: white;
        text-decoration: none;
        line-height: 55px;
        padding: 0 10px;
        transition: .3s;
    }

        #Navbar a:hover {
            color: #C79E34;
            cursor: pointer;
        }

    /* collapsed state hides the links (mobile) */
    #Navbar.collapsed a {
        display: none;
    }

    /* expanded state shows links stacked for mobile */
    #Navbar.expanded a {
        display: block;
        line-height: 40px;
        padding: 8px 10px;
        border-top: 1px solid rgba(255,255,255,0.05);
        text-align: left;
        background-color: #083e6a;
    }

        /* Ensure Home link when expanded remains easily tapped */
        #Navbar.expanded a#Home {
            border-top: none;
            font-weight: 700;
        }

/* Mobile toggle button (hidden by default) */
#nav_toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.6rem;
    padding: 8px 10px;
    cursor: pointer;
    position: absolute;
    left: 8px;
    top: 10px;
}

#content_container {
    display: flex;
    background-color: white;
    /*    opacity: .98;*/
}

#page_nav_container {
    margin-left: 25px;
    flex: 15%;
}

#page_nav {
    list-style-type: none;
    padding: 0px;
    margin-top: 5px;
}

    #page_nav li {
        margin-bottom: 5px;
    }

#selected_rep_cotainer {
    /*margin-left: 25px;*/
}

#Content {
    padding: 8px;
    flex: 90%;
    background-color: rgba(248, 248, 248, 0.95);
    border-left: 1px solid #d6d6d6;
    /*    border-left: 1px solid #7f7f7f;*/
    /*    opacity: 0.9;*/
}

#Footer {
    /*font-family: Bradley Hand, cursive;*/
    font-family: 'Inter', sans-serif;
    color: white;
    text-align: center;
    padding: 8px 0;
    background-color: #083e6a;
    border-top: 3px solid #b9953d;
    margin: 0;
    /*float: left;*/
}