.dash-header-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.dash-header-user {
  position: relative;
}

.dash-header-avatar-btn {
  padding: 0;
}

.dash-header-avatar-btn.is-open,
.dash-header-avatar-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(21, 21, 21, 0.12);
}

.dash-header-user-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 180px;
  padding: 8px;
  border-radius: 16px;
  background: var(--fundo-formulario);
  border: 1px solid var(--cor-borda);
  box-shadow: 0 14px 36px rgba(21, 21, 21, 0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 120;
}

.dash-header-user-menu[hidden] {
  display: none;
}

.dash-header-user-menu-item {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--texto-principal);
  text-decoration: none;
  text-align: left;
  padding: 12px 14px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.dash-header-user-menu-item:hover {
  background: rgba(56, 211, 159, 0.08);
  color: #38d39f;
}

.dash-header-user-menu-item--logout:hover {
  background: rgba(220, 53, 69, 0.08);
  color: #dc3545;
}
