/* SLT Summarize - Minimize/Toggle Styles */

.sltsummarize_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.sltsummarize_toggle-btn {
    background: #e8edf2;
    border: 1px solid #d0d5dd;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1;
    width: 32px;
    height: 32px;
    padding: 0;
    color: #3c434a;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s ease, color 0.15s ease;
}

.sltsummarize_toggle-btn:hover {
    background: #d0d7e0;
    color: #1d2327;
}

.sltsummarize_toggle-icon {
    display: inline-block;
    transition: transform 0.2s ease;
}

.sltsummarize_content {
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    max-height: 2000px;
    opacity: 1;
}

.sltsummarize_content.collapsed {
    display: none;
}
