/* Horizontal Navigation Bar */
#hnav {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    background: #002b55;
    border-radius: 5px;
    overflow: auto; /* Allow horizontal scrolling */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    white-space: nowrap; /* Prevent items from wrapping */
}

#hnav li {
    margin: 0;
}

#hnav a {
    display: inline-block; /* Inline block for proper alignment */
    padding: 15px 20px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
    text-align: center;
}

#hnav a:hover {
    background-color: #00509e;
}

/* Responsive Design */
@media (max-width: 650px) {
    #hnav {
        flex-wrap: nowrap; /* Prevent wrapping */
        justify-content: flex-start;
        overflow-x: auto; /* Enable horizontal scrolling for overflow */
    }

    #hnav a {
        padding: 10px 15px;
        font-size: 14px; /* Adjust font size for smaller screens */
    }
}