/* ===== 文字回看 ===== */
.history-screen {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 35;
  display: flex;
  flex-direction: column;
  background: rgba(10, 10, 20, 0.95);
  backdrop-filter: blur(8px);
}

.history-list {
  flex: 1;
  overflow-y: auto;
  padding: 22px 30px;
}

.history-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  line-height: 1.6;
}

.history-speaker {
  font-weight: 500;
  margin-right: 13px;
}

.history-text {
  color: var(--color-text);
  font-size: 21px;
}

.history-narrator-text {
  font-style: italic;
  color: var(--color-text-dim);
}

.history-empty {
  color: var(--color-text-dim);
  text-align: center;
  padding: 40px;
  font-style: italic;
  font-size: 21px;
}
