#nav-auth.nav-auth-item {
  display: flex;
  align-items: center;
}

.header-user-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0 16px 20px;
}

.header-username {
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  color: #BE1414;
}

.header-logout-btn {
  padding: 4px 12px;
  font-size: 13px;
  color: #909399;
  background: transparent;
  border: 1px solid #dcdfe6;
  border-radius: 6px;
  cursor: pointer;
}

.header-logout-btn:hover {
  color: #BE1414;
  border-color: #BE1414;
}

@media (max-width: 767px) {
  .header-user-wrap {
    padding: 12px 15px;
  }
}
