/* Main Navigation Container */
.top-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    background: #B3DFDA; /* Keeping original background color */
    padding: 0 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Brand / Logo */
.brand h2 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

/* Main Menu Navigation */
.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.main-menu li {
    display: inline-block;
}

.main-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.main-menu a:hover, .main-menu a.active {
    background-color: rgba(255, 255, 255, 0.5);
    color: #000;
}

/* User Info Section */
.user-info {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info a {
    text-decoration: none;
    color: #d9534f; /* Reddish logout color */
    font-weight: bold;
}
.user-info a:hover {
    text-decoration: underline;
}
