#customScroll::-webkit-scrollbar {
  width: 5px;
}

#customScroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}

#customScroll::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

#customScroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.tokenField:focus-within {
  .title {
    color: #2C2C2C;
  }
}

.tokenField {
  display: flex;
  width: 100%;
  gap: 8px;
  align-items: center;
  justify-content: space-between;

  .title {
    font-weight: 600;
    color: #2C2C2C;

  }

  .tokenFieldContainerFull {
    // cursor: pointer;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: space-between;

    .userSearchWrapper {
      display: flex;
      color: var(--title);
      align-items: center;
      justify-content: flex-start;
      gap: 8px;
      position: relative;
      width: 100%;
      cursor: pointer;


      .fullContainer,
      .container {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        border: 1px solid ;
        height: 38px;
        //padding: 12px 5px;
        border-radius: 4px;
        background-color: white;

        .downArrow {
          margin-left: 15px;
          margin-top: 2px;
        }

        select {
          width: 60%;
          background-color: white;
          height: 30px;
          border-radius: 4px;
          margin: 10px auto;
          display: flex;
        }

        .input {
          border-radius: 8px;
          width: 100%;
          height: 100%;
          padding: 0px 10px;
          border: none;
        }

        input:focus {
          background-color: white;
          width: 60%;
          border-radius: 8px;
          height: 100%;
          padding: 0px 10px;
          border: none;
          outline: none;
        }
      }

      .container {
        display: flex;
        justify-content: flex-start;
        border: 1px solid rgb(14, 201, 234);
        border-radius: 8px;
        height: 48px;
        // box-shadow: 0px 1px 24px rgb(0 0 0 / 8%);
      }

      .fullContainer:focus-within,
      .container:focus-within {
        background-color: white;
        border: 1px solid rgb(14, 201, 234);

        .input {
          background-color: white;
        }
      }

      //  box-shadow: 0px 1px 24px rgb(0 0 0 / 8%);
    }
  }

 

}

.innerContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-direction: row;
  margin: auto;
  width: 100%;
  gap: 8px;

  .mailContainer {
    display: flex;
    padding: 6px 6px;
    gap: 4px;
    /* min-width: 160px; */
    width: fit-content;
    /* justify-content: space-between; */
    flex-direction: row;
    align-items: center;
    background-color: #ededec;
    background-color: lightblue;
    border-radius: 80px;

    .capitalLetter {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background-color:rgb(38, 226, 232);
      color: black;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    
  }
}

.UserListDropDown {
  max-height: 300px;
  overflow-y: scroll;
  position: absolute;
  z-index:1000;
  border: 1px solid lightblue;
  cursor: pointer;
  background-color: white;
  background: #ffffff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  width: 100%;
  min-width: 300px;
  top: 40px;
  left: 0px;

  .noResultInDropdown {
    padding: 12px;
    border: 1px solid lightblue;
  }

  .optionList,
  .optionListHovered {
    background-color: white;
    display: flex;
    align-items: center;
    border: none;
    padding: 6px 6px;
    gap:18px;
    margin-top: 1px;
    font-size: 16px;

    .capitalLetter {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: rgb(37, 229, 216);
      color: black;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  }

  .optionList:hover {
    background-color: lightblue;
  }

  .optionListHovered {
    background-color: lightblue;
  }

  .userOption {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 10px;
  }
}
