/* minimal overrides; Pico.css does the rest */
.thumb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.thumb-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--pico-border-radius);
}
.thumb-card {
  font-size: 0.85rem;
}
.badge {
  display: inline-block;
  padding: 0.1rem 0.5rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  margin-right: 0.25rem;
  color: #1b1b1b;
}
.badge-done { background: #b7e4c7; }
.badge-pending { background: #ffe08a; }
.badge-failed { background: #f5a3ab; }
.badge-field { background: #dee2e6; }

