/**
 * Modal scroll fix styles
 */
body.modal-open {
    overflow: hidden;
    height: auto;
}

/* Fix for modal backdrop when modal is closed */
body.modal-closed {
    overflow: auto !important;
    padding-right: 0 !important;
}

/* Add specificity to override any library styles */
html.modal-scrolling-enabled,
body.modal-scrolling-enabled {
    overflow: auto !important;
    padding-right: 0 !important;
    height: auto !important;
}
