
.config {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background: var(--app-bg);
  color: var(--app-fg-config);
  padding: 15px;
  overflow-y: auto;
}

h3 {
  margin: 0 0 16px 0;
  background: var(--app-bg);
  font-family: monospace;
}

.config-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-gap: 12px 16px;
  grid-auto-rows: auto;
}

.config-group {
  display: grid;
  grid-gap: 8px;
  grid-auto-rows: auto;
  margin: 8px 0 0;
}

.config-group-title {
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--app-bg);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
