/* common prefixes for case fields */
.nook-case .nook-urgency::before {
    content: 'Urgency: ';
}

.nook-case .nook-case-created-date::before {
    content: 'Added: ';
}

.nook-case .nook-case-creator::before {
    content: 'By: ';
}

.nook-case .nook-case-projects {
  display: flex;
  flex-flow: row wrap;
  gap: 0.5rem;
  align-items: center;
  --nook-icon-color: var(--crm-c-primary);
}

.nook-case .nook-case-projects::before {
  content: 'Projects: ';
}

.nook-case .nook-case-current-stage {
    /* font-weight: bold; */
}

.nook-case .nook-case-current-stage::before {
    content: 'Current stage: ';
    /* font-weight: normal; */
}

/* nook-case-header is a page header with case details - it specifies sizings */
.nook-case-header .nook-case-header-details {
    flex-grow: 1;
    font-size: 0.9rem;
}

.nook-case-header .nook-case-header-details>div {
    gap: 1rem;
}

.nook-case-header .nook-case-number {
    font-size: 1.25rem;
    color: var(--crm-c-primary);
    margin-left: 1.5rem;
    margin-right: 1rem;
}

.nook-case-header .nook-case-creator {
    color: var(--nook-blue-grey);
}

/* nook-search-cap-header is a little page subheader that fits on top of a searchkit display */
.nook-search-cap-header {
    width: 100%;
    background-color: var(--nook-grey-dark);
    margin-bottom: 0;
    padding: 1rem;
    border-radius: 1rem 1rem 0 0;
    justify-content: space-between;
    gap: 1rem;
}

.nook-search-cap-header .nook-search-title {
    font-weight: bold;
    font-size: 1.25rem;
    flex: 1 1 auto;
}

.nook-search-cap-header+*>.crm-search-display>.form-inline {
    background-color: var(--nook-grey-dark);
    padding: 0 !important;
}