/* STYILNG FOR DISCOVER PAGE */

h1 {
  margin-right: auto;
}

/* Profile list styling */
#profileList {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 2rem;
}

li {
  list-style: none;
}

.profile {
  width: 100%;
  min-height: 4em;
  padding: 0.75em;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1em;
  gap: 0.25em;

  .userInfo {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: start;
    gap: 0.5em;
    color: black;
    text-decoration: none;

    &:hover {
      text-decoration: none;
      cursor: pointer;
    }
  }

  .displayName {
    font-weight: bold;
  }

  .username {
    color: gray;
  }

  .avatar {
    margin-right: 0.5em;
    width: 3em;
    height: 3em;
    border-radius: 50%;
  }
}

@media screen and (max-width: 500px) {
  .profile {
    flex-direction: column !important;
    gap: 1em;
  }
}
