#whatsapp-chat-button {
    position: fixed;
    bottom: 80px; /* Increased from 80px to move it significantly higher, away from reCAPTCHA */
    right: 3px;
    cursor: pointer;
    z-index: 9999; /* Increased to ensure it's on top of almost everything, including reCAPTCHA */
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease-in-out;
    background-color: #FFFFFF;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0d1a49;
    font-family: Arial, sans-serif;
    font-size: 16px;
    text-decoration: none;
    width: 150px; /* Set a fixed width. Adjust this value (e.g., 120px, 100px) to make it smaller. */
    box-sizing: border-box; /* Ensures padding is included in the width */
}

#whatsapp-chat-button img {
    width: 30px;
    height: 30px;
    display: block;
}

#whatsapp-chat-button span {
    white-space: nowrap;
}

#whatsapp-chat-button:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}