/* استایل‌های چت‌بات */
#xlam-contact-form, #xlam-ai-box {
    position: fixed;
    bottom: 80px; /* پایین صفحه (فوتر) */
    left: 50%; /* مرکز افقی */
    transform: translateX(-50%); /* تنظیم دقیق مرکز */
    width: 300px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 1000;
    font-family: Arial, sans-serif;
}

#xlam-contact-form-content, #xlam-ai-header {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

#xlam-ai-messages {
    height: 300px;
    overflow-y: scroll;
    padding: 10px;
    background: #f9f9f9;
    box-sizing: border-box;
}

#xlam-ai-input {
    padding: 10px;
    display: flex;
    gap: 5px;
    border-top: 1px solid #eee;
}

#xlam-ai-input input {
    flex-grow: 1;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

#xlam-ai-input button {
    padding: 5px 10px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

#xlam-ai-input button:hover {
    background: #005d87;
}

.xlam-welcome-message, div[style*="margin:10px 0"] {
    word-wrap: break-word;
    max-width: 100%;
    margin: 10px 0;
    line-height: 1.5;
}

.writing-message {
    color: #888;
    margin: 10px 0;
}

#xlam-contact-error {
    margin: 5px 0 0;
}

#xlam-toggle-button {
    position: fixed;
    bottom: 20px; /* پایین فوتر */
    left: 50%; /* مرکز افقی */
    transform: translateX(-50%);
    padding: 5px;
    background: #0073aa;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
}

#xlam-toggle-button img.chatbot-icon {
    width: 30px; /* اندازه کوچک‌تر */
    height: 30px;
    margin-right: 5px;
    animation: glow 1s ease-in-out infinite alternate;
}

/* انیمیشن درخشش LED */
@keyframes glow {
    from {
        filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #fff) drop-shadow(0 0 15px #00f);
    }
    to {
        filter: drop-shadow(0 0 10px #fff) drop-shadow(0 0 15px #fff) drop-shadow(0 0 20px #00f);
    }
}

#xlam-toggle-button:hover {
    background: #005d87;
}

/* استایل اسکرول‌بار */
#xlam-ai-messages::-webkit-scrollbar {
    width: 8px;
}

#xlam-ai-messages::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

#xlam-ai-messages::-webkit-scrollbar-thumb:hover {
    background: #555;
}