.menubar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: #ffffff;
    border-bottom: 1px solid #e4ddea;
    margin-bottom: 20px;
}
.menu-brand img {
    height: 40px;
    width: auto;
    display: block;
}

.menubar-left,
.menubar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-link {
    text-decoration: none;
    font-weight: bold;
    color: #713D77;
    font-size: 14px;
}

.menu-link:hover {
    text-decoration: underline;
}

.menu-sep {
    color: #ccc;
}

.user {
    font-size: 14px;
    color: #444;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 12px;
    background: #f3edf6;
    color: #4f2858;
    font-weight: bold;
}

.logout {
    font-size: 14px;
    font-weight: bold;
    color: #713D77;
    text-decoration: none;
}

.logout:hover {
    text-decoration: underline;
}

.menu-link.active {
    background: #f3edf6;
    color: #4f2858;
    padding: 6px 9px;
    border-radius: 8px;
    text-decoration: none;
}

.menu-link.active:hover {
    text-decoration: none;
}