/* Ensure FilePond layout is in grid */
.filepond--item {
    width: 240px; /* Set a fixed width for each item */
    max-height: 240px; /* Set a fixed height for each item */
    margin: 10px;
  }
  
  .filepond--list {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap onto multiple rows */
    gap: 20px; /* Spacing between items */
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .filepond--image-preview-wrapper {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  