
#floating-message-btn {
  position: fixed;
  border-radius: 50px;
  padding: 12px 20px;
  z-index: 9999;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

#message-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
}

#message-modal-content {
  background: #fff;
  max-width: 400px;
  margin: 5% auto;
  padding: 30px 20px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

#message-modal-content h2 {
  margin-top: 0;
  text-align: center;
  font-size: 20px;
}

#message-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #888;
}

#message-form input,
#message-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  box-sizing: border-box;
}

#fmf-submit-btn {
  display: block;
  margin: 20px auto 0 auto;
  padding: 10px 24px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
}
