/**
 * استایل‌های عمومی چت‌بات
 * AI Educational Chatbot Plugin
 */

/* دکمه شناور چت‌بات */
.ai-chatbot-float-button {
 position: fixed;
 bottom: 20px;
 left: 20px;
 width: 60px;
 height: 60px;
 background: linear-gradient(135deg, #0073aa 0%, #005a87 100%);
 border-radius: 50%;
 box-shadow: 0 4px 12px rgba(0, 115, 170, 0.3);
 cursor: pointer;
 z-index: 1000;
 display: flex;
 align-items: center;
 justify-content: center;
 color: white;
 font-size: 24px;
 transition: all 0.3s ease;
}

.ai-chatbot-float-button:hover {
 transform: scale(1.1);
 box-shadow: 0 6px 20px rgba(0, 115, 170, 0.4);
}

/* پنجره چت‌بات */
.ai-chatbot-window {
 position: fixed;
 bottom: 90px;
 left: 20px;
 width: 350px;
 height: 500px;
 background: white;
 border-radius: 12px;
 box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
 z-index: 1001;
 display: none;
}

@media (max-width: 768px) {
 .ai-chatbot-window {
 width: calc(100vw - 40px);
 height: 400px;
 }
}