.accordion {
    border-radius: 8px;
    margin-bottom: 30px;
    cursor: pointer;
}
  .accordion-header {
    border: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .accordion-header span {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .accordion-body {
    font-size: 14px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity .3s 
  }
  
  .accordion-body.active {
    height: 100%;
    opacity: 1;
    
    padding: 5px;
  }
  
  
  .arrow {
    transition: transform .2s linear;
  }
  .accordion:has(.active) .arrow {
    transform: rotate(180deg);
  }