/**
 * CSP-compliant utility classes
 * Replaces inline style= attributes to satisfy Content-Security-Policy.
 */

/* Body resets — replaces style="margin:0px; overflow-x:hidden;" */
.csp-body-reset {
    margin: 0px;
    overflow-x: hidden;
}

/* Error text — replaces style="text-align: center;" on error <p> */
.csp-text-center {
    text-align: center;
}

/* Hidden by default — replaces style="display: none;" / style="display:none;" */
.csp-hidden {
    display: none;
}

/* Cursor pointer — replaces style="cursor: pointer;" */
.csp-cursor-pointer {
    cursor: pointer;
}

/* List style inside — replaces style="list-style: inside;" */
.csp-list-inside {
    list-style: inside;
}

/* Union bank card image — replaces style="max-height: 175px;" */
.csp-img-union-card {
    max-height: 175px;
}
