/* ===== Editor Panel ===== */
#editor-panel {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 260px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

#editor-panel h2 {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 8px;
}

.inventory-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.inventory-item input {
  width: 48px;
  background: var(--bg);
  color: var(--accent-glow);
  font-weight: bold;
  border: 1px solid var(--grid-line);
  padding: 4px;
  border-radius: 4px;
  text-align: center;
}
