/* chat.css */

/* Tombol Chat Fixed */
.chat-button {
  position: fixed;
  bottom: 20px;
  right: 20px; /* pindahkan ke kanan bawah */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #0d83fd; /* warna accent website */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  animation: pulse 3s infinite;
}

/* Hover effect */
.chat-button:hover {
  background-color: #0b6dd4;
  transform: scale(1.05);
}

/* Animasi Pulse Ringan */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Untuk icon di dalam tombol (pakai Bootstrap Icons / FontAwesome) */
.chat-button i {
  pointer-events: none;
}
