/**
 * Widens ONLY the claim-a-listing modal from the theme default of 380px to
 * 600px, so its extra fields (NZBN, phone, email, document) fit comfortably.
 * Scoped by ID: every other HivePress modal (login, register, review,
 * message) keeps the 380px default. Viewport-safe max-width prevents
 * overflow on narrow screens.
 */
div#listing_claim_submit_modal {
    width: 600px;
    max-width: calc(100vw - 32px);
}

@media (max-width: 480px) {
    div#listing_claim_submit_modal {
        max-width: calc(100vw - 20px);
    }
}
