#text-analyzer {
  max-width: 750px;
  margin: 20px auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial;
}

#wc-text {
  width: 100%;
  min-height: 180px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 15px;
  line-height: 1.6;
}

.wc-stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.wc-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}

.wc-label {
  font-size: 12px;
  color: #777;
}

.wc-value {
  font-size: 20px;
  font-weight: 600;
}


/* keyword density */

#keyword-analyzer {
  max-width: 750px;
  margin: 20px auto;

}

#kw-text {
  width: 100%;
  min-height: 180px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 15px;
  line-height: 1.6;
}

.kw-results {
  margin-top: 18px;
}

.kw-results h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.kw-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 10px;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 6px;
  background: #fafafa;
}

.kw-word {
  font-weight: 600;
}

.kw-meta {
  color: #666;
  font-size: 13px;
}