/*
 * Styles for My WhatsApp Chat Button
 */
.whatsapp-chat-button {
    position: fixed; /* Keep it on screen */
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%; /* Make it circular */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Make sure it's on top of other content */
    transition: transform 0.3s ease;
}

.whatsapp-chat-button:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
    background-color: #128C7E;
}

/* SVG icon styles */
.whatsapp-chat-button svg {
    width: 32px;
    height: 32px;
    color: #FFFFFF; /* White icon */
}