.app-shell-user-menu {
  position: relative;
}

.app-shell-user-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  padding: 4px 8px 4px 10px;
  cursor: pointer;
  font: inherit;
}

.app-shell-user-trigger:hover {
  background: rgba(255, 255, 255, 0.2);
}

.app-shell-user-name {
  font-size: 0.85rem;
}

.app-shell-user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
}

.app-shell-user-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 220px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 2000;
}

.app-shell-user-dropdown.show {
  display: block;
}

.app-shell-user-meta {
  padding: 12px;
  border-bottom: 1px solid #edf2f7;
}

.app-shell-user-display {
  color: #1a202c;
  font-weight: 600;
  font-size: 0.9rem;
}

.app-shell-user-role {
  color: #718096;
  font-size: 0.76rem;
  margin-top: 2px;
}

.app-shell-dropdown-item {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 10px 12px;
  font: inherit;
  font-size: 0.85rem;
  color: #2d3748;
  cursor: pointer;
}

.app-shell-dropdown-item:hover {
  background: #f7fafc;
}

.app-shell-dropdown-danger {
  color: #c53030;
}
