body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}
/* Basic reset */

@keyframes blinkZoom {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}
/* Open Chat Button */
.open-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000;
}


/* Open Chat Button */
.open-btn img {
  width: 180px;
  height: 180px;
  animation: blinkZoom 1.5s infinite ease-in-out;
}

/* Chat Popup Styling */
.chat-popup {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 350px;
  height: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  background: #fff;
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1001;
  transition: all 0.3s ease;
}

/* Show class to toggle visibility */
.chat-popup.show {
  display: flex;
}

/* Close Button - overlay on top-right of iframe header */
.close-btn {
  position: absolute;
  top: 8px;          /* Adjust as needed */
  right: 12px;       /* Adjust as needed */
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.close-btn img {
  width: 24px;
  height: 24px;
}


/* Iframe Styling */
.chat-popup iframe {
  width: 100%;
  height: 100%;
  border: none;
}
