/* Livewire SweetAlert2 Fix */
.swal2-container.swal-fixed-container {
    position: fixed !important;
    z-index: 9998 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}

.swal2-container.swal-fixed-container .swal2-popup {
    position: fixed !important;
    z-index: 9999 !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.swal2-container.swal-fixed-container .swal2-backdrop-show {
    position: fixed !important;
    z-index: 9998 !important;
}

/* Prevent scrolling on parent when modal is open */
.swal2-shown body {
    overflow: hidden !important;
}
