#user-list {
  width: 780px;
}

#user-list ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  width: 100%;
}

#user-list li {
  padding: 10px;
  display: flex;
  gap: 10px;
}

#user-list ul li:nth-child(odd) {
  background-color: #e6e6e6;
  border-radius: 10px;
}

#user-list ul li:not(:last-child) {
  margin-bottom: 10px;
}

#user-list li a,
#user-list li a:visited {
  color: #969696;
  text-decoration: none;
}

#user-list li a:hover {
  text-decoration-line: underline;
  -moz-text-decoration-style: dashed;
  -webkit-text-decoration-style: dashed;
  -o-text-decoration-style: dashed;
  -ms-text-decoration-style: dashed;
  text-decoration-style: dashed;
}

#user-list li .title {
  flex-grow: 1;
}

#user-list li .link a[href=""] {
  /* display: none; */
  visibility: hidden;
}

#user-list li .link a:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../assets/icons/link.svg);
  background-size: cover;
  margin-right: 6px;
  transform: translateY(2px);
}

#user-list li .properties {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 10px;
}

#user-list li .va-id,
#user-list li .link {
  font-size: 0.8em;
  white-space: nowrap;
}

#user-list li .links .link:last-child {
  margin-left: 10px;
}

@media screen and (max-width: 779px) {
  #user-list {
    width: 100%;
  }
}

@media screen and (max-width: 576px) and (orientation: portrait) {
  #user-list li {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}