.floating-element {
  position: fixed;
  bottom: 20px;
  background-color:gray;
  color: white;
  padding: 5px 10px;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 150px;
  font-size: small;
  text-decoration: none;
}

.floating-element:hover {
  background-color: black;
  color: white;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.user-link {
  right: 20px;
}

.team-link{
  right: 200px;
}