SingleSelectInput {
  position: relative;
  flex-grow: 1;
  overflow: visible;

  &.open {
    z-index: 1001;
  }

  .button {
    align-items: center;
    flex-grow: 1;
    background-color: #888;
    border-radius: 4px;
    margin-top: 4px;
    padding: 4px 8px;
    gap: 4px;

    &.active {
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
    }

    .selected {
      font-weight: light;
      font-size: 18px;
    }

    .expand {
      font-size: 16px;
    }
  }

  .options {
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 1000;
    padding: 4px;
    flex-direction: column;
    background-color: #888;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    max-height: 300px;
    overflow: scroll;

    > label {
      font-weight: light;
      font-size: 20px;
      border-radius: 4px;
      padding: 2px;

      &:hover {
        background-color: darken(#888, 10%);
      }
    }
  }
}
