/**
 * Custom styles for CNPJLeads
 */

/* Fix for modal positioning */
#exportLimitModal,
.fixed.inset-0.bg-black.bg-opacity-50.flex.items-center.justify-center.z-50 {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 9999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Ensure modal is positioned relative to viewport, not containing element */
#exportLimitModal .bg-white,
.fixed.inset-0.bg-black.bg-opacity-50.flex.items-center.justify-center.z-50 .bg-white {
    position: relative !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
}

/* Ensure messages appear above other content */
.fixed.top-16.right-4.p-4.rounded-md.shadow-lg.z-50 {
    z-index: 9999 !important;
    position: fixed !important;
}

/* Ensure footer doesn't affect modal positioning */
footer {
    position: relative;
    z-index: 1;
}

/* Ensure body and html are positioned properly when modal is shown */
body.modal-open,
html.modal-open {
    overflow: hidden !important;
    height: 100% !important;
}
