.cont {
  display: flex;
  width: 100%;
  height: 100%;
}

.sect {
  height: 100%;
}

.sect-title {
  color: #09F;
}

.sect-ops {
  cursor: pointer;
}
.sect-ops.add {
  color: #329b46;
}
.sect-ops.delete {
  color: #D00;
}

.sect-list {
  width: 200px;
  height: 200px;
  overflow: auto;
}

.sect-list-item {
  overflow: hidden;
  text-overflow: ellipsis;
}
.sect-list-item.selected {
  background-color: #66F;
}