.sql-formatter-tool h2 {
  margin-top: 0;   /* remove the top margin */
}

.sql-formatter-tool {
  margin: 1.5rem 0;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--background-color);
}

.sql-formatter-tool textarea {
  width: 100%;
  height: 150px;
  font-family: monospace;
  margin-bottom: 1rem;
}

.sql-formatter-tool .controls {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.sql-formatter-tool pre {
  background: var(--code-bg);
  padding: 1rem;
  border-radius: 6px;
  overflow-x: auto;
}