.lugenius-chat-ai-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.lugenius-chat-ai-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0073aa;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.lugenius-chat-ai-button:hover {
    background-color: #005a87;
    transform: scale(1.1);
}

.lugenius-chat-ai-window {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    z-index: 10000;
}

.lugenius-chat-ai-header {
    background: #0073aa;
    color: white;
    padding: 15px;
    border-radius: 12px 12px 0 0;
    font-weight: 600;
    text-align: center;
}

.lugenius-chat-ai-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f9f9f9;
}

.lugenius-chat-ai-message {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 8px;
    max-width: 80%;
}

.lugenius-chat-ai-message.user {
    background: #0073aa;
    color: white;
    margin-left: auto;
    text-align: right;
}

.lugenius-chat-ai-message.bot {
    background: white;
    border: 1px solid #ddd;
}

.lugenius-chat-ai-input-area {
    padding: 15px;
    border-top: 1px solid #ddd;
    border-radius: 0 0 12px 12px;
    background: white;
}

.lugenius-chat-ai-input {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 10px 15px;
    outline: none;
    font-size: 14px;
}

.lugenius-chat-ai-input:focus {
    border-color: #0073aa;
}

.lugenius-chat-ai-send {
    margin-top: 10px;
    width: 100%;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
}

.lugenius-chat-ai-send:hover {
    background: #005a87;
}