.top-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 15px;
    background-color: #fff;
    font-family: sans-serif;
    border-bottom: 0px solid #eee;
}

.top-nav .logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    margin-right: 30px;
}

.top-nav .menu a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 15px;
    transition: background-color 0.2s;
}

.top-nav .menu a.active {
    background-color: #e3f3ef;
    color: #00a88e;
    font-weight: bold;
}