.user-item {
  padding: 10px;
  position: relative;
}

.user-item div.user-container {
  text-align: left;
  font: 14px nowayregular;
  background-color: #1a5e85;
  box-shadow: 2px 2px 3px #aaa;
  padding-right: 50px;
  overflow: hidden;
  border-radius: 8px;
}

.user-item div.user-container:hover {
  background-color: #174c69;
}

.user-item a.user-avatar {
  float: left;
  padding: 10px 15px;
}

.user-item p.user-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 5px 0 0;
}

.user-item p.user-name a {
  color: #fff;
  text-decoration: none;
  font: 22px nowaymedium;
}

.user-item p.user-name span {
  display: block;
  color: #ddd;
  padding-top: 4px;
  font: 12px nowayregular;
  margin: -8px 0 10px 0;
}

.user-item a.user-delete {
  /*background-color: #0885ad;*/
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
  line-height: 30px;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
  text-align: center;
  text-decoration: none;
}

