.summary-field {
    max-width: 200px; /* Set your desired width */
    white-space: nowrap; /* Prevent text from wrapping */
    overflow: hidden; /* Hide overflow text */
    text-overflow: ellipsis; /* Add ellipsis (...) for overflow text */
}
/* Style the upload file name with wrapping */
.filepond--file-info-main {
    white-space: normal !important;
    word-break: break-all !important;
    max-width: 100vw; /* Ensures it doesn't overflow on mobile */
    display: block;
    font-size: 1em;   /* Optional: adjust for mobile readability */
}

.filepond--item {
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
    align-items: stretch !important;
}