#gw-whatsapp-icon a,  #gw-whatsapp-icon button {
    text-decoration: none;
    color: white;
}
#gw-whatsapp-icon a:hover, #gw-whatsapp-icon button:hover {
    text-decoration: none;
    color: white;
}

#gw-whatsapp-icon img {
    pointer-events: none;
}


#gw-whatsapp-icon {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
}
#gw-whatsapp-icon.left { left: 20px; }
#gw-whatsapp-icon.right { right: 20px; }

#gw-icon {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border: none;
    border-radius: 50%;
    color: white;
    padding: 12px;
    font-size: 24px;
    box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#gw-chat {
    display: none;
    background: #f6fdf9;
    border-radius: 15px;
    width: 300px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    animation: fadeIn 0.3s ease;
}

.gw-chat-header {
    cursor: pointer;
    background: #25D366;
    padding: 18px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    color: white;
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: bold;
    justify-content: flex-start;
}

.verified-icon {
    font-size: 18px;
    margin-left: 5px;
}

.gw-chat-body {
    padding: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.gw-message-bubble {
    background: #E1FFC7;
    border-radius: 15px;
    padding: 10px;
    margin: 10px 0;
    max-width: 100%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.gw-buttons {
    margin-top: 1em;
}
.gw-open-chat {
    display: inline-block;
    width: fit-content;
    margin: 0.25em 0;
    padding: 12px 22px;
    background-color: #25D366;
    color: white;
    font-size: 14px;
    border-radius: 2em;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-weight: bold;
}

.gw-burbuja {
    display: inline;
}

.gw-open-chat:hover {
    background-color: #1EBE57;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}


