/* Ant Sprite Raw Viewer -- additive to style.css/ant.css. */

.notice {
  margin: 0;
  padding: 0.75rem 1.25rem;
  background: rgba(224, 168, 75, 0.08);
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}
.notice code { color: var(--text); }

#blockList {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem;
  max-height: calc(100vh - 9rem);
}

.file-status {
  font-size: 0.75rem;
  color: var(--muted);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.file-status .exact { color: #7fe0a0; }
.file-status .remainder { color: #e08a7f; }

#blockItems { overflow-y: auto; display: flex; flex-direction: column; gap: 2px; }

.frame-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.frame-thumb {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px;
  cursor: pointer;
  background: repeating-conic-gradient(#1a1c21 0% 25%, #17181c 0% 50%) 50% / 8px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.frame-thumb.active { border-color: var(--accent); }
.frame-thumb canvas { image-rendering: pixelated; image-rendering: crisp-edges; display: block; }
.frame-thumb span { font-size: 0.65rem; color: var(--muted); }
