* {
    font-family: Open sans, sans-serif;
  }
  
  .widget-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .widget-layout {
    display: flex;
    flex-direction: column;
    max-width: 920px;
  }

  .orbital-buttons {
    display: flex;
    justify-content: space-between;
    gap: 8px;
  }

  .orbital-button-wrapper {
    width: 100%;
    text-align: left;
  }
  
  .orbital-button {
    width: 100%;
    text-align: center;
    padding: 10px 12px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    color: #5c3c6b;
    z-index: 1;
  }
  
  .orbital-button.active,
  .orbital-button[aria-selected="true"] {
    border-color: #5c3c6b;
    background-color: #5c3c6b;
    box-shadow: 0 0 0 2px rgba(92,60,107,0.15) inset;
    color: white;
    font-weight: 700;
  }
  
  .orbital-button:hover {
    outline: 2px solid #5c3c6b;
    outline-offset: 2px;
    background-color: #d0bfde;
    color: black;
  }
  
  .orbital-button:focus-visible {
    outline: 2px solid #5c3c6b;
    outline-offset: 2px;
  }
  
  /* Panels */
  .tab-content {
    display: none;
  }
  
  .tab-content.active {
    display: block;
  }
  
  /* Shared media styles (GIFs) */
  .orbital-image {
    width: 100%;
    max-width: 920px;
    height: auto;
    border-radius: 8px;
  }
  
  /* Visually hidden utility */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .content-panel {
    max-width: 100%;
    display: flex;
    place-content: center;
    margin-top: 1em;
  }
  
  /* Optional: respect reduced motion (no animation control for GIFs)
     If you provide still images, you can swap them in via JS.
  */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.001ms;
      animation-iteration-count: 1;
      transition-duration: 0.001ms;
    }
  }
  
  /* @media (max-width: 600px) {
    .widget-layout {
      display: flex;
      flex-direction: column;
    }
  
    .orbital-buttons {
      display: flex;
      justify-content: space-between;
      gap: 8px;
    }
  
    .orbital-button-wrapper {
      width: 100%;
      text-align: left;
    }
  } */
  