.collapsible {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .lbl-toggle {
    display: block;
    cursor: pointer;
    padding: 0.5rem;
    background-color: #F2CF7F;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  
  .lbl-toggle .arrow {
    float: right;
    transition: transform 0.3s;
  }
  
  .lbl-toggle.active .arrow {
    transform: rotate(180deg);
  }
  
  .collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }
  
  .content-inner {
    padding: 1rem;
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }