.angie-expandable-item-fe04c4f2 {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    background: #fff;
    overflow: hidden;
    display: block !important; /* Ensure visibility */
    opacity: 1 !important;
}

.angie-expandable-header-fe04c4f2 {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    transition: background 0.3s ease;
}

.angie-expandable-header-fe04c4f2:hover {
    background: #f1f1f1;
}

.angie-expandable-title-fe04c4f2 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.angie-expandable-icon-fe04c4f2 {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.angie-expandable-item-fe04c4f2.is-open .angie-expandable-icon-fe04c4f2 {
    transform: rotate(180deg);
}

.angie-expandable-content-fe04c4f2 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.angie-expandable-content-inner-fe04c4f2 {
    padding: 20px;
    border-top: 1px solid #ddd;
}