/* =================================================================
   Shared "Save" (bookmark) button — used on feed posts, blog posts,
   forum topics, download files, and gallery photos alike. Loaded
   site-wide; each module adds its own placement rule (margin-left:
   auto, etc.) scoped to its own action-bar class alongside this.
   ================================================================= */
.bookmark-toggle-btn {
    display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 34px; height: 34px; min-width: 34px; padding: 0;
    border-radius: 50%; border: none; background: none;
    color: var(--ink-soft); font-size: .92rem; cursor: pointer;
    transition: background .12s ease, color .12s ease;
}
.bookmark-toggle-btn:hover { background: var(--paper); }
.bookmark-toggle-btn.is-active-bookmark { color: var(--indigo); }
.bookmark-toggle-btn:disabled { opacity: .6; cursor: default; }

body.touch-theme .bookmark-toggle-btn { width: 30px; height: 30px; min-width: 30px; font-size: .85rem; }
