body {
  background-color: #e9f5ff;
  font-family: "Poppins", sans-serif;
  text-align: center;
  margin: 0;
  padding: 40px 10px 110px;
  color: #333;
}

/* === Feedback Card === */
.feedback-page-container {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  max-width: 520px;
  margin: 0 auto;
  padding: 25px 20px;
}

h1 {
  color: #007bff;
  font-size: 24px;
  margin-bottom: 10px;
}

.subtitle {
  color: #555;
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* 👍👎 Buttons */
.buttons-container {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}

.feedback-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  border: 2px solid #d0d7de;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  min-width: 85px;
  font-weight: 600;
}

.feedback-btn:hover { transform: scale(1.05); }

.feedback-btn.selected-like {
  background: #4caf50;
  color: white;
  border-color: #4caf50;
}

.feedback-btn.selected-dislike {
  background: #f44336;
  color: white;
  border-color: #f44336;
}

.emoji { font-size: 26px; margin-bottom: 2px; }
.count {
  display: block;
  color: #222;
  font-size: 14px;
  font-weight: 600;
  margin-top: 2px;
}

.feedback-btn.selected-like .count,
.feedback-btn.selected-dislike .count {
  color: #fff;
}

.label { font-size: 14px; }

.thank-you {
  color: #4caf50;
  font-weight: 600;
  font-size: 15px;
  margin: 5px 0 10px;
}

/* === Form === */
textarea {
  width: 90%;
  min-height: 90px;
  border: 2px solid #d0d7de;
  border-radius: 10px;
  padding: 8px;
  font-family: inherit;
  font-size: 16px;
  resize: vertical;
  margin-bottom: 15px;
  outline: none;
}

textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59,130,246,0.2);
}

.submit-btn {
  background: #007bff;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 8px 20px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
}

.submit-btn:hover { background: #0069d9; transform: scale(1.03); }

.email-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 10px;
  text-align: left;
}

.email-row label {
  font-weight: 600;
  color: #333;
  margin-right: 8px;
  min-width: 130px;
  text-align: right;
}

.email-row input {
  flex: 1;
  max-width: 220px;
  border: 2px solid #d0d7de;
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 14px;
}

.about-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  max-width: 520px;
  margin: 40px auto 0;
  padding: 25px 20px;
}

.about-section h2 { color: #2c3e50; }
.about-photo {
  max-width: 240px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  margin-bottom: 15px;
}

.footer-timer-label { font-weight: 600; transition: color 0.2s ease; }

@media (max-width: 480px) {
  .buttons-container { flex-direction: column; gap: 10px; }
  .feedback-btn { width: 100%; }
  .email-row { flex-direction: column; align-items: flex-start; }
  .email-row label { text-align: left; margin-bottom: 5px; }
  .email-row input { max-width: 100%; }
}
