/* ============================================================
   EVOLVE OS v2.3 — DEVSUITE UI
   Debug overlay + panel styling
   Clean, minimal, ASCII‑only.
   ============================================================ */

/* Panel content styling */
.devsuite-section {
  font-size: 14px;
  line-height: 1.5;
}

.devsuite-section h2 {
  margin-top: 0;
  font-size: 18px;
  font-weight: bold;
}

.devsuite-btn {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 6px 0;
  background: #333;
  color: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.devsuite-btn:hover {
  background: #444;
}

.devsuite-output {
  margin-top: 12px;
  padding: 10px;
  background: #222;
  border-radius: 4px;
  font-size: 13px;
  color: #ccc;
}

/* Debug overlay */
.evolve-debug-overlay {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 360px;
  max-height: 70vh;
  background: rgba(0,0,0,0.85);
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
  z-index: 999999;
  display: none;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.edo-header {
  padding: 12px;
  background: #111;
  font-weight: bold;
  border-bottom: 1px solid #333;
}

.edo-stream {
  padding: 10px;
  max-height: 60vh;
  overflow-y: auto;
  font-size: 12px;
  line-height: 1.4;
}

.edo-line {
  padding: 4px 0;
  border-bottom: 1px solid #222;
  color: #ccc;
}
