/* ============================================================
   EVOLVE OS v2.3 — PANEL UI
   Clean, minimal, ASCII‑only, Cloudflare‑safe.
   ============================================================ */

.evolve-orb-trigger {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #111;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 99999;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.evolve-orb-trigger:hover {
  opacity: 1;
}

.evolve-panel {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 360px;
  max-height: 70vh;
  background: #1a1a1a;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  overflow: hidden;
  display: none;
  flex-direction: column;
  z-index: 99998;
}

.evolve-panel.is-visible {
  display: flex;
}

.evolve-panel-header {
  padding: 14px 16px;
  background: #222;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #333;
}

.evolve-panel-tabs {
  display: flex;
  background: #181818;
  border-bottom: 1px solid #333;
}

.evolve-panel-tab {
  flex: 1;
  padding: 10px;
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.evolve-panel-tab:hover {
  background: #222;
  color: #fff;
}

.evolve-panel-tab.is-active {
  background: #333;
  color: #fff;
}

.evolve-panel-content {
  padding: 16px;
  overflow-y: auto;
  flex: 1;
}

.evolve-module-container {
  font-size: 14px;
  line-height: 1.5;
}
/* Admin Orb — Updated Logo */
#evolve-orb {
  width: 56px;
  height: 56px;
  background: var(--evolve-accent);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  mask: url('/assets/icons/evolve-logo.svg') center/contain no-repeat;
  -webkit-mask: url('/assets/icons/evolve-logo.svg') center/contain no-repeat;
}

/* Hover Glow */
#evolve-orb:hover {
  transform: scale(1.08);
  box-shadow: 0 0 18px var(--evolve-accent-glow);
}
