/* STYILNG FOR PROFILE PAGE */

/* Current profile banner styling */
#profileInfo {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
  align-items: center;
  margin-bottom: 1em;
  border: none;
  box-shadow: none;

  * {
    margin: 0;
  }

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

  .displayName {
    font-size: 1.5em;
    font-weight: bold;
  }

  #followButton {
    /* hide by default, show on other users' profiles */
    display: none;
    margin-left: auto;
  }
}

/* Following list styling */
li {
  list-style: none;
}

.followsHeader {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0em 1em;
  margin: 0.5em 0;

  h3 {
    font-size: 1.25em;
    margin: 0;
  }

  #dropdownIcon {
    font-size: 1.25em;
    cursor: pointer;
  }
}

#followingList {
  display: none;
}

#followingList.visible {
  display: block;
}

.followedUser {
  min-height: 4em;
  padding: 0.5em;
  display: flex;
  flex-direction: row !important;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1em;
  gap: 0.25em;
  text-decoration: none;

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

  .displayName {
    font-weight: bold;
  }

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