/* /affiliate/themes/myba/amgr-shield.css
   Purpose: keep MYBA skin out of embedded AMGR UI
   Load AFTER theme.css
*/

.amgr-embed{
  /* keep embed visually neutral */
  color: inherit;
}

/* Stop common “theme takeover” selectors */
.amgr-embed a{
  color: inherit;
  text-decoration: inherit;
}

/* If your MYBA theme sets global font-family or sizes, this helps keep AMGR stable */
.amgr-embed{
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* Guard against aggressive global resets like *{box-sizing} or button/a styling */
.amgr-embed *{
  /* don’t globally reset; just prevent weird inherited filters/transforms */
  filter: none;
  transform: none;
}

/* If MYBA uses CSS variables that affect Bootstrap (rare, but possible) */
.amgr-embed{
  --myba-blue: initial;
  --myba-cyan: initial;
}