/* History */
#history {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.history-entry {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: var(--text-md);
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--border);
}

.history-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  object-fit: cover;
}

.history-name { flex: 1; }
.history-marker { font-size: var(--text-lg); line-height: var(--leading-none); }
.history-entry.wrong { color: var(--accent); border-color: rgba(227, 36, 59, 0.3); }
.history-entry.correct { color: #4ADE80; border-color: rgba(74, 222, 128, 0.3); font-weight: 700; }
.history-entry.gaveup { color: var(--text-muted); }

@media (max-width: 640px) {
    .history-icon {
      width: 32px;
      height: 32px;
    }
}
