/* زر المحادثة العائم */
#chat-icon {
    position: fixed; bottom: 20px; right: 20px;
    background: #2563eb; border-radius: 50%; width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.3); z-index: 1000;
    transition: transform 0.3s;
}
#chat-icon:hover {
    transform: scale(1.1);
}

/* نافذة المحادثة بالكامل */
#chat-window {
    position: fixed; bottom: 90px; right: 20px;
    width: 450px;  /* 🟢 تم تكبير العرض (كان 400) */
    height: 600px; /* 🟢 تم تكبير الطول (كان 520) */
    background: white;
    border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: none; flex-direction: column; overflow: hidden; z-index: 1000;
    color: #0f172a; font-family: 'Cairo', sans-serif;
}

/* رأس النافذة (الهيدر) */
#chat-header { 
    background: #2563eb; color: white; padding: 15px; 
    text-align: center; font-weight: bold; font-size: 16px;
}

/* منطقة الرسائل */
#chat-messages { 
    flex: 1; padding: 15px; overflow-y: auto; background: #f8fafc; 
}

/* رسالة الترحيب الثابتة والرسائل المستقبلية (الذكاء الاصطناعي) */
.bot-msg { 
    background: #e2e8f0; 
    color: #0f172a; /* 🟢 لون الخط داكن وواضح */
    padding: 10px 14px; 
    border-radius: 10px; 
    border-bottom-right-radius: 0px;
    margin-bottom: 12px; 
    width: fit-content; 
    max-width: 85%;
    line-height: 1.6;
    font-size: 14px;
    border: 1px solid #cbd5e1;
}

/* منطقة الكتابة والإرسال */
#chat-input-area { 
    display: flex; padding: 12px; border-top: 1px solid #e2e8f0; background: white;
}

#user-input { 
    flex: 1; border: 1px solid #cbd5e1; border-radius: 8px; 
    padding: 12px; /* 🟢 زيادة المسافة الداخلية لراحة العين */
    outline: none; color: #0f172a; background-color: #f1f5f9; 
    font-family: 'Cairo', sans-serif;
    height: auto;
    font-size: 15px; /* 🟢 تكبير خط الكتابة */
}

#chat-input-area button {
    background: #2563eb; color: white; border: none; border-radius: 8px; 
    padding: 12px 18px; /* 🟢 تكبير زر الإرسال قليلاً */
    cursor: pointer; font-weight: bold; font-family: 'Cairo', sans-serif; 
    transition: 0.3s; flex-shrink: 0;
    font-size: 15px; /* 🟢 تكبير خط زر الإرسال */
}
#user-input:focus {
    border-color: #2563eb;
    background-color: white;
}

/* زر الإرسال */
#chat-input-area button {
    background: #2563eb; color: white; border: none; border-radius: 8px; 
    padding: 8px 18px; margin-right: 10px; cursor: pointer; 
    font-weight: bold; font-family: 'Cairo', sans-serif; transition: 0.3s;
}
#chat-input-area button:hover {
    background: #1e40af;
}