#screen-history {
  flex-direction: column; align-items: center; justify-content: flex-start;
  padding: 40px 32px 40px; width: 100%; height: 100%; overflow-y: auto;
}
.history-inner { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 620px; }

.history-header {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 4px;
}
.history-header h1 { font-size: 22px; font-weight: 700; color: var(--text); margin: 0; white-space: nowrap; }
.history-count { font-size: 11px; color: var(--border); font-weight: 600; }

.history-list { display: flex; flex-direction: column; gap: 6px; }
.history-empty {
  text-align: center; padding: 60px 20px; color: var(--muted); font-size: 13px; line-height: 1.7;
}

.hi-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; transition: border-color 0.15s;
}
.hi-card:hover { border-color: rgba(255,255,255,0.06); }

.hi-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
}

.hi-arts { display: flex; flex-shrink: 0; }
.hi-art {
  width: 46px; height: 46px; border-radius: 8px; object-fit: cover;
  border: 2px solid var(--surface);
}
.hi-art + .hi-art { margin-left: -14px; }

.hi-info { flex: 1; min-width: 0; }
.hi-title {
  font-size: 13px; font-weight: 700; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 1px;
}
.hi-sub {
  font-size: 11px; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 2px;
}
.hi-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; color: var(--border); font-weight: 600;
}
.hi-meta span + span::before { content: "·"; margin-right: 8px; }

.hi-date {
  font-size: 10px; color: var(--border); flex-shrink: 0;
  text-align: right; white-space: nowrap;
}

@media (max-width: 680px) {
  #screen-history { padding: 16px 12px calc(72px + env(safe-area-inset-bottom, 0px)); }
  .history-inner { max-width: 100%; gap: 8px; }
  .history-header h1 { font-size: 18px; }
  .hi-art { width: 40px; height: 40px; border-radius: 6px; }
  .hi-row { padding: 10px 12px; gap: 10px; }
  .hi-title { font-size: 12px; }
}
