.feedback-popup {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  margin-left: 8px; /* Same as .feedback-row left offset */
  margin-right: 8px; /* Same as .feedback-row left offset */
  margin-top: 8px;
  background: #FFFFFF;
  
  width: 304;
  height: 317;
  angle: 0 deg;
  opacity: 1;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  border-width: 1px;
  border: 1px solid #ddd;
  
}
.feedback-popup p {
  margin: 0;
}

.fb-title {
  color: #15131B;
  padding-top: 4px;
  padding-bottom: 4px;
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: -4%;
}
.fb-section-head{
  font-family: Inter;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: -4%;
  color: #656972;
}

.feedback-input {
  /* Input area for user messages - Holds input box and button */
  background: #F2F2F2;
  bottom: 20px;        /* ⬅️ distance up from the bottom */
  display: flex;
  width: 100%;
  min-height: 86px;
  padding: 8 8 16px 8;
  border-radius: 12px;
  border: 0px;
  gap: 8px;
  align-items: center;
  outline: none;
  flex-shrink: 0; /* Prevent the input row from shrinking */
}

.feedback-input-question,
.feedback-input-answer {
  display: block;
  width: 100%;
  padding: 10px 12px;               /* top/bottom and left/right */
  margin-bottom: 12px;

  background: #F2F2F2;
  border: none;
  border-radius: 8px;
  box-sizing: border-box;

  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #333;

  outline: none;
  appearance: none;
  resize: none; 
}
/* 🔹 Set different heights */
.feedback-input-question {
  height: 56px;  /* Shorter input */
}

.feedback-input-answer {
  height: 75px;  /* Taller textarea */
}


.feedback-input-question::placeholder, .feedback-input-answer::placeholder {
  color: #999;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.feedback-submit {
  width: 130px;              /* fixed width */
  height: 29px;              /* fixed height */
  padding: 4px 12px;         /* top/bottom 4px, left/right 12px */
  border-radius: 20px;       /* rounded corners */
  opacity: 1;
  gap: 10px;                 /* gap between children if any */
  angle: 0deg;               /* this property isn't valid CSS — you can omit */
  
  /* Align to right */
  display: block;            /* or inline-block */
  margin-left: auto;         /* pushes button to the right */
  
  /* Add other button styling */
  cursor: pointer;
  background-color: #CCCCCC; /* example button bg color */
  color: white;
  border: none;
  
  user-select: none;
  transition: background-color 0.3s ease;

  font-family: Inter;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: -3%;

}

.feedback-submit:hover {
  background-color: #2c72ec; /* darker on hover */
}

.feedback-submit.active {
  background-color: #2c72ec; /* Green when active */
  color: white;
}







.feedback-success-message {
  width: 85%;
  height: 45px;
  position: fixed;
  bottom: 110px; /* ⬅️ More space from input row */
  left: 16px;
  right: 16px;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  background-color: #000000;
  color: #FFFFFF;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin: 16px auto;
}








.popup-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 18px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  z-index: 10;
}
.popup-close:hover {
  color: #333;
}
.feedback-popup {
  position: relative; /* Required to position the close button */
  background: white;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 300px;
}



.checkbox-container {
  display: flex;
  align-items: center;
  gap: 8px;

  color: #999;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;

}

.checkbox-container input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.4); /* Adjust this value to make it bigger or smaller */
  cursor: pointer;
}