.user-cards {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.user-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.user-card-info {
  flex: 1;
  min-width: 0;
}

.user-card-email {
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-card-name {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 0.1rem;
}

.admin-actions {
  text-align: right;
}
