.survey-container {
  max-width: 600px;
  margin: 2em auto;
  padding: 2em;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
}

.survey-container h3 {
  margin-bottom: 0.5em;
  font-size: 1.1em;
  color: #333;
}

.survey-question {
  margin-bottom: 1.5em;
}

.survey-question label {
  display: block;
  margin: 0px 0px -5px !important;
  font-weight: normal;
  cursor: pointer;
}

.survey-question textarea {
  width: 100%;
  padding: 0.6em;
  font-size: 1em;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.survey-submit {
  background: #e91e63;
  color: white;
  padding: 0.8em 1.5em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 1em;
  font-size: 1rem;
}

.survey-submit:hover {
  background: #d81b60;
}

.survey-submit-wrapper {
  text-align: center;
  margin-top: 2em;
}

.survey-result {
  margin-top: 20px;
  font-weight: bold;
  font-size: 1.1em;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
}

.survey-success {
  display: block;
  background-color: #7a9c59 !important; /* green background */
  color: #fff; /* white text */
  padding: 20px;
  border-radius: 6px;
  font-size: 18px;
  margin: 20px auto;
  max-width: fit-content;
  width: fit-content;
  text-align: center;
}

.error {
  display: block;
  background-color: #fff;
  color: red;
  font-weight: bold;
  border: 2px solid red;
  text-align: center;
  max-width: fit-content;
  margin: 20px auto;
}

.survey-hidden {
  display: none;
}
