body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.feedback-btn-large {
  margin-top: 25px;
  background: #0787;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 18px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  align-items: center;
  justify-content: center;
}

.feedback-btn {
  bottom: 90px;
  right: 10px;
  position: fixed;
  background: #0787;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 18px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.feedback-btn-large.feedback-btn-small:hover {
  background: #023;
}

/* .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
} */

.modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  width: 90%;

  max-width: 400px;
  position: relative;
}

.modal-content h2 {
  text-shadow: #023 1px 1px 8px;
}



.close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 32px;
  cursor: pointer;
  border: 1px solid black;
  border-radius: 15%;
  padding: 0 10px;
  line-height: 1.2;
  cursor: pointer;
  background-color: #056;
  color: white;
}

form input,
form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #0055663a;
}

form button {
  width: 100%;
  background: #056;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px;
  cursor: pointer;
}

form button:hover {
  background: #023;
}

.status {
  margin-top: 8px;
  font-size: 14px;
}