.custom-userbar {
  position: fixed;
  top: 50px;
  right: 50px;
  z-index: 4000;
  color: #333;
  font-size: 14px;
}

.custom-userbar__user {
  position: relative;
  opacity: 1;
  transform: scale(1);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.custom-userbar__button {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  padding: 0;
  text-decoration: none;
  color: inherit;
}

.custom-userbar__button svg {
  width: auto;
  height: 58%;
  transition: fill 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.custom-userbar__button circle,
.custom-userbar__button path {
  stroke: #000;
  stroke-width: 1.5;
}

.custom-userbar__button:hover svg {
  transform: scale(1.05);
}
