
/* === Font Setup === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;800&display=swap');

/* === Total Responses === */
.ttp-total-responses-wrapper {
  font-family: 'Poppins', sans-serif;
  margin: 1em 0;
}
.ttp-total-responses {
  font-size: 32px;
  font-weight: 800;
  color: #121212;
}

/* === Progress Bar === */
.ttp-progress-wrapper {
  font-family: 'Poppins', sans-serif;
  margin: 1em 0;
}
.ttp-progress-label {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0.5em;
  color: #121212;
}
.ttp-progress-bar {
  width: 100%;
  background: #eee;
  border-radius: 8px;
  height: 24px;
  overflow: hidden;
}
.ttp-progress-fill {
  height: 100%;
  background-color: #e63946;
  width: 0;
  transition: width 0.6s ease;
}
