/* Facebook-only bar */
.spb-bar{
  display:flex;align-items:center;gap:.5rem;
  border-top:1px solid #e5e7eb;border-bottom:1px solid #e5e7eb;
  padding:.75rem 0;margin:2rem 0 1rem;
}
.spb-bar__label{ font-weight:700; letter-spacing:.02em; margin-right:.5rem; color:#111827; }
.spb-round{ width:36px;height:36px;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;border:1px solid #e5e7eb;background:#fff;text-decoration:none;cursor:pointer; transition: background .15s ease, border-color .15s ease; }
.spb-round svg{ width:18px;height:18px;fill:#111827; transition: fill .15s ease; }
.spb-round:hover{ background:#f8fafc; }

/* Hover colors */
.spb-round.spb-fb:hover {
  background: #1877f2; /* Facebook blue */
  border-color: #1877f2;
}
.spb-round.spb-fb:hover svg { fill: #fff; }

.spb-round.spb-print:hover {
  background: #f97316; /* Orange */
  border-color: #f97316;
}
.spb-round.spb-print:hover svg { fill: #fff; }

@media print{ .spb-bar{ display:none !important; } }