  /* Hide inactive panels */
  [tab-content] {
    display: none;
  }

  /* Show and animate the active panel */
  [tab-content].is-active {
    display: flex;
    animation: tabFadeIn 400ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes tabFadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    [tab-content].is-active {
      animation: none;
    }
  }
