.container {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 100%;
  min-width: 0;
  width: auto;
  flex: 0 0 auto;
}

.container > * {
  min-width: 0;
}

.triggerSlot {
  display: flex;
  align-items: stretch;
  min-width: 0;
  width: auto;
  flex: 0 0 auto;
}

.triggerSlot > * {
  min-width: 0;
}

.fullWidth,
.fillTrigger {
  width: 100%;
  flex: 1 1 auto;
}

.fullWidth > *,
.fillTrigger > * {
  width: 100%;
  min-width: 0;
}

.content {
  position: fixed;
  border: 1px solid var(--color-border-subtle);
  background-color: var(--color-bg-surface);
  color: var(--color-fg-default);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xxs);
  z-index: var(--z-popover);
  overflow: auto;
  box-shadow: var(--shadow-md);
}

.content[hidden] {
  display: none;
}

.chevronHeader {
  color: var(--color-navbar-fg-muted);
}
