
/* ✅ أزرار مشاركة على جانب الشاشة */
.share-buttons {
  position: fixed;
  top: 50%;
  left: 0;
  z-index: 9999;
  transform: translateY(-50%);
}
.share-buttons a {
  display: block;
  margin: 5px;
  padding: 10px;
  color: #fff;
  border-radius: 0 5px 5px 0;
  text-decoration: none;
  font-size: 14px;
}
.share-buttons a.facebook { background: #1877f2; }
.share-buttons a.whatsapp { background: #25D366; }
.share-buttons a.twitter { background: #1DA1F2; }
.share-buttons a.copylink { background: #333; cursor: pointer; }
