/* Popup container */
.popup {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

/* Close button */
.close {
  color: #aaa;
  float: right;
  font-size: 20px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Form style */
form {
  display: flex;
  flex-direction: column;
}

form label {
  margin-bottom: 5px;
}

form input[type="text"],
form input[type="email"],
form textarea {
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

form textarea {
  height: 100px;
}

form input[type="submit"] {
  background-color: #CABFFA;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}

form input[type="submit"]:hover {
  background-color: #6C55D1
}

/* Positioning for the message button */
#messageButton {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  border-radius: 20%;
  background-color: #CABFFA;
  color: white;
  font-size: 24px;
  border: none;
  cursor: pointer;
}

#messageButton:hover {
  background-color: #6C55D1;
}

.container {
  width: 100%;
  max-width: 400px;
}

.container {
  width: 100%;
  max-width: 400px;
}

.message-box {
  background: linear-gradient(to bottom right, #a160f7, #7b68ee);
  padding: 30px;
  border-radius: 10px;
   margin-top: 10px;
  margin: auto;
  width: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.5s ease forwards;
}

.message {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

