/* Fix for invisible modal overlays on mobile */
.wishlist-share .wishlist-modal,
.wishlist-rename .wishlist-modal,
.wishlist-delete .wishlist-modal {
  display: none !important;
}

.wishlist-share .wishlist-modal.show,
.wishlist-rename .wishlist-modal.show,
.wishlist-delete .wishlist-modal.show {
  display: block !important;
}

/* Ensure modal backdrops are properly styled */
.wishlist-share + .modal-backdrop,
.wishlist-rename + .modal-backdrop,
.wishlist-delete + .modal-backdrop {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  z-index: 1050 !important;
  pointer-events: none !important;
}

.wishlist-share + .modal-backdrop.in,
.wishlist-rename + .modal-backdrop.in,
.wishlist-delete + .modal-backdrop.in {
  pointer-events: all !important;
}
