.whatsapp-chat-wrapper {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

.whatsapp-btn {
  background-color: #25D366;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  cursor: pointer;
}

.chat-box {
  width: 280px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  animation: slideUp 0.3s ease-out;
  margin-top: 10px;
}

@keyframes slideUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.chat-body p {
  margin-bottom: 1rem;
}


.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
}
