/**
 * Nextcloud 32 Enterprise - Custom Column Widths
 * ================================================
 * VERSION 4 - Nutzt CSS-Variablen wie Nextcloud
 */

/* Papierkorb: Original Location viel breiter */
.files-list__row-trashbin-files_trashbin--original-location {
    width: calc(var(--row-height, 44px) * 8 + 100px) !important;
    flex: 0 0 auto !important;
}

/* Papierkorb: GelÃ¶scht am etwas kleiner */
.files-list__row-trashbin-files_trashbin--deleted {
    width: calc(var(--row-height, 44px) * 2.5) !important;
}

/* Size Spalte: Standard beibehalten */
.files-list__row-size {
    width: calc(var(--row-height, 44px) * 2) !important;
}

/* Name: Nimmt restlichen Platz, aber mit Minimum */
.files-list__row-name {
    flex: 1 1 auto !important;
    min-width: 150px !important;
}