#text-tool {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-family: "Segoe UI", sans-serif;
}

#text-tool h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: #333;
}

.stat-boxes {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap; /* Prevent wrapping */
  gap: 1rem;
  margin-bottom: 1.5rem;
  overflow-x: auto; /* Optional: scroll if screen is too narrow */
}

.stat-box {
  flex: 1 1 0;
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  border: 1px solid #FF8A08;
  min-width: 180px; /* Ensures consistent size */
}

.stat-label {
  font-size: 0.65rem;
  color: #777;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #222;
}

#textInput {
  width: 100%;
  height: 300px;
  padding: 1rem;
  border: 1px solid #FF8A08;
  border-radius: 8px;
  font-size: 1rem;
  resize: vertical;
  font-family: monospace;
}
