/**
 * SC4 PWA Share Button
 *
 * What this file does:
 * - Styles [sc4_share_button] to match the SC4 dark UI and remain usable in installed PWAs.
 * - Provides an optional floating-action-button mode via class .sc4-share-fab.
 *
 * Called by:
 * - Modules\PWA\Engine::enqueue_assets() when [sc4_share_button] is present.
 */

.sc4-share-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.sc4-share-btn .sc4-share-ico{display:inline-flex;align-items:center}

.sc4-share-fab{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:99999;
  padding:12px 14px;
  border-radius:999px;
  box-shadow:0 12px 30px rgba(0,0,0,.45);
}

.sc4-share-toast{
  position:fixed;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  z-index:100000;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(0,0,0,.70);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  font-size:13px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}