.tai-expandable-container {
    margin-bottom: 1em;
}

.tai-toggle-header {
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-bottom: 0.5em;
}

.tai-toggle-arrow {
    margin-right: 10px;
    font-size: 1.5em;
}

.tai-toggle-title {
    font-weight: bold;
}

.tai-expandable {
    transition: max-height 0.3s ease;
    overflow: hidden;
    max-height: 0;
}

.tai-expandable.expanded {
    max-height: 1000px; /* Adjust as needed */
}

.tai-expandable.collapsed {
    max-height: 0;
}
