/*
    Long CERT delivery names (underscore-heavy, no spaces) overflow the default
    250px jquery-toast box. Widen it a bit and force wrapping so success/error
    messages stay inside the toast on every page that uses showToast().
*/
.jq-toast-wrap {
    width: min(420px, 92vw) !important;
    max-width: 92vw !important;
    box-sizing: border-box;
}
.jq-toast-single {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
}
.jq-toast-single b,
.jq-toast-single strong {
    overflow-wrap: anywhere;
    word-break: break-word;
}
