/*! MRZ Plugin — Tailwind CSS Scoped Preflight
 *  Applied when Tailwind CSS is not loaded by the active theme or another plugin.
 *  All rules are scoped to .mrz-plugin-wrapper to avoid interfering with
 *  theme or other plugin styles.
 *  Replace this file with a full Tailwind CSS build if utility classes are needed.
 */

/* ── Box model ── */
.mrz-plugin-wrapper *,
.mrz-plugin-wrapper *::before,
.mrz-plugin-wrapper *::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: currentColor;
}

/* ── Images / media ── */
.mrz-plugin-wrapper img,
.mrz-plugin-wrapper svg,
.mrz-plugin-wrapper video,
.mrz-plugin-wrapper canvas,
.mrz-plugin-wrapper audio,
.mrz-plugin-wrapper iframe,
.mrz-plugin-wrapper embed,
.mrz-plugin-wrapper object {
    display: block;
    vertical-align: middle;
}
.mrz-plugin-wrapper img,
.mrz-plugin-wrapper video {
    max-width: 100%;
    height: auto;
}

/* ── Typography ── */
.mrz-plugin-wrapper b,
.mrz-plugin-wrapper strong { font-weight: bolder; }
.mrz-plugin-wrapper small  { font-size: 80%; }

/* ── Form elements ── */
.mrz-plugin-wrapper button,
.mrz-plugin-wrapper input,
.mrz-plugin-wrapper optgroup,
.mrz-plugin-wrapper select,
.mrz-plugin-wrapper textarea {
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
}
.mrz-plugin-wrapper select { text-transform: none; }

.mrz-plugin-wrapper button,
.mrz-plugin-wrapper [type="button"],
.mrz-plugin-wrapper [type="reset"],
.mrz-plugin-wrapper [type="submit"] {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none;
    cursor: pointer;
}
.mrz-plugin-wrapper :disabled { cursor: default; }

.mrz-plugin-wrapper input::placeholder,
.mrz-plugin-wrapper textarea::placeholder {
    opacity: 1;
    color: #9ca3af;
}

/* ── Misc ── */
.mrz-plugin-wrapper [hidden] { display: none; }

.mrz-plugin-wrapper ol,
.mrz-plugin-wrapper ul,
.mrz-plugin-wrapper menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mrz-plugin-wrapper table {
    border-collapse: collapse;
    border-color: inherit;
    text-indent: 0;
}

.mrz-plugin-wrapper fieldset { margin: 0; padding: 0; }
.mrz-plugin-wrapper legend  { padding: 0; }
.mrz-plugin-wrapper summary { display: list-item; }

.mrz-plugin-wrapper :-moz-focusring  { outline: auto; }
.mrz-plugin-wrapper :-moz-ui-invalid { box-shadow: none; }

.mrz-plugin-wrapper ::-webkit-inner-spin-button,
.mrz-plugin-wrapper ::-webkit-outer-spin-button { height: auto; }

.mrz-plugin-wrapper [type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
.mrz-plugin-wrapper ::-webkit-search-decoration { -webkit-appearance: none; }
.mrz-plugin-wrapper ::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

/* ── Progress ── */
.mrz-plugin-wrapper progress { vertical-align: baseline; }
