/* AI Widget Styling */
#ai-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1a2a6c;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 2000;
}

#chat-window {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    height: 400px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    z-index: 2000;
}

.hidden { display: none !important; }

.chat-header {
    background: #1a2a6c;
    color: white;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
}

#chat-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    font-size: 0.9rem;
}

.bot-msg { background: #f1f1f1; padding: 8px; border-radius: 5px; margin-bottom: 10px; }
.user-msg { background: #007bff; color: white; padding: 8px; border-radius: 5px; margin-bottom: 10px; text-align: right; }

.chat-footer { display: flex; padding: 10px; border-top: 1px solid #eee; }
.chat-footer input { flex: 1; border: 1px solid #ddd; padding: 8px; border-radius: 5px; }
