/* ======== ESTILO DO MENU DO USUÁRIO ======== */
#botaoAcessaConta {
  position: relative;
  display: inline-block;
}

#userButton {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--red, #dc2626);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
}

#userButton:hover {
  background: #b91c1c;
}

#userDropdown {
  position: absolute;
  right: 0;
  margin-top: 6px;
  width: 180px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 4px 0;
  z-index: 9999;
}

#userDropdown li {
  padding: 0;
}

#userDropdown a,
#userDropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 14px;
  background: transparent;
  border: none;
  font-size: 14px;
  cursor: pointer;
  color: #333;
  text-decoration: none;
}

#userDropdown a:hover,
#userDropdown button:hover {
  background: #f3f3f3;
}

.hidden {
  display: none;
}
