.nova-dialogs-option-select-dialog .nova-header {
  display: flex;
  gap: 10px;
  box-sizing: border-box;
  align-items: center;
  margin-bottom: 20px;
}
.nova-dialogs-option-select-dialog .nova-header .nova-header-text-container {
  display: inline-block;
  width: calc(100% - 60px);
}
.nova-dialogs-option-select-dialog .nova-header .nova-header-text-container .nova-header-title {
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}
.nova-dialogs-option-select-dialog .nova-header .nova-header-text-container .nova-header-record-description {
  color: gray;
}
.nova-dialogs-option-select-dialog .nova-table-selection-row-container {
  flex-direction: column;
  justify-content: space-between;
}
.nova-dialogs-option-select-dialog .nova-table-selection-row-container .nova-table-selection-row {
  display: flex;
  padding: 5px 0;
  cursor: pointer;
}
.nova-dialogs-option-select-dialog .nova-table-selection-row-container .nova-table-selection-row.disabled {
  opacity: 0.5;
  cursor: default;
}
.nova-dialogs-option-select-dialog .nova-table-selection-row-container .nova-table-selection-row.disabled:hover {
  background-color: inherit;
}
.nova-dialogs-option-select-dialog .nova-table-selection-row-container .nova-table-selection-row.nova-selected {
  border: 1px solid var(--borderColorHover);
  background-color: var(--bgColorHover);
}
.nova-dialogs-option-select-dialog .nova-table-selection-row-container .nova-table-selection-row .nova-table-selection-row-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  padding-right: 5px;
  font-weight: bold;
}
.nova-dialogs-option-select-dialog .nova-table-selection-row-container .nova-table-selection-row .nova-table-selection-row-icon-container .nova-table-selection-row-icon {
  border-style: solid;
  border-color: var(--fcContent);
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(315deg);
  margin-bottom: 2px;
}
.nova-dialogs-option-select-dialog .nova-table-selection-row-container .nova-table-selection-row .nova-table-selection-row-text-container .nova-table-selection-row-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
}
.nova-dialogs-option-select-dialog .nova-table-selection-row-container .nova-table-selection-row .nova-table-selection-row-text-container .nova-table-selection-row-text {
  font-size: 12px;
  line-height: 20px;
}
.nova-dialogs-option-select-dialog .nova-option-selection-dialog-content {
  padding-bottom: 1em;
}
