#debugPopup {
  position: fixed;
  top: 10px;
  left: 10px;
  width: 320px;
  max-height: 90vh;
  overflow-y: auto;
  background: #2b2b2b;
  color: #eee;
  border: 1px solid #555;
  font-family: "Source Code Pro", monospace;
  font-size: 12px;
  z-index: 999999;
  padding: 8px;
}

#debugHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-weight: bold;
}

#debugClose {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

#debugContent div {
  margin-bottom: 4px;
}

#debugPopup hr {
  border: none;
  border-top: 1px solid #444;
  margin: 6px 0;
}

.good { color: #4caf50; }
.warn { color: #ff9800; }
.bad { color: #f44336; }