@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500&display=swap');

#mySurveyContainer {
  background-color:#f2edff;
}

.survey-slide {
  padding: 1rem;
  border-radius:0;
  
  transition: all 0.5s ease;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  font-family: 'Work Sans', sans-serif;
}

.survey-question-text {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
}

.survey-choices {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.survey-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: 2px solid transparent;
  border-radius: 50%;
  transition: transform 0.2s ease;
}
.survey-btn:focus,
.survey-btn:hover {
  transform: scale(1.1);
  outline: none;
}
.survey-btn img {
  width: 56px;
  height: 56px;
}

.survey-textarea {
  width: 100%;
  max-width:500px;
  padding: 0.8rem;
  font-size: 16px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-family: 'Work Sans', sans-serif;
  resize: vertical;
}

.survey-submit-btn {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  border: 2px solid transparent;
  border-radius: 30px;
  background-color: #4C1D94;
  color: white;
  display: inline-block;
  min-width: 160px;
  min-height: 44px;
  padding: 9px 30px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out, transform 0.25s ease-out;
  margin-top: 1rem;
}
.survey-submit-btn:hover {
  background-color: #3a1575;
  transform: scale(1.03);
}

.slide-in-right {
  animation: slideIn 0.4s forwards;
}
.slide-out-left {
  animation: slideOut 0.4s forwards;
}
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(-100%); opacity: 0; }
}

.thank-you p {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: #4C1D94;
}