/* ═══════════════════════
   CONTAINER
   ═══════════════════════ */
.current-call-tagger-container.abstract-dialog {
    border: 1px solid #d7d7d7;
    height: 100%;
    overflow: auto;
}

.live-summary {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  font-family: system-ui, -apple-system, sans-serif;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* ═══════════════════════
   HEADER
   ═══════════════════════ */

.lr-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1px 12px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.lr-header-left {
  display: flex;
  align-items: center;
}

.lr-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lr-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  margin-right: 6px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: .4; }
  50% { opacity: 1; }
}

.lr-live-label {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 1px;
}

.lr-badge-total {
    font-size: 10px;
    color: rgb(99, 102, 241);
    font-weight: 600;
}

/* SNAPSHOT DOTS */

.lr-dots {
  display: flex;
  gap: 4px;
  cursor: pointer;
}

.lr-dotbtn {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e2e8f0;
  cursor: pointer;
  transition: background 0.2s;
}

.lr-dotbtn.active {
  background: #6366f1;
}

/* ═══════════════════════
   ATTITUDE
   ═══════════════════════ */

.lr-attitude {
  padding: 8px 12px;
  border-bottom: 1px solid #f1f5f9;
}

.lr-attitude-text {
  font-size: 11px;
  color: #475569;
  line-height: 1.5;
  border-left: 2px solid #22c55e;
  padding-left: 8px;
}

/* ═══════════════════════
   BODY LAYOUT
   ═══════════════════════ */

.lr-body {
  display: flex;
  min-height: 220px;
}

.lr-left {
  flex: 1;
  /* max-height: 320px; */
  overflow-y: auto;
  border-right: 1px solid #f1f5f9;
}

.lr-right {
  width: 180px;
  padding: 10px;
  background: #fafbfc;
  /* max-height: 320px; */
  overflow-y: auto;
}

/* ═══════════════════════
   TIMELINE ROW
   ═══════════════════════ */

.lr-row {
    display: flex;
    align-items: stretch;
    background: transparent;
    transition: background 0.3s;
}

/* .lr-row.new {
  background: #f0fdf4;
} */

.lr-ts {
    width: max-content;
    font-size: 9px;
    color: #94a3b8;
    text-align: right;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-family: "JetBrains Mono", monospace;
}


/* TIMELINE */

.lr-timeline {
  position: relative;
  width: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lr-line {
  position: absolute;
  width: 2px;
  background: #cbd5e1;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.lr-line.top {
  top: 0;
  height: 50%;
}

.lr-line.bottom {
  top: 50%;
  height: 50%;
}

.lr-node {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f8fafc;
  border: 2px solid #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 900;
  color: #64748b;
  z-index: 2;
}



/* TEXT */

.lr-text {
  flex: 1;
  font-size: 12px;
  color: #334155;
  padding-left: 6px;
  line-height: 1.4;
  padding: 6px;
}

/* ═══════════════════════
   TAGS
   ═══════════════════════ */

.lr-tag {
  font-size: 11px;
  padding: 4px 6px;
  border-radius: 4px;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid transparent;
}

.lr-tag.keyword {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #dc2626;
}

.lr-tag.forced {
  background: #eff6ff;
  border-color: #93c5fd;
  color: #2563eb;
}

.lr-tag.predefined {
  background: #f0fdf4;
  border-color: #86efac;
  color: #16a34a;
}

.lr-tag.negative {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}

.lr-tag-score {
  font-weight: 700;
  font-size: 10px;
  margin-left: 6px;
}

/* EMPTY */

.lr-empty {
  font-size: 11px;
  color: #cbd5e1;
  font-style: italic;
}

.lr-separator {
  font-size: 10px;
  color: #cbd5e1;
  margin: 0 6px;
}

.lr-minute {
  font-size: 10px;
  color: #94a3b8;
  font-weight: 500;
}
