
/* v3.7.278: Bookmark feature styles. */

/* Resume banner — appears at top of home page when a bookmark
   exists for a different page. */
.wtpp-bookmark-banner {
  background: var(--accent, var(--red));
  color: var(--pure-white);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans, -apple-system, system-ui, sans-serif);
  font-size: 14px;
  position: relative;
  z-index: 50;
  flex-wrap: wrap;
}
.wtpp-bookmark-banner-icon {
  font-size: 18px;
  line-height: 1;
}
.wtpp-bookmark-banner-text {
  flex: 1;
  min-width: 200px;
}
.wtpp-bookmark-banner-text strong {
  font-weight: 700;
}
.wtpp-bookmark-banner-resume {
  background: var(--surface-card);
  color: var(--accent, var(--red));
  border: 1px solid var(--pure-white);
  padding: 6px 14px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
}
.wtpp-bookmark-banner-resume:hover {
  background: var(--ov-white-92);
}
.wtpp-bookmark-banner-dismiss {
  background: transparent;
  color: var(--pure-white);
  border: 1px solid var(--ov-white-50);
  font-size: 16px;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-family: inherit;
}
.wtpp-bookmark-banner-dismiss:hover {
  background: var(--ov-white-18);
}

/* Toast — small confirmation that fades in/out after save/clear. */
.wtpp-bookmark-toast {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: var(--ov-black-88);
  color: var(--pure-white);
  padding: 10px 18px;
  border-radius: 6px;
  font-family: var(--sans, -apple-system, system-ui, sans-serif);
  font-size: 13px;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}
.wtpp-bookmark-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Bookmark icon SVG sizing — match other header icons. */
.wtpp-bookmark-icon-btn svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* Bookmark popover button list — small spacing tweak. */
.wtpp-bookmark-popover .wtpp-btn--block + .wtpp-btn--block {
  margin-top: 6px;
}
.wtpp-bookmark-popover-status {
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-soft, var(--ink-soft));
  font-style: italic;
  line-height: 1.4;
}
html[data-theme="dark"] .wtpp-bookmark-popover-status {
  color: var(--ink-soft, var(--tone-69));
}
