.collapsible-trigger { display: flex; overflow: hidden; width: 100%; box-sizing: border-box; flex-direction: row; align-items: center; justify-content: space-between; padding: 0.5rem; border: 1px solid var(--color-border); border-radius: 0; background-color: transparent; color: var(--color-text); font-family: var(--font-ui); font-size: 0.875rem; outline: none; text-align: left; cursor: pointer; } .collapsible-trigger:focus-visible { border-color: var(--color-primary); } .collapsible-trigger:hover { background: var(--color-surface); } .collapsible-content { display: contents; } .collapsible-expand-icon { width: 1rem; height: 1rem; fill: none; stroke: var(--color-muted); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }