.wordcount-score-chart-container {
  background: #fff;
  /* border: 2px solid #e5e5e5; */
  border-radius: 10px;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.03); */
  padding: 32px 24px 24px 24px;
  margin: 32px auto 40px auto;
  max-width: 600px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wordcount-score-chart-title {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #222;
  text-align: left;
  width: 100%;
}
#wordcountScoreChart {
  width: 100% !important;
  max-width: 540px;
  height: 350px !important;
  background: transparent !important;
  border-radius: 8px;
}
@media (max-width: 700px) {
  .wordcount-score-chart-container {
    padding: 16px 4px;
    max-width: 100%;
  }
  .wordcount-score-chart-title {
    font-size: 1.2rem;
  }
  #wordcountScoreChart {
    max-width: 100%;
    height: 220px !important;
  }
} 