/* Кнопка авторизованного пользователя в меню */
.menu-user-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.375rem 0.75rem 0.375rem 0.375rem;
  font-size: 14px;
  line-height: 15px;
  text-decoration: none;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  color: rgb(255 255 255);
  box-shadow: inset 0 0 0 1px rgb(255 255 255);
}

.menu-user-link:hover {
  background-color: rgb(113 86 141);
  color: rgb(255 255 255);
  box-shadow: inset 0 0 0 1px rgb(113 86 141);
}

.menu-user-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  background-color: rgb(255 255 255 / 0.15);
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.menu-user-name {
  max-width: 10rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-user-link.dark {
  color: rgb(31 31 31);
  box-shadow: inset 0 0 0 1px rgb(31 31 31);
}

.menu-user-link.dark .menu-user-avatar {
  background-color: rgb(113 86 141 / 0.15);
}

.menu-user-link.dark:hover {
  background-color: rgb(113 86 141);
  color: rgb(255 255 255);
  box-shadow: inset 0 0 0 1px rgb(113 86 141);
}

.menu-user-link.dark:hover .menu-user-avatar {
  background-color: rgb(255 255 255 / 0.2);
}
