/* Button used to open the chat form - fixed at the bottom of the page */
.open-button, .close-button {
  font-weight: 500;
  padding: 6px 10px;
  border: none;
  cursor: pointer;
  opacity: 0.9;
  position: fixed;
  bottom: 0;
  right: 80px;
  width: 200px;
  z-index: 9999;
}

.open-button {
  background-color: #fff;
  border-top: 3px solid #f1f1f1;
  border-left: 3px solid #f1f1f1;
  border-right: 3px solid #f1f1f1;
  color: #000;
  font-size: 16px;
}

/* Add a red background color to the cancel button */
.close-button {
  background-color: red;
  color: white;
  bottom: 0;
  right: 20px;
  width: 400px;
  font-size: 15px;
}

/* Add some hover effects to buttons */
.open-button:hover, .close-button:hover {
  opacity: 1;
}

/* The popup chat - hidden by default */
.chat-popup {
  display: none;
  position: fixed;
  width: 400px;
  bottom: 0;
  right: 20px;
  border: 3px solid #f1f1f1;
  z-index: 9999;
}