.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 80px);
  max-height: 80px;
  padding: 20px 24px;
  padding-right: 46px;
  margin-left: auto;
  background-color: white;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
}

.user-profile-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: 20px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-family: Inter;
}

.user-info-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-family: Inter;
  position: relative;
}

.user-info-content {
  margin-right: 6px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.user-profile-container .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #55835b;
  overflow: hidden;
  margin-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.user-profile-container .avatar img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.user-profile-container .avatar .avatar-name-letters {
  font-size: 16px;
  color: white;
  font-family: Roboto;
}

.user-profile-container .user-info-container .username {
  font-size: 13px;
  font-weight: 300;
  color: black;
  margin-bottom: 5px;
}

.user-profile-container .user-info-container .username strong {
  margin-right: 10px;
}

.user-profile-container .user-info-container .user-type-label {
  font-size: 12px;
  padding: 3px 7px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  color: rgba(0, 0, 0, 0.65);
  font-family: Inter;
}

.profile-dropdown {
  position: absolute;
  top: 130%;
  right: 10%;
  width: 160px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.profile-dropdown::after {
  content: "";
  position: absolute;
  top: -10px;
  right: 45%;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}

.profile-dropdown > .profile-dropdown-button {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
}

.profile-dropdown-button span {
  margin-left: 8px;
}

.profile-dropdown-button svg {
  transform: scale(1.2);
}

.signout {
  margin-bottom: 0 !important;
}
