.title-user{
  font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    display: flex;
    justify-content: end;
    position: absolute;
    gap: 0.5rem;
    top: 1.75rem;
    right: 1.25rem;
    align-items: center;
    z-index: 9;
}
.title-user .text-user {
  color: #FFFFFF;
  margin-top: 4px;
}
.dropdown-menuu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  border-radius: 0.313rem;
  box-shadow: 0 0.313rem 0.938rem rgba(0, 0, 0, 0.2);
  padding: 0.625rem 0;
  min-width: 9.375rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.dropdown-menuu a {
  display: block;
  text-align: left;
  padding: 0.625rem 1.25rem;
  color: #3c3c41;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.title-user .icon-user img {
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  object-fit: cover;
}
.dropdown-menuu.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0);
}