/* menu.css */
#menu {
    width: 810px;
    height: auto;
    background-color: #0066ff;
    padding: 4px 0;
}

#menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

#menu li {
    padding: 5px 5px;
    margin: 1px;
}

#menu a {
    font-family: sans-serif;
    font-size: 12px;
    color: white;
    text-decoration: none;
    white-space: nowrap;
}

#menu a:hover {
    text-decoration: underline;
}