.aicr__ai-message-composer__form {
  display: flex;
  padding: 0.75rem;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid #ccc;
  border-radius: 1.5rem;
  flex-grow: 1;

  .aicr__ai-message-composer__round-button {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 9999px;

    transition: background-color 0.1s ease-in-out;

    > span {
      font-size: 1.5rem;
    }

    &:hover:not(:disabled) {
      background-color: #e8e8e8;
    }

    &:disabled {
      cursor: not-allowed;
      opacity: 0.5;
    }

    &[aria-pressed='true'] {
      background-color: #d1eaff;
    }
  }

  .aicr__ai-message-composer__text-input {
    all: unset;
    flex-grow: 1;
    font-size: 16px;
    padding-inline: 0.25rem;
  }

  .aicr__ai-message-composer__select {
    all: unset;
    display: flex;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    padding: 0.5rem 1.25rem 0.5rem 1rem;

    background-color: transparent;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' height='10px' width='15px'%3E%3Ctext x='0' y='10' fill='black'%3E%E2%96%BE%3C/text%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 0.75rem 0.75rem;
    background-position-x: calc(100% - 5px);
    background-position-y: center;
    background-clip: border-box;
  }
}
