/* Developer tools */
.dev-panel {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 6;
  display: flex;
  align-items: end;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid rgba(103, 179, 131, 0.38);
  background: linear-gradient(180deg, rgba(5, 20, 12, 0.96), rgba(3, 12, 8, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(198, 255, 220, 0.04),
    0 12px 28px rgba(0, 0, 0, 0.34);
  cursor: grab;
  user-select: none;
}

.dev-panel[data-qa-mode="active"]::before {
  content: "QA MODE";
  align-self: start;
  padding: 0.2rem 0.4rem;
  border: 1px solid rgba(255, 214, 120, 0.6);
  background: rgba(71, 42, 10, 0.92);
  color: #ffe2a1;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(255, 192, 86, 0.2);
}

.dev-panel.is-dragging {
  cursor: grabbing;
}

.dev-panel-label {
  display: grid;
  gap: 4px;
  margin: 0;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(182, 230, 201, 0.76);
}

.dev-panel-select,
.dev-panel-button {
  height: 34px;
  border: 1px solid rgba(111, 205, 149, 0.42);
  background: rgba(4, 16, 10, 0.96);
  color: #eafff2;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.dev-panel-select {
  min-width: 150px;
  padding: 0 8px;
}

.dev-panel-button {
  min-width: 56px;
  padding: 0 10px;
  text-transform: uppercase;
}

.dev-panel-button:hover {
  border-color: rgba(189, 248, 212, 0.82);
}
