.nova-search-form {
  display: grid;
  grid-template-columns: repeat(var(--nova-search-form-grid), minmax(0, 1fr));
  gap: 16px;
  height: -moz-fit-content;
  height: fit-content;
  font-size: var(--el-font-size-base);
}
.nova-search-form__operation {
  grid-column: var(--nova-search-form-grid)/span 1;
  text-align: right;
}
.nova-search-form__operation--toggle {
  width: 32px;
}
.nova-search-form__operation--arrow {
  transform: rotate(90deg);
}

.nova-search-form-item {
  display: flex;
  align-items: center;
}
.nova-search-form-item .item-label {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-align: right;
}
.nova-search-form-item .item-content {
  flex: 1;
}
.nova-search-form-item .item-content .full-width {
  width: 100%;
  box-sizing: border-box;
}

.nova-search-form-item-label__text-ellipsis {
  display: inline-block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}