.whatsapp_chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  aspect-ratio: 1/1;
  transition: all 0.3s;
}

.whatsapp_chatbot:hover {
  transform: scale(1.1);
}

.whatsapp_icon {
  color: white;
  font-size: 32px;
}

@media (min-width: 0px) and (max-width: 574px) {
  .whatsapp_chatbot {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 575px) and (max-width: 991px) {
  .whatsapp_chatbot {
    width: 43px;
    height: 43px;
  }
}