﻿
/* Hide only the Cancel button in the top bar */
.uppy-Root .uppy-DashboardContent-back {
    display: none !important;
}

/* Show the Back button in the Add Files panel */
.uppy-Root .uppy-Dashboard--isAddFilesPanelVisible .uppy-DashboardContent-back {
    display: block !important;
}

/* Hide the standard Close button (and Add more) when the panel is active */
.uppy-Root .uppy-Dashboard--isAddFilesPanelVisible .uppy-DashboardContent-bar button:not(.uppy-Dashboard-AddFilesPanel .uppy-DashboardContent-back) {
    display: none !important;
}

/* Hide file size in dashboard since it is not available, only zeroes are displayed */
.uppy-Dashboard-Item-status {
    display: none !important;
}

/* Hides the "Done" button when the upload is complete */
.uppy-StatusBar.is-complete .uppy-StatusBar-actions {
    display: none !important;
}

/* Force the internal dashboard container to be full width */
.uppy-Dashboard-inner {
    width: 100% !important;
    max-width: 100% !important;
}

/* Optional: Ensures the outer wrapper also expands */
.uppy-Dashboard {
    width: 100% !important;
}