/* ── HISTORY MODALS ── */
.history-modal {
  max-width: 560px;
  width: 92%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}
.history-modal .modal-word { padding: 24px 28px 0; }
.history-modal .modal-divider { margin: 12px 28px; }
.history-list {
  overflow-y: auto;
  flex: 1;
  padding: 0 28px 24px;
}
.history-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(184,134,11,0.15);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.history-item:last-child { border-bottom: none; }
.history-item-content { flex: 1; }
.history-item-title {
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 4px;
  cursor: pointer;
}
.history-item-title:hover { color: var(--gold); }
.history-item-text {
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
}
.history-item-date {
  font-family: Arial, sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  opacity: 0.5;
  margin-top: 4px;
}
.history-item-del {
  background: none;
  border: none;
  color: var(--red);
  opacity: 0.4;
  cursor: pointer;
  font-size: 0.8rem;
  padding: 4px;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.history-item-del:hover { opacity: 1; }
.history-empty {
  font-family: Arial, sans-serif;
  font-style: italic;
  color: var(--ink-light);
  opacity: 0.6;
  text-align: center;
  padding: 32px 0;
}
.history-signin-note {
  font-family: Arial, sans-serif;
  font-style: italic;
  color: var(--gold);
  text-align: center;
  padding: 24px 0;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: underline;
}
