
.ai-chat-container {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 800px;
    max-width: 100vw;
    height: 100%;
    background: white;
    padding: 20px;
    box-shadow: -2px 0 12px rgba(0,0,0,0.08);
    z-index: 9999;
}

.ai-chat-container[show="true"] {
    display: flex;
}

.ai-chat-messages {
    font-size: 15px;
    line-height: 1.5;
}

.ai-chat-input:focus {
    outline: 2px solid #0d6efd;
}

.ai-chat-send, .ai-chat-clean {
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.ai-chat-send:hover, .ai-chat-clean:hover {
    background: #0b5ed7;
}

.ai-chat-close {
    color: #888;
    transition: color 0.2s;
}

.ai-chat-close:hover {
    color: #d00;
}
