body{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* --- Header title row (logo + text) --- */
.centered-title{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 16px 0;
    white-space: nowrap;
    line-height: 1;
}

/* Force logo size no matter what other CSS does */
.centered-title .site-logo{
    height: 80px !important;
    width: 80px !important;
    max-height: 80px !important;
    max-width: 80px !important;
    object-fit: contain;
    display: inline-block;
}

/* Title text size */
.centered-title .site-title-text{
    font-size: 28px;
    font-weight: 700;
    color: #0b0b3b;
}

/* --- Menu bar --- */
.menu-bar{
    background-color: #00008B;
    overflow: hidden;
}

.menu-bar ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.menu-bar ul li{
    display: inline;
}

.menu-bar ul li a{
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    font-size: 18px;
    text-align: center;
}

.menu-bar ul li a:hover{
    background-color: #575757;
}

.menu-bar .icon{
    display: none;
    text-decoration: none;
}

/* --- Responsive --- */
@media screen and (max-width: 800px){
    .centered-title{
        margin: 12px 0;
        gap: 8px;
    }

    .centered-title .site-logo{
        height: 32px !important;
        width: 32px !important;
        max-height: 32px !important;
        max-width: 32px !important;
    }

    .centered-title .site-title-text{
        font-size: 22px;
    }

    .menu-bar ul{
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .menu-bar .icon{
        display: block;
        color: white;
        font-size: 24px;
        padding: 14px 20px;
        cursor: pointer;
        text-decoration: none;
    }

    .menu-bar.responsive ul{
        display: flex;
    }

    .menu-bar ul li{
        display: block;
        text-align: left;
    }

    .menu-bar ul li a{
        padding: 10px;
        font-size: 16px;
        border-bottom: 1px solid #575757;
    }
}
