/* حاوية المجتمع */
.mlm-community-container {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    padding-left: 10px;
    padding-right: 10px;
}

/* مربع إنشاء منشور جديد */
.mlm-new-post textarea {
    width: 100%;
    min-height: 80px;
    margin-bottom: 8px;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* زر إرسال المنشور */
.mlm-new-post button,
.mlm-new-post input[type="submit"] {
    background: #ff4081;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    margin-right: 5px;
    margin-bottom: 5px;
    transition: background 0.3s ease;
}

.mlm-new-post button:hover,
.mlm-new-post input[type="submit"]:hover {
    background: #e73370;
}

/* زر رفع الصور */
.mlm-new-post input[type="file"] {
    margin-bottom: 8px;
}

/* المنشورات */
.mlm-post {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    background-color: #fff;
}

/* محتوى المنشور */
.mlm-post-content {
    margin-bottom: 8px;
    font-size: 15px;
    word-wrap: break-word;
}

/* صورة المنشور */
.mlm-post-image img {
    max-width: 100%;
    border-radius: 4px;
    margin-top: 5px;
}

/* الأزرار أسفل المنشور */
.mlm-post-actions {
    display: flex;
    flex-wrap: wrap;
}

.mlm-post-actions button,
.mlm-post-actions a {
    font-size: 14px;
    padding: 6px 10px;
    border: none;
    border-radius: 4px;
    background-color: #0073aa;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    margin-right: 5px;
    margin-bottom: 5px;
    transition: background 0.2s ease;
}

.mlm-post-actions button:hover,
.mlm-post-actions a:hover {
    background-color: #005177;
}

/* حقل التعليق */
.mlm-comment-input {
    padding: 6px 10px;
    font-size: 14px;
    width: 150px;
    margin-right: 5px;
    margin-bottom: 5px;
}

/* التعليقات */
.mlm-comments {
    margin-top: 8px;
    padding-left: 10px;
    border-top: 1px solid #eee;
}

.mlm-comment {
    font-size: 13px;
    padding: 3px 0;
    margin-bottom: 2px;
}

/* أزرار المشاركة الاجتماعية */
.mlm-social-share a {
    color: #fff;
    text-decoration: none;
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 6px 10px;
    border-radius: 4px;
    display: inline-block;
}

.mlm-social-share a:nth-child(1) { background-color: #4267B2; } /* فيسبوك */
.mlm-social-share a:nth-child(2) { background-color: #E1306C; } /* Instagram */
.mlm-social-share a:nth-child(3) { background-color: #1DA1F2; } /* X/Twitter */
.mlm-social-share a:nth-child(4) { background-color: #25D366; } /* WhatsApp */

/* تحسين استجابة الصفحة للشاشات الصغيرة */
@media (max-width: 600px) {
    .mlm-community-container {
        padding-left: 5px;
        padding-right: 5px;
    }
    .mlm-new-post button,
    .mlm-post-actions button,
    .mlm-post-actions a {
        font-size: 13px;
        padding: 5px 8px;
    }
    .mlm-comment-input {
        width: 100px;
    }
}
