/* Container styling */
  .nhra-widget-container26 {
    font-family: "Arial", sans-serif;
    max-width: 800px;
    margin: 0 auto;
    background: #f4f4f4;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 10px 0 10px; 
  }

  /* Navigation Bar */
  .nhra-tabs26 {
    display: flex;
    flex-wrap: wrap;
    background-color: transparent;
    gap: 5px;
    margin-bottom: 5px; 
  }

  /* Buttons */
  .nhra-tab-link26 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1;
    padding: 10px 10px;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 900;
    font-size: 12px;
    color: white;
    background: #002d62;
    background: linear-gradient(180deg, #004e8c 0%, #002d62 100%);
    border: 2px solid #ccc;
    border-radius: 4px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .nhra-tab-link26 img { height: 30px; width: auto; object-fit: contain; }

  .nhra-tab-link26:hover {
    background: linear-gradient(180deg, #0060b0 0%, #003366 100%);
    border-color: #fff;
  }

  .nhra-tab-link26.active26[data-index="0"] {
    background: linear-gradient(180deg, #003366 0%, #002d62 100%);
    border-color: #002d62;
    border-bottom: 5px solid #E31837;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.5);
  }
  .nhra-tab-link26.active26[data-index="1"] {
    background: linear-gradient(180deg, #ff4d4d 0%, #E31837 100%);
    border-color: #E31837;
    border-bottom: 5px solid #000;
  }
  .nhra-tab-link26.active26[data-index="2"] {
    background: linear-gradient(180deg, #444 0%, #000 100%);
    border-color: #000;
    border-bottom: 5px solid #002d62;
  }

  /* --- ANIMATION CONTAINER --- */
  /* This wrapper handles the smooth height transition */
  .nhra-carousel-wrapper26 {
      /* Start with a specific height or auto. 
         We control this via JS for the animation. */
      height: auto;
      overflow: hidden;
      /* Cubic-bezier makes it start fast and slow down at the end (smooth feel) */
      transition: height 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
      opacity: 1;
  }
  
  /* Class applied when closed */
  .nhra-carousel-wrapper26.closed {
      height: 0 !important;
      opacity: 0;
  }

  /* Content Area (Visuals only, not animation) */
  .nhra-carousel-content26 {
    position: relative;
    min-height: 200px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom: none; 
    border-radius: 4px 4px 0 0; 
  }

  /* --- Toggle Bar (Bottom) --- */
  .nhra-toggle-bar26 {
    text-align: center;
    padding: 10px 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none; 
    border-radius: 0 0 4px 4px; 
  }

  /* Prominent Button Style */
  .nhra-toggle-btn26 {
    background: #002d62; 
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 30px; 
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px; 
    transition: background 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }
  
  .nhra-toggle-btn26:hover { background: #E31837; }

  /* CSS Triangle Arrow */
  #nhraBtnArrow26 {
      display: inline-block;
      width: 0;
      height: 0;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-bottom: 8px solid white; 
      transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .arrow-rotate-down { transform: rotate(180deg); }

  .nhra-slide26 {
    display: none;
    padding: 25px;
    animation: fadeEffect26 1.0s;
  }
  .nhra-slide26:first-child { display: block; }

  @keyframes fadeEffect26 { from { opacity: 0; } to { opacity: 1; } }

  @media screen and (max-width: 600px) {
    .nhra-tab-link26 { flex-direction: column; font-size: 12px; }
  }
  
  .button--primary {
      display: inline-block;
      padding: 10px 20px;
      background: #E31837;
      color: white;
      text-decoration: none;
      border-radius: 4px;
      font-weight: bold;
  }