.jrx-collapsible-container {
    position: relative;
    margin-bottom: 20px;
}

.jrx-collapsible-content {
    position: relative;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.jrx-collapsible-content.collapsed {
    position: relative;
}

.jrx-collapsible-content.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    pointer-events: none;
}

.jrx-collapsible-content.no-fade.collapsed::after {
    display: none;
}

.jrx-collapsible-ellipsis {
    position: absolute;
    bottom: 0;
    right: 0;
    background: white;
    padding: 0 5px;
    font-weight: bold;
    color: #666;
}

.jrx-collapsible-toggle-btn {
    margin-top: 15px;
}

.jrx-collapsible-toggle-btn button {
    padding: 10px 20px;
    font-size: 22px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.jrx-collapsible-toggle-btn button:focus {
    outline: 2px solid #2271b1;
    outline-offset: 2px;
}