.dev-test-panel {
  position: fixed;
  z-index: 100;
  top: 18px;
  right: 18px;
  display: none;
  width: 220px;
  padding: 14px;
  border: 1px solid rgba(83, 108, 90, 0.28);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 12px 34px rgba(62, 69, 63, 0.18);
  color: #3e453f;
  font-family: "Noto Serif SC", serif;
}

html:has(.dev-test-panel) .dev-test-panel {
  display: block;
}

.dev-test-panel strong,
.dev-test-note,
.dev-test-status {
  display: block;
}

.dev-test-panel strong {
  margin-bottom: 4px;
  font-size: 14px;
}

.dev-test-note,
.dev-test-status {
  color: #817b71;
  font-size: 10px;
  line-height: 1.5;
}

.dev-test-actions {
  display: grid;
  gap: 6px;
  margin: 11px 0 9px;
}

.dev-test-actions button {
  min-height: 31px;
  border: 1px solid #ded6ca;
  border-radius: 8px;
  background: #fffdf8;
  color: #655f56;
  font: 11px "Noto Serif SC", serif;
  cursor: pointer;
}

.dev-test-actions button.active {
  border-color: #7d9984;
  background: #edf3ee;
  color: #536c5a;
}

.dev-test-actions .dev-test-clear {
  color: #9a6c64;
}

@media (max-width: 760px) {
  .dev-test-panel {
    top: auto;
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    padding: 10px;
  }

  .dev-test-actions {
    grid-template-columns: repeat(4, 1fr);
    margin: 8px 0 5px;
  }

  .dev-test-actions button {
    padding: 4px;
    font-size: 9px;
  }
}
