:global(.ui-group) {
  align-items: center;
  align-self: stretch;
  box-sizing: border-box;
  display: inline-flex;
  flex-grow: 0;
  overflow: hidden;
  position: relative;
  max-width: 100%;
  box-shadow: inset 0 0 0 1px currentColor;
  &:before {
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px currentColor;
    content: '';
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: var(--z-index-2);
  }
  &[data-state~='block'] {
    display: flex;
    flex-grow: 1;
    max-width: 100%;
  }
}
