:host {
  position: fixed;
  z-index: 1;
  width: 100vw;

  &.confluence {
    top: 56px;
  }

  .note {
    overflow: hidden;
    display: flex;
    gap: 10px;
    align-items: center;

    height: 40px;
    padding: 0 5px;

    color: #fff;

    // opacity: 0;
    // height: 0;
    opacity: 0.6;
    background-color: var(--color-gray-666);

    transition: all 0.2s ease-out;

    .text {
      overflow: hidden;
      display: flex;
      flex: 1;
      justify-content: center;

      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .remove-icon {
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    // &.expanded {
    //     opacity: 0.6;
    //     height: 40px;
    // }
  }
}
