.activities {
  overflow: hidden;
  flex: 1;
  font-size: 16px;

  .activities-bar {
    overflow: auto;
    align-items: start;
    max-height: 85vh;

    .type {
      font-size: 10px;
      color: #707070;
    }
  }
}

.menu-item-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-right: 5px;

  .menu-item-recent {
    overflow: hidden;
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: flex-start;

    margin-bottom: 15px;
    padding-top: 0;
    padding-bottom: 0;

    text-align: start;

    .icon {
      display: flex;
      width: 16px;
      height: 16px;
    }
  }

  .menu-item-recent-icon-task {
    display: flex;
    align-self: center;
    width: 16px;
    height: 16px;
  }

  .menu-item-recent-link {
    overflow: hidden;

    padding-left: 3px;

    font-size: 12px;
    color: var(--color-gray-666);
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-item-recent-icon-close {
    cursor: pointer;
    position: relative;
    height: min-content;
    opacity: 0;
  }

  &:hover {
    .menu-item-recent-icon-close {
      opacity: 1;
    }
  }
}

.menu-item-button-more {
  cursor: pointer;
  user-select: none;
  user-select: none;
  user-select: none;
  user-select: none;

  display: flex;
  align-items: center;

  width: 100%;
  margin-bottom: 10px;

  font-size: 12px;
  color: var(--color-gray-666);
}

app-cmf-doodle-icon {
  display: flex;
}
