.dropdown-group {
  margin-bottom: 8px;
}

.dropdown-menu.show-arrow {
  --left: 2rem;
  &:after {
    position: absolute;
    content: "";
    transform: rotate(45deg);
    top: -2px;
    left: var(--left);
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 4px;
    z-index: -1;
    border: 1px solid $color-border;
  }
  &:before {
    position: absolute;
    content: "";
    // transform: rotate(45deg);
    top: 3px;
    left: var(--left);
    width: 16px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px 4px 0 0;
    z-index: 1;
  }
}

.dropdown-content {
  min-width: 220px;
  max-width: 500px;
  max-height: clamp(100px, calc(100vh - 200px), calc(100vh - 200px));
  overflow-y: auto;
  border: 1px solid $color-border;

  label {
    padding: 8px 16px;
    display: flex;
    border-bottom: 1px solid $color-border-light;
    color: $color-text;
    font-weight: 500;
  }
  .dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    padding: 8px 16px;
    color: $color-text;
    &:hover {
      background-color: $primary-light-gray;
      color: $color-heading;
    }
  }
}
