@layer components {
  /* A count pinned to the corner of the control it belongs to */
  .badge {
    align-items: center;
    background-color: var(--color-accent);
    block-size: 1rem;
    border-radius: 50%;
    color: var(--color-white);
    display: flex;
    font-size: var(--text-xx-small);
    font-weight: 700;
    inline-size: 1rem;
    inset-block-start: -0.25rem;
    inset-inline-end: -0.25rem;
    justify-content: center;
    position: absolute;
  }

  .badge:empty {
    display: none;
  }
}
