.chat-button {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 3rem;
  height: 3rem;
  /* background: linear-gradient(135deg, #4e54c8, #8f94fb); */
  background-color: #d460a9;
  color: white;
  border-radius: 50%;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.chat-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.chat-button i {
  font-size: 28px;
}

.chat-button-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.chat-button-icon svg {
  pointer-events: none;
}

.chat-container {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 60%;
  height: 80%;
  max-width: 600px;
  max-height: 600px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

@media only screen and (max-width: 799px) {
  .chat-container {
    top: 10px;
    left: 10px;
    width: unset;
    height: unset;
    max-width: unset;
    max-height: unset;
  }
}

.chat-header {
  /* background: linear-gradient(135deg, #4e54c8, #8f94fb); */
  /* background-color: #d460a9; */
  color: white;
  padding: 15px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50px;
  height: 60px;
  position: absolute;
  left: 0px;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.2s;
}

.close-btn:hover {
  transform: scale(1.2);
}

.chat-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 480px) {
  .chat-button {
    right: 10px;
    bottom: 10px;
  }
}
