/* استایل عمومی چت‌بات */
#gemini-chatbot-wrapper {
    direction: rtl;
    font-family: IRANSans, Tahoma, sans-serif;
}

.gemini-chatbot {
    border-radius: 8px;
    overflow: hidden;
}

/* استایل محتوای چت */
.chat-messages {
    background-color: #fff;
    padding: 10px;
    overflow-y: auto;
    max-height: 250px;
}

/* 💬 پیام کاربر */
.user-message {
    background-color: #e0f0ff; /* آبی کم‌رنگ */
    color: #000;
    border-radius: 5px;
    padding: 8px 10px;
    margin: 5px 0;
    max-width: 85%;
    align-self: flex-end;
    text-align: right;
    direction: rtl;
}

/* 🤖 پیام ربات */
.bot-message {
    background-color: #d9fdd3; /* سبز کم‌رنگ */
    color: #000;
    border-radius: 5px;
    padding: 8px 10px;
    margin: 5px 0;
    max-width: 85%;
    align-self: flex-start;
    text-align: right;
    direction: rtl;
}

/* فرم ورودی */
#gemini-chat-form {
    display: flex;
    border-top: 1px solid #ccc;
    background-color: #f9f9f9;
}

#gemini-chat-input {
    flex-grow: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
}

#gemini-chat-form button {
    margin-left: 5px;
    border-radius: 5px;
    cursor: pointer;
}

/* دکمه باز و بسته چت */
#gemini-toggle-btn {
    border-radius: 8px 0 0 8px;
}
