/* ══ DELETE PAGES APP — Specific styles ══ */
/* Thumbnail grid with selection and deletion. */
/* Shared styles (toolbar, canvas, thumbnail, etc.) come from /shared/. */

/* Container — centered in canvas area */
.page-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Fade-in animation when thumbnails are re-rendered after deletion */
page-thumbnail {
  animation: thumb-fade-in 0.6s ease;
}

@keyframes thumb-fade-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
