@layer utilities {
  .fp-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .fp-muted {
    color: var(--fp-color-text-muted);
  }

  .fp-accent {
    color: var(--fp-color-brand-accent);
  }

  .fp-success {
    color: var(--fp-color-status-success);
  }

  .fp-danger {
    color: var(--fp-color-status-danger);
  }

  .fp-text-right {
    text-align: right;
  }

  .fp-text-center {
    text-align: center;
  }

  .fp-nowrap {
    white-space: nowrap;
  }

  .fp-scroll-x {
    overflow-x: auto;
  }

  .fp-full-width {
    width: 100%;
  }

  .fp-visually-grouped > * + * {
    margin-top: var(--fp-space-4);
  }

  [hidden] {
    display: none !important;
  }
}
