 .base-letter {
    display: flex;
    font-size: 16px;
    font-weight: 300;
    line-height: 0;
    color: #6a6461; 
    text-align: center;
    transition: color 0.3s ease;
    text-shadow:
      0px 0px 1px #8f4d57
  }

  .base-letter-initials {
    display: flex;
    font-size: 16px;
    font-weight: 300;
    line-height: 0;
    color: #6a6461; 
    text-align: center;
    transition: color 0.3s ease;
    font-style: italic;
    text-shadow:
      0px 0px 1px #8f4d57
  }

  .base-letter-small {
    display: inline-block;  /* or use block if you want it on its own line */
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
    color: #6a6461;
    text-align: center;
    white-space: normal;  /* allow wrapping */
    word-break: break-word;  /* optional: breaks long strings */
    text-shadow: 0px 0px 1px #8f4d57;
    transition: color 0.3s ease;
    margin-left: 30px;
    margin-right: 30px;
  }

  .base-letter-week {
    display: inline-block;  /* or use block if you want it on its own line */
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    color: #6a6461;
    text-align: center;
    white-space: normal;  /* allow wrapping */
    word-break: break-word;  /* optional: breaks long strings */
    text-shadow: 0px 0px 1px #8f4d57;
    transition: color 0.3s ease;
    margin-left: 47px;
  }

  .hidden-letter {
    color: transparent;         /* hides text but keeps space */
    text-shadow: none;          /* prevent any ghost glow */
    pointer-events: none;       /* optional: disable interaction */
  }

/* player name text  ─────────────────────────────────── */
.base-letter-player {
  /* don’t make this a flex container; the outer box will handle centering */
  display: block;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  color: #838383;

  /* 🔑 remove default paragraph margins */
  margin: 0;                 /* ← this alone fixes the tall box */
}

/* outset pill  ───────────────────────────────────────── */
.outset-header-container {
  border: outset 3px #e6d9bd;
  background-color: #dbcfb1;

  /* make the pill itself a flex box */
  display: flex;
  align-items: center;       /* vertical centering */
  justify-content: center;   /* horizontal centering */

  padding: 0 20px;           /* horizontal padding only */
  margin: 0 auto 12px;       /* center + small gap below */

  width: max-content;        /* hugs the text */
  border-radius: 50px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}
