/** MUAADH CHECKBOX — Custom checkbox styling. Single source. */


/* ============================================================================
 * APPENDED (Phase 13 Wave 18 — 2026-05-13): rules pulled from muaadh-core.css
 * ============================================================================ */

.muaadh-checkbox,

.muaadh-checkbox__input,

.muaadh-checkbox__input {
    border-radius: var(--radius-sm);
}

.muaadh-checkbox__input:hover,

.muaadh-checkbox__input:focus,

.muaadh-checkbox__input:checked,

.muaadh-checkbox__input:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid var(--text-inverse);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.muaadh-checkbox__input:disabled,
.muaadh-checkbox__label {
    list-style: none;
    padding: 0;
    margin: 0;
}

.muaadh-checkbox--switch { position: relative; display: inline-flex; align-items: center; }

