/* ============================================================
   EVOLVE Sentinel — System Intelligence Panel
   Neon Glass Theme
   ============================================================ */

.evolve-sentinel {
  padding: 16px;
  color: #e0e0ff;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
}

/* ------------------ Tabs ------------------ */

.evolve-sentinel-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.evolve-sentinel-tab {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(120, 120, 255, 0.15);
  color: #cfd3ff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
}

.evolve-sentinel-tab:hover {
  background: rgba(120, 80, 255, 0.25);
}

.evolve-sentinel-tab.is-active {
  background: rgba(120, 80, 255, 0.45);
  border-color: rgba(160, 140, 255, 0.5);
  color: #ffffff;
}

/* Warning dot on tab */
.evolve-sentinel-tab.has-warning {
  position: relative;
}

.evolve-sentinel-tab.has-warning::after {
  content: "•";
  color: #facc15;
  position: absolute;
  top: -2px;
  right: -4px;
  font-size: 14px;
}

/* ------------------ Structure Controls ------------------ */

.evolve-sentinel-structure-controls {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.evolve-sentinel-structure-toggle {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(120, 120, 255, 0.15);
  color: #cfd3ff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  cursor: pointer;
}

.evolve-sentinel-structure-toggle.is-active {
  background: rgba(120, 80, 255, 0.45);
  border-color: rgba(160, 140, 255, 0.5);
  color: #ffffff;
}

/* ------------------ Structure Sections ------------------ */

.evolve-sentinel-structure-section {
  background: rgba(40, 40, 70, 0.45);
  border: 1px solid rgba(120, 120, 255, 0.25);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
}

.evolve-sentinel-structure-section h4 {
  margin: 0 0 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9bb0ff;
}

/* ------------------ Warning List ------------------ */

.evolve-sentinel-structure-warnings {
  margin: 6px 0 0;
  padding-left: 18px;
  font-size: 12px;
}

.badge-warn {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(250, 204, 21, 0.18);
  color: #facc15;
  margin-right: 6px;
}

/* ------------------ JSON View ------------------ */

.evolve-sentinel-structure-json {
  background: rgba(20, 20, 40, 0.55);
  border: 1px solid rgba(120, 120, 255, 0.2);
  border-radius: 6px;
  padding: 12px;
  font-family: Consolas, monospace;
  font-size: 12px;
  color: #c8d0ff;
  white-space: pre-wrap;
}
