  .host{
    justify-content: center;
    max-width: 90rem;
    display: flex
;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    position: relative;
    padding: 7rem 0;
    user-select: text;
  }
  .host h1{
    font-size: 1rem;
  }
  
  .table {
    width: 100%;
    margin: 20px 0;
    background: rgba(33, 33, 33, 0.8);
    border-radius: 1.25rem;
    padding: 20px;
  }
  .table h2{
    color: #5750DA;
  }
  .table th, .table td {
    padding: 10px;
    text-align: left;
  }
  .table th {
    background-color: #212121;
    color: #5750DA;
    text-align: left;
  }
  .table td {
    color: #bdbdbd;
  }
  .tooltip2 {
    position: relative;
    display: inline-block;
    cursor: pointer;
    background: #1b1b1b;
    border-radius: 10px;
    padding: 0.2rem;
    color: #5750DA;
  }
  .tooltip2__text {
    visibility: hidden;
    width: 200px;
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
  }
  .tooltip2:hover .tooltip2__text {
    visibility: visible;
  }
  td .icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
  }
  .toggle-wrapper {
    margin-top: 20px;
    border-radius: 8px;
    overflow: auto;
  }
  
  .toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(33, 33, 33, 0.8);
    padding: 10px 20px;
    color: #5750DA;
  }
  
  .toggle-header h3 {
    margin: 0;
    font-size: 18px;
  }
      .arrow-icon {
        width: 18px;
        height: 18px;
        transition: transform 0.3s;
        transform: rotate(180deg);
      }
      /* Поворот иконки при открытии */
      .arrow-icon.open {
        transform: rotate(360deg);
      }
  
      /* Скрытый по умолчанию блок */
      .toggle-body {
        display: none; /* скрыто */
        margin-top: 10px;
      }
      /* Класс для показа блока */
      .toggle-body.show {
        display: block;
      }


      @media (max-width: 47.9375rem) {
        .host {
          padding: 3rem 1rem;
        }
      
        .table {
          padding: 1rem;
          border-radius: 1rem;
          overflow-x: auto;
        }
      
        .table h2 {
          font-size: 1.5rem;
          text-align: center;
        }
      
        .table th, .table td {
          padding: 0.75rem 0.5rem;
          font-size: 0.875rem;
          white-space: nowrap; /* предотвращает перенос строк */
        }
      
        .toggle-header {
          padding: 0.75rem 1rem;
          font-size: 1rem;
        }
      
        .toggle-header h3 {
          font-size: 1rem;
        }
      
        .tooltip2__text {
          width: 12rem;
          font-size: 0.75rem;
          margin-left: -6rem;
        }
      
        td .icon {
          width: 1.25rem;
          height: 1.25rem;
        }
}
      