
/* إعدادات الأساس */
/* إعدادات الأزرار المشاركة */
.social-buttons {
    display: none;
    position: absolute;
    top: 190px;
    right: 10px;
    z-index: 999;
}

.social-buttons ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.social-btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* الألوان الخاصة بكل شبكة اجتماعية */
.social-btn.facebook {
    background-color: #3b5998;
}

.social-btn.whatsapp {
    background-color: #25d366;
}

.social-btn.twitter {
    background-color: #1da1f2;
}

.social-btn.linkedin {
    background-color: #0077b5;
}

/* التأثيرات عند التمرير */
.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* التأثيرات الحركية */
@keyframes slideIn {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.social-btn {
    animation: slideIn 0.5s ease-out forwards;
}

/* التأثير عند إخفاء الأزرار */
.social-buttons.hidden {
    display: none;
}

