/* ============================================
   Inputs / Checkbox & Radio
   Base styles for the native controls.
   Layout classes (form-check-label, form-radio-*) are in core/inputs/base.css.
   ============================================ */

input[type="checkbox"],
input[type="radio"] {
    width: auto;
    height: auto;
    margin-right: var(--spacing-sm);
    cursor: pointer;
}

/* ─── Legacy classes kept for non-migrated contexts ─── */
.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.flex-label {
    display: flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
}

.checkbox-inline {
    width: auto;
    margin: 0;
}
