/* AEIR Therapy Workshop Showcase — Custom Styles */
/* Light Theme — Clean, warm white with subtle gray accents */

[x-cloak] {
  display: none !important;
}

/* Narrative typography */
.narrative-line {
  line-height: 1.75;
  margin-bottom: 0.25rem;
}
.narrative-line:empty {
  margin-bottom: 1rem;
}

/* Sidebar phase badge */
.phase-badge {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.05);
  color: rgb(113, 113, 122);
  white-space: nowrap;
}

/* Comment sentiment chips */
.sentiment-chip {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.15s ease;
}
.sentiment-chip:hover {
  opacity: 0.85;
}
.sentiment-chip[data-active="true"] {
  box-shadow: 0 0 0 2px rgba(113, 113, 122, 0.3);
}

.sentiment-resonance {
  background: rgba(0, 0, 0, 0.04);
  color: rgb(63, 63, 70);
  border-color: rgba(0, 0, 0, 0.12);
}
.sentiment-disagreement {
  background: rgba(0, 0, 0, 0.04);
  color: rgb(63, 63, 70);
  border-color: rgba(0, 0, 0, 0.15);
}
.sentiment-question {
  background: rgba(0, 0, 0, 0.04);
  color: rgb(63, 63, 70);
  border-color: rgba(0, 0, 0, 0.12);
}
.sentiment-suggestion {
  background: rgba(0, 0, 0, 0.04);
  color: rgb(63, 63, 70);
  border-color: rgba(0, 0, 0, 0.12);
}
.sentiment-missing {
  background: rgba(0, 0, 0, 0.04);
  color: rgb(63, 63, 70);
  border-color: rgba(0, 0, 0, 0.12);
}
.sentiment-important {
  background: rgba(0, 0, 0, 0.04);
  color: rgb(63, 63, 70);
  border-color: rgba(0, 0, 0, 0.15);
}

/* Journey timeline */
.timeline-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  flex-shrink: 0;
}
.timeline-dot-complete {
  background: rgb(16, 185, 129);
}
.timeline-dot-upcoming {
  background: rgb(212, 212, 216);
}
.timeline-line {
  width: 2px;
  min-height: 2rem;
  flex-shrink: 0;
}

/* Smooth section transitions */
[x-show] {
  transition: opacity 0.2s ease;
}

/* Scrollbar styling */
.sidebar-scroll::-webkit-scrollbar {
  width: 4px;
}
.sidebar-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.sidebar-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 2px;
}

/* Locked section placeholder */
.locked-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
}
.locked-section-icon {
  width: 3rem;
  height: 3rem;
  color: rgba(0, 0, 0, 0.15);
  margin-bottom: 1.5rem;
}
