.wa-bichon-chatbot-container-44e4aa35 {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.wa-bichon-toggle-btn-44e4aa35 {
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.wa-bichon-toggle-btn-44e4aa35:hover {
    transform: scale(1.1);
}

.wa-bichon-chat-window-44e4aa35 {
    display: none;
    flex-direction: column;
    width: 320px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
}

.wa-bichon-chat-window-44e4aa35.active {
    display: flex;
}

.wa-bichon-chat-header-44e4aa35 {
    background-color: #075E54;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    position: relative;
}

.wa-bichon-avatar-44e4aa35 {
    font-size: 30px;
    background: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.wa-bichon-title-44e4aa35 {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.wa-bichon-title-44e4aa35 strong {
    font-size: 15px;
}

.wa-bichon-title-44e4aa35 span {
    font-size: 11px;
    opacity: 0.8;
}

.wa-lang-toggle-44e4aa35 {
    margin-right: 25px;
}

#wa-lang-btn-44e4aa35 {
    background: rgba(255,255,255,0.2);
    border: 1px solid white;
    color: white;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 11px;
    cursor: pointer;
    font-weight: bold;
}

#wa-lang-btn-44e4aa35:hover {
    background: rgba(255,255,255,0.4);
}

.wa-bichon-close-btn-44e4aa35 {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.wa-bichon-chat-body-44e4aa35 {
    padding: 20px;
    background-color: #e5ddd5;
    height: 150px;
    overflow-y: auto;
}

.wa-bichon-message-44e4aa35 {
    background: white;
    padding: 10px 15px;
    border-radius: 0 10px 10px 10px;
    font-size: 14px;
    color: #303030;
    display: inline-block;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.wa-bichon-chat-footer-44e4aa35 {
    display: flex;
    padding: 10px;
    background: #f0f0f0;
    align-items: center;
}

#wa-bichon-input-44e4aa35 {
    flex-grow: 1;
    border: none;
    padding: 10px;
    border-radius: 20px;
    outline: none;
}

.wa-bichon-send-btn-44e4aa35 {
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}