#ai-chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    font-family: Arial, sans-serif;
}

.ai-chatbot-toggle {
    width: 60px;
    height: 60px;
    background: #003bc0;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
}

.ai-chatbot-window {
    width: 350px;
    height: 500px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: none;
    box-shadow: 0 0 20px rgba(0,0,0,.2);
    margin-bottom: 10px;
}

.ai-chatbot-header {
    background: #003bc0;
    color: #fff;
    padding: 15px;
    font-weight: bold;
}

.ai-chatbot-messages {
    height: 370px;
    overflow-y: auto;
    padding: 15px;
    background: #fafafa;
}

.user-message {
    background: #003bc0;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    text-align: right;
}

.bot-message {
    background: #f1f1f1;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.ai-chatbot-input-area {
    display: flex;
    border-top: 1px solid #ddd;
}

#ai-chatbot-input {
    flex: 1;
    border: none;
    padding: 15px;
    outline: none;
}

#ai-chatbot-send {
    border: none;
    background: #003bc0;
    color: #fff;
    padding: 15px;
    cursor: pointer;
}