.offscreen {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    /* Optional - for accessibility */
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .bg-dim {
    background-color: #f1f5f9;
  }

    /*
  Dynamically truncates text to a maximum number of characters (e.g. 100),
  Appends an ellipsis (…) only if the text was too long,
  Works responsively across screen sizes. 
  */
  .truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

