/* Container כפתורי שיתוף */
.share-buttons {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

/* כפתורי שיתוף */
.share-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.2s;
}

.share-buttons a:hover {
    transform: scale(1.2);
}

/* צבעים לפי רשת חברתית */
.share-buttons a.facebook { background: #1877f2; }
.share-buttons a.twitter { background: #1da1f2; }
.share-buttons a.linkedin { background: #0077b5; }
.share-buttons a.whatsapp { background: #25d366; }
