/**
 * Modal Fixes
 * Prevents backdrop issues and modal conflicts
 */

/* Prevent backdrop from showing (handled by JS) */
.modal-backdrop {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Ensure body scrolls normally when modal is "open" */
body.modal-open {
  overflow: auto !important;
  padding-right: 0 !important;
}

