.gantt-entry {
  overflow: hidden;
  display: flex;
  align-self: center;
  justify-content: space-between;

  height: 32px;
  padding: 0 10px;

  font-size: 14px;
  line-height: 32px;

  border-bottom: solid 1px #d9dfe2;

  &:hover {
    .app-delete-button-icon {
      opacity: 1;
    }
  }

  .entry-item {
    cursor: pointer;
    width: 100%;
    padding-left: 5px;

    &:hover {
      background: #fff;
    }
  }

  .app-delete-button-icon {
    cursor: pointer;

    position: relative;
    top: 4px;

    margin-left: 5px;

    opacity: 0;
  }

  .item-icon {
    position: relative;
    top: 3px;
    margin-right: 5px;
    margin-left: 5px;
  }
}
