/* Ensure styles only affect elements within #binaries tab-panel */
#binaries .row {
    display: flex;
    width: 100%;
}

#binaries .row > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 10px;
    min-width: 0;
}

#binaries .file-name, #binaries .file-hash {
    word-break: break-all;
    overflow-wrap: break-word;
}

#binaries .file-name, #binaries .file-hash, #binaries .file-download {
    border-right: 1px solid #dee2e6;
    align-items: center;
}

#binaries .file-download {
    border-right: none;
    justify-content: center;
    text-align: center;
}

#binaries .file-download .btn {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

#binaries .header > div {
    border-right: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

#binaries .header > div:last-child {
    border-right: none;
}
