@keyframes reauth {
  from { opacity: 0.8 }
  to { opacity: 0.2 }
}

.capsuleers {
  display: flex;
  gap: 0.5rem;
}

.user-capsuleer {
  button {
    cursor: pointer;
    background: transparent;
    margin: 0;
    padding: 0;
    transition: border-color 0.3s ease;
    border-width: 0.25rem 0;
    border-style: solid;
    border-color: transparent;
    pointer-events: none;
  }

  img {
    height: 2rem;
    width: 2rem;
    vertical-align: middle;
  }

  &.online {
    button {
      pointer-events: all;
      border-color: var(--online);
    }
  }

  &.follow {
    button {
      border-color: var(--follow);
    }
  }

  &.reauth {
    cursor: pointer;

    button {
      border-color: var(--offline);
      pointer-events: all;
      animation-name: reauth;
      animation-duration: 0.75s;
      animation-iteration-count: infinite;
      animation-direction: alternate;
      animation-timing-function: ease-in-out;
    }
  }
}
