.wp-chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.wp-chatbot-bubble {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.wp-chatbot-box {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    height: 400px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    flex-direction: column;
    overflow: hidden;
}

.wp-chatbot-header {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #0073aa;
    color: #fff;
}

.wp-chatbot-header i {
    font-size: 24px;
    margin-right: 10px;
}

.wp-chatbot-header h3 {
    margin: 0;
    flex-grow: 1;
}

.wp-chatbot-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.wp-chatbot-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.chatbot-message {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.chatbot-message i {
    font-size: 16px;
    margin-right: 8px;
    margin-top: 4px;
    flex-shrink: 0;
}

.user-message {
    flex-direction: row-reverse;
}

.user-message i {
    margin-right: 0;
    margin-left: 8px;
}

.chatbot-message span {
    padding: 8px 12px;
    border-radius: 18px;
    max-width: 80%;
    word-wrap: break-word;
}

.user-message span {
    background-color: #dcf8c6;
}

.bot-message span {
    background-color: #e5e5ea;
}

.wp-chatbot-form {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
}

.wp-chatbot-input {
    flex-grow: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 20px;
    margin-right: 10px;
}

.wp-chatbot-submit {
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-chatbot-submit i {
    font-size: 18px;
}

.chatbot-links {
    margin-top: 10px;
}

.chatbot-links a {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 5px;
    padding: 5px 10px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
}

.chatbot-links a:hover {
    background-color: #005177;
}

.wp-chatbot-open .wp-chatbot-box {
    display: flex;
}

.wp-chatbot-open .wp-chatbot-bubble {
    display: none;
}