.app-recent-pages-menu {
  cursor: pointer;

  position: relative;
  top: 3px;

  font-size: 14px;
  font-weight: 400;
  text-decoration: none;

  &.open {
    .app-recent-dropdown {
      display: block;
    }
  }

  .app-recent-dropdown {
    display: none;
  }

  .app-icon-recent {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
  }

  ul,
  li {
    margin: 0;
    padding: 0;

    font-weight: normal;
    color: #000;
    text-align: left;
    list-style: none;
  }

  ul {
    position: absolute;
    z-index: 100;
    top: 100%;
    left: 0;

    padding: 8px 0;

    background: #fff;
    border-radius: 4px;
    box-shadow:
      0 2px 4px -1px rgb(0 0 0 / 20%),
      0 4px 5px 0 rgb(0 0 0 / 14%),
      0 1px 10px 0 rgb(0 0 0 / 12%);
  }

  li {
    padding: 8px 16px;
    line-height: 18px;

    &:hover {
      background: rgb(0 0 0 / 4%);
    }

    .recent-link {
      text-decoration: none;

      .title {
        color: rgb(0 0 0 / 87%);
      }

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

  .app-cleaned-label {
    cursor: auto;
    padding: 8px 16px;
    line-height: 18px;
  }

  .app-clean-recent-button {
    display: flex;
    place-items: center baseline;

    padding: 8px 16px;

    line-height: 18px;

    .recent-button-icon {
      position: relative;
      top: 3px;
    }

    &:hover {
      background: rgb(0 0 0 / 4%);
    }
  }
}
