
.wacapi-chatbot-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.wacapi-chatbot-header {
    background-color: #075e54;
    color: white;
    padding: 15px;
}

.wacapi-chatbot-title {
    display: flex;
    align-items: center;
}

.wacapi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.wacapi-avatar svg {
    color: #075e54;
}

.wacapi-chatbot-title h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #efefef;
}

.wacapi-chatbot-messages {
    height: 300px;
    overflow-y: auto;
    padding: 15px;
    background-color: #e5ddd5;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAQAAABKfvVzAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QA/4ePzL8AAAAHdElNRQfiBhwSNzaV2EhTAAAA30lEQVQ4y2P8z8Dwn4GBgYGBgZGJgZGRgYmRgZGBgfE/AwMTIyMjM+P/P4wM//4x/mP6z8DAwMzEwMDIyPiP8T/Df0YGRgYmJkYGhv8M/xj/MzIyMDIy/GNg/P+PgfHff0YGBgYGBsZ////8+//nz/8/f////f3/3z/Gf//+MjAwMzIyMjD+/v3n9+9///78/fvnDwMDAwPj33/////5+//3n/9//v7/85/x/78/DAwMjP///mP49+v/3z/////7x/j3138GBgZmRkaGf3////zBwMDIwMDACLRKiJ8BAGjfVhXC3CnKAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE4LTA2LTI4VDE4OjU1OjU0KzAyOjAwcW3F/QAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxOC0wNi0yOFQxODo1NTo1NCswMjowMAAwfUEAAAAASUVORK5CYII=');
}

.wacapi-message {
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 7.5px;
    max-width: 80%;
    position: relative;
    word-wrap: break-word;
}

.wacapi-sent {
    background-color: #dcf8c6;
    margin-left: auto;
    border-top-right-radius: 0;
}

.wacapi-received {
    background-color: white;
    margin-right: auto;
    border-top-left-radius: 0;
}

.wacapi-chatbot-input {
    display: flex;
    padding: 10px;
    background-color: #f0f0f0;
    border-top: 1px solid #e6e6e6;
}

.wacapi-chatbot-input input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 20px;
    margin-right: 10px;
    outline: none;
}

.wacapi-send-button {
    background-color: #128c7e;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.wacapi-send-button:hover {
    background-color: #075e54;
}

.wacapi-response-container {
    padding: 15px;
    border-top: 1px solid #e6e6e6;
    background-color: #f9f9f9;
}

.wacapi-response-container h4 {
    margin-top: 0;
    color: #075e54;
}

.wacapi-response {
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
    overflow-x: auto;
    font-family: monospace;
    font-size: 13px;
    margin: 0;
}

@media (max-width: 500px) {
    .wacapi-chatbot-container {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}
