body {
  background: #111;
  color: #E5E1E1;
  font-family: 'IBM Plex Mono', monospace;
  margin: 0;
  padding: 40px;
}

main {
  max-width: 800px;
  margin: 0 auto;
}

.titlebar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 48px;
  height: 48px;
  filter: grayscale(100%) brightness(130%);
}

h1 {
  font-size: 1.9em;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.03em;
}

.subtitle {
  margin-top: 6px;
  color: #aaa;
  font-size: 0.9em;
  letter-spacing: 0.02em;
}

#query {
  margin-top: 24px;
}

#queryInput {
  width: 100%;
  height: 80px;
  background: #1b1b1b;
  color: #E5E1E1;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 10px;
  font-family: inherit;
  font-size: 0.9em;
}

.buttons {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}

button {
  background: #E5E1E1;
  color: #000;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}

button:hover {
  background: #fff;
  transform: translateY(-1px);
}

#log {
  margin-top: 30px;
}

#output {
  background: #000;
  color: #E5E1E1;
  padding: 15px;
  border-radius: 6px;
  font-size: 0.85em;
  overflow-y: auto;
  max-height: 350px;
  white-space: pre-wrap;
  border: 1px solid #333;
}
