/* Rapor timeline stili */
.tl { margin: 20px 0; }
.tl h3 {
  font-family: var(--serif); font-size: 17px; font-weight: 600;
  margin-bottom: 16px; color: var(--text);
}
.tl-step {
  display: grid; grid-template-columns: 56px 20px 1fr;
  gap: 0 10px; min-height: 60px; position: relative;
}
/* Dikey cizgi */
.tl-step::before {
  content: ''; position: absolute; left: 75px; top: 10px; bottom: -10px;
  width: 2px; background: var(--border2);
}
.tl-step:last-child::before { display: none; }

/* Tarih */
.tl-date {
  text-align: right; font-size: 13px; font-weight: 700;
  color: var(--text); padding-top: 2px; line-height: 1.3;
}
.tl-day {
  display: block; font-size: 10px; font-weight: 500;
  color: var(--text3); letter-spacing: .3px;
}

/* Nokta */
.tl-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent); border: 2px solid var(--card);
  box-shadow: 0 0 0 2px var(--border2);
  margin-top: 4px; z-index: 1; justify-self: center;
}
.tl-dot.tag-olumlu-bg { background: var(--green); box-shadow: 0 0 0 2px rgba(61,122,82,.25); }
.tl-dot.tag-belirsiz-bg { background: var(--amber); box-shadow: 0 0 0 2px rgba(160,120,48,.25); }
.tl-dot.tag-tirmandirma-bg { background: var(--red); box-shadow: 0 0 0 2px rgba(184,58,58,.2); }
.tl-dot.tag-erteleme-bg { background: var(--blue); box-shadow: 0 0 0 2px rgba(74,111,148,.25); }
.tl-dot.tag-joker-bg { background: var(--purple); box-shadow: 0 0 0 2px rgba(122,104,152,.25); }
.tl-dot-end { background: var(--text); }

/* Icerik */
.tl-body { padding-bottom: 18px; }
.tl-node {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .5px; color: var(--text3); margin-bottom: 2px;
}
.tl-choice {
  font-family: var(--serif); font-size: 15px; font-weight: 600;
  line-height: 1.35; margin-bottom: 4px;
}

/* Secilmeyen secenekler */
.tl-rejected { margin-top: 4px; }
.tl-rej {
  font-family: var(--serif); font-size: 13px;
  color: var(--text3); text-decoration: line-through;
  opacity: 0.5; line-height: 1.6;
}

/* Metrik deltalari */
.tl-deltas { display: flex; gap: 8px; flex-wrap: wrap; }
.tl-d {
  font-size: 11px; font-weight: 600; padding: 1px 6px;
  border-radius: 4px; letter-spacing: .2px;
}
.tl-d.bad { background: rgba(184,58,58,.08); color: var(--red); }
.tl-d.good { background: rgba(61,122,82,.08); color: var(--green); }

/* Son durum ozeti */
.tl-summary { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.tl-sm {
  font-size: 12px; color: var(--text2); background: var(--bg2);
  padding: 2px 8px; border-radius: 4px;
}
.tl-sm strong { color: var(--text); }

.tl-final .tl-node { font-size: 13px; color: var(--text); }

/* Ekran goruntusu butonu */
.btn-tl-capture {
  display: block; margin: 16px auto 0; padding: 10px 20px;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  color: var(--text2); background: var(--bg2); border: 1px solid var(--border);
  border-radius: 8px; cursor: pointer; transition: all .2s;
}
.btn-tl-capture:hover { border-color: var(--border2); color: var(--text); }
