/* style.css - النسخة النهائية المحسنة */

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5; /* لون خلفية عام مريح */
}

.chat-container {
    height: 100vh;
    max-width: 700px; /* عرض مناسب للقراءة */
    margin: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

.chat-header {
    z-index: 10;
}

.chat-box {
    overflow-y: auto;
    padding: 20px;
    background-color: #e5ddd5; /* خلفية شبيهة بتطبيقات الشات */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C92AC' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* تصميم الرسائل */
.message {
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 10px;
    max-width: 85%;
    word-wrap: break-word;
    line-height: 1.5;
    font-size: 15px;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* 1. فقاعة المستخدم (يمين) */
.user-bubble {
    background-color: #005c4b; /* لون واتساب الغامق */
    color: white;
    border-bottom-right-radius: 2px;
    margin-right: auto;
    margin-left: 0;
}

/* 2. فقاعة البوت (يسار - عادي) */
.bot-bubble {
    background-color: #ffffff;
    color: #333;
    border-bottom-left-radius: 2px;
    align-self: flex-start;
}

/* 3. فقاعة الأدمن (يسار - مميز) ⭐️ */
.admin-bubble {
    background-color: #fff8e1; /* لون أصفر فاتح جداً ومريح */
    border: 1px solid #ffe082; /* حدود ذهبية خفيفة */
    color: #4e342e;
    border-bottom-left-radius: 2px;
    align-self: flex-start;
}

.admin-bubble strong {
    color: #ff6f00;
}

/* تنسيق المحتوى داخل الرسائل */
.bot-bubble ul, .bot-bubble ol, .admin-bubble ul, .admin-bubble ol {
    margin-bottom: 5px;
    padding-right: 20px;
}
.bot-bubble li, .admin-bubble li { margin-bottom: 3px; }
.bot-bubble p, .admin-bubble p { margin-bottom: 8px; }
.bot-bubble p:last-child, .admin-bubble p:last-child { margin-bottom: 0; }

/* منطقة الإدخال */
.chat-input-area {
    background-color: #f0f2f5;
    border-top: 1px solid #ddd;
}

/* تنسيق مربع النص (Textarea) */
.chat-textarea {
    resize: none; /* منع التكبير اليدوي */
    overflow-y: hidden; /* إخفاء شريط التمرير */
    min-height: 40px;
    max-height: 120px; /* أقصى ارتفاع قبل ظهور السكرول */
    border-radius: 20px;
    padding: 10px 15px;
    line-height: 1.4;
}

/* زر الإرسال */
.send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}