.user-role-tag {
  font-size: 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 2px 12px;
  margin-left: 4px;
  border-radius: 11px;
  user-select: none;
  text-transform: capitalize;
  line-height: 16px;

  &.host {
    background: #eefdf6;
    color: #15c47a;
  }

  &.presenter {
    background: #fff6ef;
    color: #f3a45f;
  }

  &.moderator {
    background: #eff3f6;
    color: #656f73;
  }

  &.attendee {
    display: none;
  }
}