#textInput {
  width: 100%;
  height: 220px;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  resize: vertical;
  margin-bottom: 24px;
  font-family: inherit;
}

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

.stat-box {
  background: white;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: 22px;
  font-weight: 700;
  color: #185fa5;
}

.stat-label {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}

.keyword-section h2 {
  font-size: 16px;
  margin-bottom: 12px;
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.keyword-chip {
  background: white;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  color: #333;
}

.keyword-chip span {
  color: #185fa5;
  font-weight: 600;
  margin-left: 4px;
}

.empty-note {
  color: #999;
  font-size: 13px;
}