/* Visually hide the export format select field from element indexes, because only CSV (the default format) should ever be downloaded */
.export-form > .field:nth-child(2) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
