/* Hide the button by default */
.book-add-sibling {
  display: none;
}

/* Show only if the user is logged in — requires adding a class to <body> if not already present */
body.user-logged-in .book-add-sibling {
  display: inline-block;
}

