/* Expandable Sections */
.expandable-section {
    margin: 24px 0;
    border: 1px solid var(--color-border, #e2e8f0);
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-surface, #ffffff);
}

.expandable-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
    background: var(--color-bg-secondary, #f8fafc);
}

.expandable-section-header:hover {
    background: var(--color-accent-light, #eef2ff);
}

.expandable-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text, #0f172a);
    display: flex;
    align-items: center;
    gap: 10px;
}

.expandable-section-icon {
    width: 20px;
    height: 20px;
    color: var(--color-accent, #6366f1);
}

.expandable-section-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--color-text-secondary, #475569);
}

.expandable-section-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.expandable-section.expanded .expandable-section-toggle svg {
    transform: rotate(180deg);
}

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

.expandable-section.expanded .expandable-section-content {
    max-height: 2000px; /* Adjust based on content */
}

.expandable-section-inner {
    padding: 20px;
}

/* Default collapsed sections */
.expandable-section:not(.expanded) .expandable-section-toggle-text::after {
    content: 'Show more';
}

.expandable-section.expanded .expandable-section-toggle-text::after {
    content: 'Show less';
}

/* Dark mode */
[data-theme="dark"] .expandable-section {
    background: var(--color-surface, #14141f);
}

[data-theme="dark"] .expandable-section-header {
    background: var(--color-bg, #0a0a0f);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .expandable-section-header {
        padding: 14px 16px;
    }
    
    .expandable-section-title {
        font-size: 0.9375rem;
    }
    
    .expandable-section-inner {
        padding: 16px;
    }
}
