/* קונטיינר שיתוף הדף */ 
#share-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 10px; 
}

#share-button {
    width: 90px;
    height: 27px;
    border-radius: 17.5px; /* פינות מעוגלות ליצירת צורת גליל */
    color: blue;
    border: 3px double black;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    margin: 0 25px; /* התאמת המרווח לפי הצורך */
    transition: border-color 0.5s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* צללים */
}

#share-container:hover #share-button {
    border-color: gold;
    background-color: white;
}

#share-links {
    visibility: hidden;
    opacity: 0;
    transform: scale(0.2);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, visibility 0.5s;
}

#share-container:hover #share-links {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

#share-links a {
    text-decoration: none; /* הסרת קו תחתון */
    font-size: 1em;
}

#share-links a:hover {
    font-weight: bold;
}

.share-logo img {
    width: 24px; /* התאמת גודל לפי הצורך */
    height: 24px; /* התאמת גודל לפי הצורך */
    margin-right: 10px;
}

.share-logo img:hover {
    width: 25px; /* התאמת גודל לפי הצורך */
    height: 25px; /* התאמת גודל לפי הצורך */
}