.profile-menu {
  position: absolute;
  right: 32px;
  top: 90px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(79, 140, 255, 0.13);
  padding: 18px 22px 12px 22px;
  z-index: 100;
  min-width: 210px;
  font-family: 'Segoe UI', Arial, sans-serif;
  animation: fadeIn 0.2s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px);}
  to { opacity: 1; transform: translateY(0);}
}

.profile-menu button {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px 0;
  background: #f3f7fa;
  border: none;
  border-radius: 7px;
  font-size: 1em;
  color: #2d3a4a;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}

.profile-menu button:hover {
  background: #e6f0fa;
  color: #4f8cff;
}
