#linkpros-toggle {
  position: fixed;
  bottom: 20px;
  left: 50%;          /* ✅ Center horizontally */
  right: auto;        /* ❌ Disable right */
  transform: translateX(-50%);
  background: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  z-index: 9999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  padding: 0;
  transition: transform 0.4s ease;
}

#linkpros-toggle img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

/* Menu centered with genie effect */
#linkpros-menu {
  position: fixed;
  bottom: 70px;
  left: 50%;           /* ✅ Center horizontally */
  right: auto;         /* ❌ Disable right */
  transform: translateX(-50%) scale(0.2) translateY(20px);
  transform-origin: bottom center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #ccc;
  padding: 20px;
  min-width: 120px;
  max-width: 200px;
  z-index: 9999;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  font-family: Arial, sans-serif;
  border-radius: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  display: flex;
}

#linkpros-menu.show {
  opacity: 1;
  transform: translateX(-50%) scale(1) translateY(0);
  pointer-events: auto;
}

#linkpros-menu h3 {
  margin: 10px 0;
  font-size: 1.3rem;
  color: #0078d7;
  text-align: left;x
}

#linkpros-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#linkpros-menu li {
  margin: 10px 0;
}

#linkpros-menu a {
  text-decoration: none;
  color: #0078d7;
  font-weight: bold;
  font-size: 1.5rem; /* ✅ Increased text size */
}

.linkpros-logo {
  text-align: left;
  margin-bottom: 10px;
}

.linkpros-logo img {
  max-width: 100px;
  height: auto;
}
/* ✅ Animate the icon when menu opens */
#linkpros-toggle.animate {
  transition: transform 0.4s ease;
  transform: rotate(45deg) scale(1.1);
}

/* ✅ Smooth transition back when closing */
#linkpros-toggle {
  transition: transform 0.4s ease;
}