@use '../../../../assets/scss/customVariables.scss' as *;

.userImg{
  z-index: 100;
  position: relative;
  width: 55.78px;
  height: 55.78px;
  max-width: 55.78px;
  max-height: 55.78px;
  min-width: 55.78px;
  min-height: 55.78px;

  & > img {
    border-radius: 50%;
    border: 1px solid #DDDDDD;
  }
}

.popperBox{
  background-color: #4271D6;
  border-radius: 10px;
  border-bottom: 0;
  z-index: 1000 !important;
  box-shadow: 0 0 10px #4271D642;
  min-width: 192.88px;
  border: 1px solid #1F4BA9;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: -77px;
  
  
  &::-webkit-scrollbar {
    width: 10px;
    border-radius: 5px;
  }

  &::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
  }

  &::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
  }

  &::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  .imgSpace {
    width: 100%;
    height: 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .name {
    width: 100%;
    border-bottom: 1px solid #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    line-height: 27.18px;
    text-align: center;
    color: #fff;
    max-width: 100%;
    overflow: hidden;
  }

  .followersRow {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    .followers {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 47.7%;
      gap: 5px;

      .followersText {
        font-size: 11.28px;
        color: #fff;
        font-weight: 600;
      }
    }
  }

  .button {
    width: 160px;
    height: 40px;
    border-radius: 100px;
    background-color: #000;
    color: #fff;

    font-size: 11.28px;
    text-transform: capitalize;
    margin-top: 12px;
  }
}