.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: heartBeat 1.5s infinite;
  z-index: 1000;
}

@keyframes heartBeat {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.chat-popup {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: none;
  overflow: hidden;
  z-index: 10;
}

.chat-header {
  background: #128c7e;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}

.chat-header .title {
  display: flex;
  align-items: center;
}

.chat-header .close-btn {
  cursor: pointer;
  font-size: 16px;
}

.chat-body {
  padding: 15px;
  text-align: center;
}

.chat-time {
  font-size: 12px;
  color: gray;
  margin-bottom: 5px;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: white;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
  font-weight: bold;
  gap: 5px;
}
