#wanfw-chat-widget-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    line-height: 1; /* Ensure line height doesn't add extra space */
}

#wanfw-chat-widget-button svg {
    width: 20px; /* You can adjust this, e.g., to 24px */
    height: 20px; /* You can adjust this, e.g., to 24px */
    margin-right: 8px;
    fill: white;
    display: inline-block; /* Or 'block' if it helps alignment */
    vertical-align: middle; /* Good for inline-block with text */
    flex-shrink: 0; /* Prevent SVG from shrinking */
}