/* ═══════════════════════════════════════════════════════════════
   Candle Pattern - Fallback styling
   Distinguishes "real" patterns from "best guess" classifications
   ═══════════════════════════════════════════════════════════════ */

/* Fallback patterns - more subtle (less prominent than real patterns) */
.cp-pattern.cp-fallback {
  opacity: 0.6;
  border-style: dashed !important;
  background: rgba(148, 163, 184, 0.05) !important;
}

.cp-pattern.cp-fallback::after {
  content: ' ●';
  color: var(--text-dim, #666);
  font-size: 0.7em;
  margin-right: 2px;
}

.cp-pattern.cp-fallback:hover {
  opacity: 0.85;
}

/* When all patterns in a TF are fallbacks, give a subtle hint */
.cp-tf-content:has(.cp-fallback:only-child) {
  position: relative;
}

/* Indicator for fallback section in tooltip context */
.cp-pattern.cp-fallback .cp-name {
  font-style: italic;
}
