/**
 * Vexora Phoenix — Light theme design tokens
 * Include in panel pages: <link rel="stylesheet" href="/assets/vexora-theme.css">
 */
:root {
  --bg:      #f1f5f9;
  --surface: #ffffff;
  --card:    #ffffff;
  --border:  #e2e8f0;
  --border2: #cbd5e1;
  --muted:   #64748b;
  --text:    #475569;
  --bright:  #0f172a;
  --blue:    #2563eb;
  --cyan:    #0891b2;
  --green:   #16a34a;
  --red:     #dc2626;
  --yellow:  #d97706;
  --purple:  #7c3aed;
  --orange:  #ea580c;
  --phoenix: #ea580c;
  --phoenix-light: #fff7ed;
  --accent:  var(--phoenix);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
}

body.vexora-light {
  background: var(--bg);
  color: var(--text);
}

.vexora-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--phoenix-light);
  border: 1px solid #fed7aa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.vexora-logo-mark img,
.vexora-logo-mark svg {
  width: 26px;
  height: 26px;
}
.vexora-logo-text {
  font-family: 'JetBrains Mono', 'Space Grotesk', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--bright);
  letter-spacing: -0.02em;
}
.vexora-logo-text span {
  color: var(--phoenix);
}
