/* =========================================
   ملف الاستايل بالكامل (style.css)
   ========================================= */

/* 1. الستايل الأساسي (لكل الأجهزة) */
#ysf-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    font-family: Arial, sans-serif;
    direction: rtl;
}

/* ستايل زرار الفتح والإغلاق (على الكمبيوتر) */
#ysf-chat-btn {
    background: #0073aa;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#ysf-chat-btn:hover {
    background: #005177;
}

/* ستايل صندوق الشات */
#ysf-chat-box {
    width: 320px;
    height: 420px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    margin-bottom: 10px;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

/* الهيدر */
#ysf-chat-header {
    background: #0073aa;
    color: white;
    padding: 12px;
    font-weight: bold;
    text-align: center;
    flex-shrink: 0;
}

/* منطقة الرسايل */
#ysf-chat-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background: #f4f7f6;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 0;
}

/* صندوق الإرسال تحت */
#ysf-chat-footer {
    display: flex;
    border-top: 1px solid #eee;
    padding: 8px;
    background: #fff;
    flex-shrink: 0;
}

#ysf-chat-input {
    flex: 1;
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 4px;
    outline: none;
    font-size: 14px;
}

#ysf-chat-send {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 0 15px;
    margin-right: 5px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

#ysf-chat-send:hover {
    background: #27ae60;
}

/* شكل الرسايل */
.msg-customer {
    background: #dcf8c6;
    align-self: flex-start;
    padding: 8px 12px;
    border-radius: 8px;
    max-width: 80%;
    word-break: break-word;
    text-align: right;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.msg-agent {
    background: #fff;
    align-self: flex-end;
    padding: 8px 12px;
    border-radius: 8px;
    max-width: 80%;
    word-break: break-word;
    text-align: right;
    border: 1px solid #e6e6e6;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* =========================================
   2. الستايل المخصص للموبايل (شاشات أقل من 768 بيكسل)
   ========================================= */
@media (max-width: 768px) {
    /* رفع الويدجت لفوق عشان الفوتر أو المنيو السفلية */
    #ysf-chat-widget {
        bottom: 90px; 
        right: 15px;
    }

    /* تحويل الزرار لدائرة صغيرة */
    #ysf-chat-btn {
        width: 55px;
        height: 55px;
        padding: 0;
        border-radius: 50%;
        font-size: 24px;
    }
    
    /* إخفاء النص "تواصل معنا" تماماً وترك الأيقونة فقط */
    #ysf-chat-btn .chat-text {
        display: none;
    }
    
    /* تعديل أبعاد صندوق الشات عشان يناسب شاشة الموبايل بشكل متجاوب */
    #ysf-chat-box {
        width: 85vw;
        max-width: 350px;
        height: 65vh;
        max-height: 450px;
    }
}