/* Widen the editing column to fit download + edit + delete buttons on one line */
td.footable-editing {
    width: 120px !important;
    max-width: 120px !important;
    min-width: 120px !important;
}

/* Ensure button group doesn't wrap */
td.footable-editing .btn-group {
    white-space: nowrap;
}

/* Make buttons slightly smaller if needed */
td.footable-editing .btn-xs {
    padding: 1px 5px;
    font-size: 12px;
}

/* Hide import button when not in edit mode */
table.footable-editing button.footable-import {
    display: none;
}

/* Show import button only when in edit mode */
table.footable-editing.footable-editing-show button.footable-import {
    display: inline-block;
}