body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
/*
.site-title {
    font-size: 28px;
    color: black;
    margin: 20px;
    text-align: center;
}
*/
/* Layout: logo + text side-by-side, vertically centered */
.site-title {
    display: flex;
    font-size: 28px;
    align-items: center;        /* vertical alignment of logo and text */
    justify-content: center;    /* horizontal centering inside parent */
    gap: 12px;                  /* space between logo and text */
    text-align: center;         /* makes multiline text centered under itself */
}

.site-title .logo {
    width: 120px !important;    /* force logo size */
    height: auto !important;
    flex-shrink: 0;             /* prevent logo from shrinking */
}

.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;  /* Removes underline from the three-bar icon */
}

/*TOOLTIP TEXT*/
/* TOOLTIP CONTAINER*/
.tooltip{
    vertical-align: middle;
    position: relative;
    display: inline-block;
}

.tooltiptext {
    visibility: hidden;
    background-color: #ffffff;
    color: #333333;
    font-size: 14px;
    font-family: Lato, Helvetica Neue, Arial, Helvetica, sans-serif;
    text-align: left; /* center;*/
    padding: 5px 0;
    border-radius: 6px;
    border: 2px solid #000;
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -50px; /* Adjust based on the new width */
    z-index: 1;
    width: 120px; /* Set the desired width */
}

.tooltiptext::after {
    content: " ";
    position: absolute;
    bottom: 100%;  /* At the top of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;

    border-color: transparent transparent black transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}

.helpicon {
    vertical-align: top; /* middle;*/
    width: 10px;
    height: 10px;
}


/* Responsive styles */
@media screen and (max-width: 800px) {
    .site-title {
        font-size: 20px; /* Smaller font size for small screens */
    }

    .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;  /* Ensure underline is removed */
    }

    .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;
    }
}
