/* Aura Back Button – tiny, namespaced helpers
   Goal: correctly center glyphs and allow consistent sizing.
   This file intentionally avoids restyling your theme's "glass" button.
*/

.aura-back{
  /* defaults; can be overridden via inline style vars */
  --aura-btn-size: 42px;
  --aura-icon-size: 19px;
}

/* Ensure the glyph sits dead-center inside its bubble */
.aura-back .aura-back-glyph{
  width: var(--aura-btn-size);
  height: var(--aura-btn-size);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: var(--aura-icon-size);
  line-height: 1;

  /* Helps odd glyph baselines (↵, ⎗, etc.) feel visually centered */
  transform: translateY(0.5px);
}

/* If the theme's .glass-icon adds padding, neutralize it just for our glyph */
.aura-back .aura-back-glyph.glass-icon{
  padding: 0;
}
