/* Thumbnail sizing for app/admin/resources.rb. Kept as classes (not inline
   style attributes) so the admin CSP's style-src can stay 'self' only. */

.admin-thumb-index {
  max-width: 60px;
  max-height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.admin-thumb-detail {
  max-width: 200px;
  max-height: 200px;
  object-fit: contain;
}

.admin-thumb-attachment {
  max-width: 80px;
  max-height: 80px;
  object-fit: cover;
}

.admin-thumb-form-preview {
  max-width: 120px;
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 0.5rem;
  display: block;
}
