#schemeExportModal .brp-export-dialog {
    font-size: calc(0.84rem - 2pt) !important; /* Reduce font size by 2pt */
}

#schemeExportModal .brp-export-filter-panel {
    overflow-y: auto !important; /* Add scrollbar to left panel */
}

/* Assuming the right panel for field selection is within .brp-export-body and has a specific class or structure */
/* This might need adjustment after further inspection of the right panel's structure */
#schemeExportModal .brp-export-body > div:last-child {
    overflow-y: auto !important; /* Add scrollbar to right panel */
}

/* Accordion sections default to closed - this will require JS modification, but for now, if there's a CSS class for open/closed, we can try to force closed */
/* This is a placeholder and will likely need JS to properly control accordion state */
.brp-accordion-section.open {
    display: none !important;
}
