/* File manager UI enhancements: hover actions and bulk selection */

.bulk-col {
    width: 2.5rem;
}

.file-row .form-check-input {
    margin: 0;
    cursor: pointer;
}

.file-row .row-actions {
    white-space: nowrap;
}

.file-row .row-actions .btn-link {
    text-decoration: none;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

@media (hover: hover) {
    .file-row .row-actions {
        opacity: 0;
        transition: opacity 0.12s ease-in-out;
    }

    .file-row:hover .row-actions,
    .file-row .row-actions:focus-within {
        opacity: 1;
    }
}

#bulk-toolbar {
    position: sticky;
    top: 0;
    z-index: 10;
}
