/* Container styling */
.mc-adaptive-subnav {
    background-color: #003366; /* dark blue background */
    padding: 10px;
}

/* List styling */
.mc-adaptive-subnav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Link styling */
.mc-adaptive-subnav li a {
    display: block;
    background-color: #ffffff; /* white button */
    color: #003366;            /* dark blue text */
    padding: 10px 12px;
    margin-bottom: 6px;
    text-decoration: none;
    font-weight: normal;
    border-radius: 0;          /* square corners */
    width: 100%;
}

/* Hover effect */
.mc-adaptive-subnav li a:hover {
    background-color: #e6e6e6; /* light gray hover */
    font-weight: bold;
}

/* Current page styling */
.mc-adaptive-subnav .current_page_item > a,
.mc-adaptive-subnav .current_page_parent > a,
.mc-adaptive-subnav .current_page_ancestor > a {
    font-weight: bold;
    background-color: #ffffff; /* same as normal */
    color: #003366;
}