.wrapper {
  display: flex;
  flex-direction: column;

  .label {
    margin-bottom: 3px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-gray-888);
  }

  .button {
    cursor: pointer;
    display: flex;
    width: fit-content;

    .text {
      color: var(--chat-button-color);
    }
  }

  .button.disabled {
    pointer-events: none;
    cursor: unset;

    .text {
      color: var(--color-gray-888);
    }
  }
}
