/* Jack Minimal — neutral grayscale, no gold accents */

.theme-minimal {
  --bg-deep: #f5f5f5;
  --bg-base: #fafafa;
  --bg-elevated: #ffffff;
  --bg-hover: #f0f0f0;
  --border-subtle: #e0e0e0;
  --border-medium: #cccccc;
  --gold-primary: #555555;
  --gold-light: #777777;
  --gold-dark: #333333;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #7a7a7a;
  --success: #16a34a;
  --success-bg: rgba(22, 163, 74, 0.1);
  --warning: #d97706;
  --warning-bg: rgba(217, 119, 6, 0.1);
  --error: #dc2626;
  --error-bg: rgba(220, 38, 38, 0.1);
}

.theme-minimal body {
  -webkit-font-smoothing: auto;
}

.theme-minimal body::before {
  opacity: 0.015;
}

/* Code block overrides */
.theme-minimal .chat-content pre,
.theme-minimal .markdown pre,
.theme-minimal .review-content pre,
.theme-minimal .shared-content pre {
  background: #1a1917 !important;
  border-color: #2a2924 !important;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
}

.theme-minimal .chat-content :not(pre) > code,
.theme-minimal .markdown :not(pre) > code,
.theme-minimal .review-content :not(pre) > code,
.theme-minimal .shared-content :not(pre) > code {
  background: rgba(85, 85, 85, 0.08);
  border-color: rgba(85, 85, 85, 0.12);
  color: var(--gold-dark) !important;
}
