.user-menu {
  position: relative;
  display: inline-block;
}

.username {
  cursor: pointer;
  padding: 8px;
  font-weight: 500;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background: white;
  min-width: 160px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 6px;
  overflow: hidden;
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
}

.dropdown-content a:hover {
  background: #f5f5f5;
}

/* Hover trigger */

.dropdown:hover .dropdown-content {
  display: block;
}