/* Text Counter specific styles */

.tool-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.input-section {
  flex: 1;
}

.input-section .textarea {
  min-height: 250px;
}

/* Clear button */
.textarea-header {
  display: flex;
  justify-content: flex-end;
  padding: 8px 12px;
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.clear-btn {
  padding: 6px 12px;
  border: none;
  background: transparent;
  color: var(--color-text-secondary);
  font-size: 0.8125rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all var(--transition);
}

.clear-btn:hover {
  background-color: var(--color-surface);
  color: var(--color-text);
}
