.user-dropdown-wrapper {
    position: relative;
    display: inline-block;
    font-family: var(--e-global-typography-secondary-font-family);
    margin-right: 8px;
  }
  
  .user-icon {
    cursor: pointer;
    font-size: 24px;
    color: white;;
  }
  
  .user-dropdown {
    position: absolute;
    top: 40px;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 300px;
    padding: 16px;
    display: none;
    z-index: 999;
  }
  
  .user-dropdown.active {
    display: block;
  }
  
  .user-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ccc;
    text-align: center;
    line-height: 32px;
    font-weight: bold;
    color: white;
    font-size: 16px;
  }
  
  .user-name {
    flex-grow: 1;
    margin-left: 12px;
    font-size: 18px;
    color: #000000E5;
  }
  
  .close-btn {
    cursor: pointer;
    font-size: 20px;
    color: #888;
  }
  
  .user-menu {
    list-style: none;
    padding: 0;
    margin: 24px 24px 0 24px;
  }
  
  .user-menu li {
    padding: 4px 0;
  }
  
  .user-menu a {
    text-decoration: none;
    color: #000000E5;
    font-size: 16px;
  }

  .logout {
    border-top: 1px solid #0000001F;
    margin: 8px 24px 0 24px;
    padding: 8px 0 0 0;
  }
  
  .logout a {
    display: flex;
    align-items: center;
    color: #000000E5;
    font-size: 16px;
    text-decoration: none;
  }