﻿/* WhatsApp chat button styles */
.whatsapp-button {
    position: fixed;
    bottom: 20px; /* Adjust the distance from the bottom as needed */
    left: 20px; /* Adjust the distance from the left as needed */
    /*background-color: #25d366;*/ /* WhatsApp green color */
    padding: 10px;
    border-radius: 50%; /* To make it round */
    /*    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);*/
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1250; /* Ensure it appears above other content */
}

    /* Style for WhatsApp icon (adjust width and height as needed) */
    .whatsapp-button img {
        /*width: 40px;
            height: 40px;*/
    }

.center-div {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
