/* Floating messenger icon styles */
#messenger-icon {
  position: fixed;
  /* Adjust default offset so the messenger icon sits higher on the page. This
     is overridden by inline styles when the icon is created and by the
     draggable script but sets a reasonable fallback. */
  bottom: 100px;
  right: 6px;
  width: 50px;
  height: 50px;
  background-color: #ff2aa1;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  font-size: 24px;
  line-height: 1;
}

/* Badge for unread messages */
#messenger-icon .msgr-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ff4d75;
  color: #fff;
  border-radius: 50%;
  padding: 2px 5px;
  font-size: 10px;
  min-width: 16px;
  text-align: center;
  display: none;
}