/* Style for the chat button container */
.chat-button-container {
    position: fixed;
    bottom: 170px; /* Adjust this value to make the first button higher */
    right: 45px;
    z-index: 9999;
}

/* Style for the clickable WhatsApp banner */
.whatsapp-banner {
    display: flex;
    align-items: center;
    background-color: #25D366; 
    color: white;
    border-radius: 25px;
    text-decoration: none;
    margin-bottom: 10px;
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

    .whatsapp-banner:hover {
        transform: scale(1.05); /* Slight scale effect on hover */
    }

/* Style for the WhatsApp icon */
.chat-button {
    background-color: white; /* White background for the icon */
    color: #25D366; /* WhatsApp green color for the icon */
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-right: 10px; /* Space between icon and label */
}

/* Style for the label */
.whatsapp-banner-label {
    font-size: 16px;
    font-weight: bold;
}

/* Second WhatsApp banner */
.second-banner {
    margin-top: 10px; /* Adjust space between the two banners */
}
