.chat-container {
display: block;
width: 360px;
position: fixed;
bottom: 20px; /* Adjust the position from the bottom as needed */
right: 20px; /* Adjust the position from the right as needed */
background-color: rgba(255, 255, 255, 0.9); /* Adjust the background color and opacity as needed */
border-radius: 10px;
box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.1);
z-index: 9999; /* Ensure the chat box is on top of other content */
}

.chat-container a.start-chat-button {
display: block;
background-color: #14c656; /* Adjust the button color as needed */
color: #fff;
border: none;
border-radius: 24px;
font-weight: bold;
font-size: 16px;
padding: 10px;
text-align: center;
text-decoration: none;
cursor: pointer;
margin:10px 25px;
}

.chat-container a.start-chat-button:hover {
background-color: #0e9e49; /* Adjust the button hover color as needed */
}
/* Add styles for the close icon (X) */
.chat-header .close-icon {
position: absolute;
top: 10px;
right: 10px;
cursor: pointer;
font-weight: bold;
font-size: 18px;
color: #899499; /* Adjust the color as needed */
}
/* Style the chat container content as you wish */
.chat-container .chat-header {
display: flex;
align-items: center;
border-radius: 10px;
padding: 15px 30px;
background: rgb(9, 94, 84);

}

.chat-container .avatar {
max-width: 15%;

}

.chat-container .avatar img {
max-width: 100%;
border-radius: 100px;
}

.chat-container .header-info {
	text-align: left;
	margin-left: 10px;
	font-size: 15px;
	color:#fff;
}


.chat-container .name {
font-weight: bold;
}

.chat-container .chat-messages {
padding: 20px 35px;

}

.chat-container .message {
	text-align: left;
	opacity: 1;
	padding: 10px 15px;
	background: #FFF;
}

.chat-container .author {
font-weight: bold;
}

.whatsapp-Icon {
	position: fixed;
	bottom: 20px;
	right: 0px;
	width: 50px; 
	height: 35px;
	cursor: pointer;
	z-index: 1000; 
	display:inline-flex;
  }
  
  .whatsapp-Icon img {
	width: 75%;
	height: 100%;
	display: block;
  }