/**
 * Native <dialog> is hidden by the user agent when the `open` attribute is absent.
 * Flowbite modals toggle Tailwind `.flex` / `.hidden` instead of `open`, so we restore
 * layout when the modal is shown (`.flex` without `.hidden`).
 */
dialog.kwiktrip-fd-modal {
    border: none;
    padding: 0;
    margin: 0;
    max-width: none;
}

dialog.kwiktrip-fd-modal.flex {
    display: flex !important;
}

