/* /Features/Allocations/AllocationCalendarView.razor.rz.scp.css */
.calendar-toolbar[b-gjwggh6qr3] {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 16px 16px 0;
}

.calendar-user-selector[b-gjwggh6qr3] {
  width: 360px;
}

[b-gjwggh6qr3] .calendar-view-select {
  width: 120px;
}
/* /Features/Allocations/AllocationTable.razor.rz.scp.css */
.allocation-potential-pct[b-69as7182jw] {
  color: var(--mud-palette-text-secondary);
  font-size: 0.85em;
  opacity: 0.7;
}
/* /Features/Allocations/PersonalCalendarView.razor.rz.scp.css */
/* Calendar Container */
.calendar-container[b-7bjkst7v99] {
    padding: 0 16px;
}

/* Calendar Header */
.calendar-header[b-7bjkst7v99] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

/* Calendar Grid */
.calendar-grid[b-7bjkst7v99] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background-color: var(--mud-palette-lines-default, #e0e0e0);
    border: 1px solid var(--mud-palette-lines-default, #e0e0e0);
    border-radius: 4px;
    overflow: hidden;
}

/* Day Header Cells */
.calendar-day-header[b-7bjkst7v99] {
    padding: 8px 4px;
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
    background-color: var(--mud-palette-surface, #fff);
    color: var(--mud-palette-text-secondary, #666);
}

/* Day Cells */
.calendar-day[b-7bjkst7v99] {
    min-height: 80px;
    padding: 4px 6px;
    background-color: var(--mud-palette-surface, #fff);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: background-color 0.15s ease;
    position: relative;
}

.calendar-day:hover[b-7bjkst7v99] {
    filter: brightness(0.95);
}

.calendar-day__top[b-7bjkst7v99] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.calendar-day__number[b-7bjkst7v99] {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1;
    color: var(--portal-text-primary);
}

[b-7bjkst7v99] .calendar-day__potential-icon {
    font-size: 14px !important;
    color: var(--portal-alloc-potential, #c06464);
    opacity: 0.8;
}

.calendar-day__percentage[b-7bjkst7v99] {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: auto;
    text-align: center;
    opacity: 0.9;
    color: var(--portal-text-primary);
}

/* Weekend styling */
.calendar-day--weekend[b-7bjkst7v99] {
    background-color: var(--portal-alloc-light-gray, #f5f5f5);
}

/* Public holiday for the user's country: same gray as a weekend, with a tooltip via the
   day cell's title attribute carrying the holiday name. */
.calendar-day--holiday[b-7bjkst7v99] {
    background-color: var(--portal-alloc-light-gray, #f5f5f5);
}

/* Active leave / absence: shared leave colour from the BY PERSON / BY PROJECT views so
   the visual language stays consistent across tabs. */
.calendar-day--leave[b-7bjkst7v99] {
    background-color: var(--portal-alloc-leave, rgb(100, 170, 255));
}

/* Today highlight */
.calendar-day--today[b-7bjkst7v99] {
    outline: 2px solid var(--mud-palette-primary, #1a1a1a);
    outline-offset: -2px;
    z-index: 1;
}

.calendar-day--today .calendar-day__number[b-7bjkst7v99] {
    font-weight: 700;
    color: var(--mud-palette-primary, #1a1a1a);
}

/* Days outside current month */
.calendar-day--other-month[b-7bjkst7v99] {
    opacity: 0.4;
}

/* Popover */
.calendar-popover__allocation[b-7bjkst7v99] {
    padding: 4px 0;
    border-bottom: 1px solid var(--mud-palette-lines-default, #e0e0e0);
}

.calendar-popover__allocation:last-child[b-7bjkst7v99] {
    border-bottom: none;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
    .calendar-day[b-7bjkst7v99] {
        min-height: 60px;
        padding: 3px 4px;
    }

    .calendar-day__number[b-7bjkst7v99] {
        font-size: 0.75rem;
    }

    .calendar-day__percentage[b-7bjkst7v99] {
        font-size: 0.7rem;
    }

    .calendar-day-header[b-7bjkst7v99] {
        font-size: 0.75rem;
        padding: 6px 2px;
    }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .calendar-day[b-7bjkst7v99] {
        min-height: 48px;
        padding: 2px 3px;
    }

    .calendar-day__number[b-7bjkst7v99] {
        font-size: 0.7rem;
    }

    .calendar-day__percentage[b-7bjkst7v99] {
        font-size: 0.6rem;
        opacity: 0.7;
    }

    .calendar-day-header[b-7bjkst7v99] {
        font-size: 0.7rem;
        padding: 4px 2px;
    }

    .calendar-header[b-7bjkst7v99] {
        flex-wrap: wrap;
    }
}
/* /Features/Allocations/YearCalendarView.razor.rz.scp.css */
.year-calendar[b-k872he2u32] {
    padding: 0 16px;
}

.year-calendar__header[b-k872he2u32] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.year-calendar__grid[b-k872he2u32] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Mini month card */
.mini-month[b-k872he2u32] {
    cursor: pointer;
    border: 1px solid var(--mud-palette-lines-default, #e0e0e0);
    border-radius: 6px;
    padding: 8px;
    transition: box-shadow 0.15s;
}

.mini-month:hover[b-k872he2u32] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.mini-month__title[b-k872he2u32] {
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 4px;
    color: var(--portal-text-primary);
}

.mini-month__grid[b-k872he2u32] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
}

.mini-month__day-header[b-k872he2u32] {
    text-align: center;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--mud-palette-text-secondary, #999);
    padding: 2px 0;
}

/* Saturday / Sunday column headers picked out in red so the weekend boundary
   reads at a glance — pairs with the gray weekend day cells below. */
.mini-month__day-header--weekend[b-k872he2u32] {
    color: var(--mud-palette-error, #c44141);
}

.mini-month__day[b-k872he2u32] {
    text-align: center;
    font-size: 0.65rem;
    padding: 2px 0;
    border-radius: 2px;
    color: var(--portal-text-primary);
}

.mini-month__day--weekend[b-k872he2u32] {
    background-color: var(--portal-alloc-light-gray, #f5f5f5);
    color: var(--mud-palette-text-secondary, #999);
}

/* Public holiday for the user's country: same gray as a weekend, with a tooltip
   carrying the holiday name. Matches the Month view's holiday treatment. */
.mini-month__day--holiday[b-k872he2u32] {
    background-color: var(--portal-alloc-light-gray, #f5f5f5);
}

/* Active leave / absence: shared leave colour. */
.mini-month__day--leave[b-k872he2u32] {
    background-color: var(--portal-alloc-leave, rgb(100, 170, 255));
    color: var(--portal-text-primary);
}

.mini-month__day--today[b-k872he2u32] {
    font-weight: 700;
    outline: 1.5px solid var(--mud-palette-primary, #1a1a1a);
    outline-offset: -1px;
    color: var(--mud-palette-primary, #1a1a1a);
}

.mini-month__day--other[b-k872he2u32] {
    opacity: 0.25;
}

[b-k872he2u32] .mini-month__tooltip {
    font-size: 0.75rem;
    line-height: 1.4;
}

/* Small screens: 2 columns */
@media (max-width: 768px) {
    .year-calendar__grid[b-k872he2u32] {
        grid-template-columns: repeat(2, 1fr);
    }

    .mini-month__day[b-k872he2u32] {
        font-size: 0.55rem;
    }
}

/* Extra small: 1 column */
@media (max-width: 480px) {
    .year-calendar__grid[b-k872he2u32] {
        grid-template-columns: 1fr;
    }
}
/* /Features/Competence/Competence.razor.rz.scp.css */
.competence-page[b-ditp81ukkk] {
  border-radius: 24px;
  background: linear-gradient(
    140deg,
    var(--portal-competence-page-grad-start),
    var(--portal-competence-page-grad-end)
  );
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.competence-avatar[b-ditp81ukkk] {
  box-shadow: var(--portal-competence-avatar-shadow);
}

.competence-title[b-ditp81ukkk] {
  font-weight: 600;
}

.competence-tags .mud-chip[b-ditp81ukkk] {
  font-weight: 600;
  border-radius: 999px;
}

.modern-section[b-ditp81ukkk] {
  border-radius: 20px;
  border: 1px solid var(--portal-border-subtle);
  background-color: var(--portal-bg-elevated);
  box-shadow: var(--portal-competence-section-shadow);
}

.modern-entity-card[b-ditp81ukkk] {
  border-radius: 20px;
  border: 1px solid var(--portal-border-subtle);
  background: linear-gradient(
    160deg,
    var(--portal-competence-card-grad-start),
    var(--portal-competence-card-grad-end)
  );
  box-shadow: var(--portal-competence-card-shadow);
}

.skill-list .mud-list-item[b-ditp81ukkk] {
  border-radius: 14px;
  background-color: var(--portal-competence-accent-bg);
  margin-bottom: 0.6rem;
}

.skill-list .mud-list-item:last-child[b-ditp81ukkk] {
  margin-bottom: 0;
}

.section-divider[b-ditp81ukkk] {
  margin: 1.5rem 0;
}

.skill-tree[b-ditp81ukkk] {
  width: 100%;
}

.skill-tree-root[b-ditp81ukkk],
.skill-tree-children[b-ditp81ukkk] {
  list-style: none;
  margin: 0;
  padding-left: 0;
  width: 100%;
}

.skill-tree-children[b-ditp81ukkk] {
  margin-top: 0.6rem;
  padding-left: 1.2rem;
  border-left: 2px solid var(--portal-competence-tree-border);
}

.skill-tree-item[b-ditp81ukkk] {
  width: 100%;
}

.skill-tree-row[b-ditp81ukkk] {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.75rem;
  padding: 0.55rem 0.9rem;
  border-radius: 14px;
  background-color: var(--portal-competence-row-bg);
  box-shadow: var(--portal-competence-row-shadow);
  width: 100%;
  transition:
    background-color 0.15s ease,
    box-shadow 0.15s ease;
}

.skill-tree-details[b-ditp81ukkk] {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1 1 100%;
  min-width: 0;
}

.skill-tree-actions[b-ditp81ukkk] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
}

.skill-tree-name[b-ditp81ukkk] {
  font-weight: 600;
}

.skill-tree-source[b-ditp81ukkk] {
  font-size: 0.75rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background-color: var(--portal-competence-source-bg);
  color: var(--portal-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.skill-chip-group[b-ditp81ukkk] {
  gap: 0.75rem;
}

.skill-chip-wrapper[b-ditp81ukkk] {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.action-row[b-ditp81ukkk] {
  flex-wrap: wrap;
}

.subtle-top-spacing[b-ditp81ukkk] {
  display: block;
  margin-top: 0.4rem;
}

.section-offset[b-ditp81ukkk] {
  margin-top: 2rem;
}

.user-row-selected[b-ditp81ukkk] {
  background-color: var(--portal-competence-selected-bg);
}

.skill-edit-panel[b-ditp81ukkk] {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background-color: var(--portal-competence-accent-bg);
  width: 100%;
}

.skill-edit-actions[b-ditp81ukkk] {
  margin-top: 0.5rem;
}

.skill-edit-area-chips[b-ditp81ukkk] {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.user-skill-manager[b-ditp81ukkk] {
  border-radius: 16px;
  border: 1px solid var(--portal-border-subtle);
  background-color: var(--portal-bg-elevated);
  box-shadow: var(--portal-competence-manager-shadow);
}

.user-skill-manager .mud-list-item[b-ditp81ukkk] {
  border-radius: 12px;
  background-color: var(--portal-competence-accent-bg);
  margin-bottom: 0.5rem;
}

.user-skill-manager .mud-list-item:last-child[b-ditp81ukkk] {
  margin-bottom: 0;
}

.user-skill-list .mud-list-item[b-ditp81ukkk] {
  border-radius: 16px;
  border: 1px solid var(--portal-border-subtle);
  margin-bottom: 0.75rem;
  background-color: var(--portal-bg-elevated);
  box-shadow: var(--portal-competence-skill-shadow);
}

.user-skill-list .mud-list-item:last-child[b-ditp81ukkk] {
  margin-bottom: 0;
}

.user-skill-summary[b-ditp81ukkk] {
  gap: 0.5rem;
}
/* /Features/PeerReview/Admin/PeerReviewAdminIndex.razor.rz.scp.css */
#btnCreateNewReview[b-vi6n4qacz8] {
  float: right;
}

.admin-wrapper h3[b-vi6n4qacz8] {
  margin-bottom: 15px;
}

.review-table[b-vi6n4qacz8] {
  margin-bottom: 50px;
}

.review-table a[b-vi6n4qacz8] {
  color: var(--portal-primary-link);
}

.review-table th[b-vi6n4qacz8],
td[b-vi6n4qacz8] {
  font-family: var(--font-text);
}

.review-table th[b-vi6n4qacz8] {
  font-weight: normal;
  background: var(--portal-table-header-bg);
}

.review-table--active th[b-vi6n4qacz8] {
  background: var(--portal-table-header-active);
}

.rowlink[b-vi6n4qacz8]::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5em;
}

.edit-peer-review[b-vi6n4qacz8] {
  cursor: pointer;
}
/* /Features/PeerReview/Admin/PeerReviewAdminReview.razor.rz.scp.css */
.back-link[b-q0rl8jbh1z] {
  color: var(--portal-primary-link);
  margin-bottom: 10px;
  display: block;
}

.admin-wrapper h3[b-q0rl8jbh1z] {
  margin-bottom: 10px;
  margin-top: 10px;
}

.admin-wrapper h2[b-q0rl8jbh1z] {
  color: var(--portal-text-primary);
  margin-top: 40px;
  margin-bottom: 20px;
}

.feedback-list[b-q0rl8jbh1z] {
  border: 1px solid var(--portal-feedback-border);
}

.feedback-list li[b-q0rl8jbh1z] {
  padding: 8px 12px;
  font-size: 20px;
}

.feedback-list li:nth-child(odd)[b-q0rl8jbh1z] {
  background: var(--portal-feedback-list-odd);
}

.review-details[b-q0rl8jbh1z] {
  display: flex;
  justify-content: space-between;
}

.review-details table[b-q0rl8jbh1z] {
  margin-top: 25px;
  line-height: 1;
}

/* Cell-level font-size + line-height so the global `table tr td` rule in
   styles.min.css (which sets font-size: var(--fs-small) and line-height: 18px)
   can't override us through direct cell targeting. */
.review-details th[b-q0rl8jbh1z],
.review-details td[b-q0rl8jbh1z] {
  font-size: 30px;
  line-height: 1;
}

.review-details th[b-q0rl8jbh1z] {
  font-weight: bold;
}

.review-details .review-detail-header[b-q0rl8jbh1z] {
  font-weight: bold;
  padding: 6px 40px 6px 0;
}

.review-details td[b-q0rl8jbh1z] {
  font-weight: normal;
  padding-right: 40px;
}

.peerreview-title[b-q0rl8jbh1z] {
  margin-bottom: 0;
}

.peerreview-date[b-q0rl8jbh1z] {
  color: var(--portal-text-primary);
}

.mdc-form-field > label[b-q0rl8jbh1z] {
  font-size: initial;
}

.peerreview-filter[b-q0rl8jbh1z] {
  float: right;
  width: 250px;
  align-self: center;
}

.peerreview-tabs[b-q0rl8jbh1z] {
  margin-bottom: 50px;
}
/* /Features/PeerReview/Admin/PeerReviewAdminReviewNps.razor.rz.scp.css */
.nps-heading[b-zoul20zlew],
.nps-results > .enps-title[b-zoul20zlew] {
  margin-top: 40px;
}

.nps-heading[b-zoul20zlew] {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.nps-controls[b-zoul20zlew] {
  margin: 0 0 10px 0;
  align-self: flex-end;
}

.nps-results[b-zoul20zlew] {
  clear: both;
  display: flex;
  flex-direction: column;
  color: var(--portal-nps-text);
  margin-bottom: 30px;
  font-family: var(--font-text);
}

.nps-results-data-combined[b-zoul20zlew],
.nps-results-data-country[b-zoul20zlew] {
  display: flex;
  width: 100%;
}

.nps-results-data-total[b-zoul20zlew] {
  background: var(--portal-nps-total-bg);
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.nps-results-score[b-zoul20zlew] {
  color: var(--portal-nps-text);
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  margin-top: -15px;
  display: block;
}

.nps-results-score-text[b-zoul20zlew] {
  color: var(--portal-nps-text);
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
  display: block;
}

.nps-results-data-breakdown[b-zoul20zlew] {
  background: var(--portal-nps-breakdown-bg);
  padding: 20px 35px;
  width: 65%;
}

.score-breakdown-row[b-zoul20zlew] {
  font-size: 24px;
  margin-bottom: 5px;
}

.score-breakdown-row-value[b-zoul20zlew] {
  width: 50px;
  display: inline-block;
  font-weight: 700;
}

.score-breakdown-row-title[b-zoul20zlew] {
  display: inline-block;
  width: 210px;
  font-weight: 400;
}

.score-breakdown-row-info[b-zoul20zlew] {
  font-weight: 300;
}

.nps-score-difference[b-zoul20zlew]::before {
  content: "+";
}

.nps-score-difference-negative[b-zoul20zlew] {
  color: var(--portal-nps-negative);
}

.nps-score-difference-negative[b-zoul20zlew]::before {
  content: "-";
}
/* /Features/PeerReview/Admin/PeerReviewAdminReviewUserResults.razor.rz.scp.css */
.results-heading[b-z39un5jvwt] {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 40px;
}

h2.results-title[b-z39un5jvwt] {
  align-self: flex-end;
}

.review-table[b-z39un5jvwt] {
  position: relative;
}

.review-table a[b-z39un5jvwt] {
  color: var(--portal-primary-link);
}

.review-table th[b-z39un5jvwt],
.review-table td[b-z39un5jvwt] {
  font-family: var(--font-text);
}

.review-table th[b-z39un5jvwt] {
  font-weight: normal;
  background: var(--portal-table-header-bg);
}

.review-table th.total[b-z39un5jvwt] {
  font-weight: bold;
  text-transform: uppercase;
}

.rowlink[b-z39un5jvwt]::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5em; /* don't forget to set the height! */
}

.results-controls[b-z39un5jvwt] {
  float: right;
  margin: 0 0 10px 0;
}
/* /Features/PeerReview/CompanyReviewComponent.razor.rz.scp.css */
.shared-container[b-v2ehip5bvr] {
  width: 100%;
  max-width: 1218px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 50px;
}

.shared-title[b-v2ehip5bvr] {
  font-size: 40px;
  margin-bottom: 40px;
  font-weight: 600;
  color: var(--portal-text-primary);
}

.shared-description[b-v2ehip5bvr] {
  margin-bottom: 40px;
  width: 1188px;
}

.score-button-container[b-v2ehip5bvr] {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin-bottom: 100px;
}

.score-group[b-v2ehip5bvr] {
  display: flex;
  align-items: center;
  position: relative;
}

.score-label[b-v2ehip5bvr] {
  position: absolute;
  top: -2rem;
  width: 100%;
  text-align: center;
  pointer-events: none;
  font-size: calc(min(20px, 2.5vw));
  color: var(--portal-text-primary);
}

.score-button[b-v2ehip5bvr] {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2px;
  border-radius: 8px;
  transition: background-color 0.3s;
  border: 1px solid transparent;
  width: calc(min(106px, 7.5vw));
  height: calc(min(106px, 7.5vw));
  font-size: calc(min(50px, 2.5vw));
  font-weight: 500;
  letter-spacing: -0.5px;
}

.score-button-error-text[b-v2ehip5bvr] {
  color: var(--portal-error);
  font-size: 16px;
}

.score-button.detractor[b-v2ehip5bvr] {
  border-color: var(--portal-score-detractor);
  color: var(--portal-score-detractor);
}

.score-button.passive[b-v2ehip5bvr] {
  border-color: var(--portal-score-passive);
  color: var(--portal-score-passive);
}

.score-button.promoter[b-v2ehip5bvr] {
  border-color: var(--portal-score-promoter);
  color: var(--portal-score-promoter);
}

.score-button.selected.detractor[b-v2ehip5bvr] {
  background-color: var(--portal-score-detractor);
  color: var(--portal-text-on-primary);
}

.score-button.selected.passive[b-v2ehip5bvr] {
  background-color: var(--portal-score-passive);
  color: var(--portal-text-on-primary);
}

.score-button.selected.promoter[b-v2ehip5bvr] {
  background-color: var(--portal-score-promoter);
  color: var(--portal-text-on-primary);
}

.detractor-label[b-v2ehip5bvr] {
  color: var(--portal-score-detractor);
}

.passive-label[b-v2ehip5bvr] {
  color: var(--portal-score-passive);
}

.promoter-label[b-v2ehip5bvr] {
  color: var(--portal-score-promoter);
}

label[b-v2ehip5bvr] {
  display: block;
  margin-bottom: 20px;
  color: var(--portal-text-primary);
}

label[for="score-button-container"][b-v2ehip5bvr] {
  text-align: left;
  font-size: 20px;
  margin-bottom: 50px;
  font-weight: 700;
}

.company-feedback-label[b-v2ehip5bvr] {
  font-size: 16px;
  font-weight: 700;
  margin-top: 50px;
}

.company-feedback-textarea[b-v2ehip5bvr] {
  margin-bottom: 40px;
}

.next-button[b-v2ehip5bvr] {
  position: absolute;
  bottom: 10px;
  right: 0;
}

.likelihood-label[b-v2ehip5bvr] {
  position: absolute;
  top: 100%;
  transform: translateY(10px);
  width: 100%;
  text-align: center;
}

.likelihood-label.not-likely[b-v2ehip5bvr] {
  text-align: left;
}

.likelihood-label.extremely-likely[b-v2ehip5bvr] {
  text-align: right;
}

.satisfaction-section[b-v2ehip5bvr] {
  /* --portal-bg-section flips between white (light) and #1a1a1a (dark) so the
     card reads as an elevated surface against either page background. The
     previous --mud-palette-background-grey token did not flip in dark mode and
     left the card rendering as a light-gray block on the otherwise dark page. */
  background-color: var(--portal-bg-section, #f7f7f7);
  border: 1px solid var(--portal-border);
  border-radius: 8px;
  padding: 24px 32px;
  margin-bottom: 24px;
}

.satisfaction-eyebrow[b-v2ehip5bvr] {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--portal-text-secondary, #666);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.satisfaction-label[b-v2ehip5bvr] {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--portal-text-primary);
  margin-bottom: 24px;
}
/* /Features/PeerReview/Feedback.razor.rz.scp.css */
.shared-container[b-svvp97gg1z] {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 50px;
}

.feedback-hero[b-svvp97gg1z] {
  margin: auto;
  border-radius: 20px;
  background: var(--portal-bg-secondary);
  padding: 21px;
  margin-bottom: 34px;
  display: flex;
  width: 566px;
  height: 270px;
}

.feedback-hero-image-container img[b-svvp97gg1z] {
  width: 166.309px;
  height: 203px;
  margin: 13px 30px 13px 0;
}

.feedback-hero-text h2[b-svvp97gg1z] {
  margin-top: 10px;
  color: var(--portal-feedback-hero-heading);
  font-feature-settings:
    "clig" off,
    "liga" off;
  font-family: var(--font-text);
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 123.5%;
  letter-spacing: 0.25px;
}

.feedback-hero-text p[b-svvp97gg1z] {
  font-family: var(--font-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--portal-text-secondary);
}

.feedback-container h3[b-svvp97gg1z] {
  color: var(--portal-text-primary);
  text-align: center;
  font-family: var(--font-text);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

.feedback-rating-container[b-svvp97gg1z] {
  max-width: 220px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.feedback-rating-score[b-svvp97gg1z] {
  display: flex;
  user-select: none;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 40px;
  border: 1px solid;
  border-radius: 4px;
  box-shadow: var(--portal-feedback-shadow);
}

.feedback-rating-score-thumbsdown[b-svvp97gg1z] {
  border-color: var(--portal-score-detractor);
}

.feedback-rating-score-thumbsup[b-svvp97gg1z] {
  border-color: var(--portal-score-promoter);
}

.feedback-rating-score-selected[b-svvp97gg1z] {
  border-width: 5px;
}

.feedback-content-container[b-svvp97gg1z] {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feedback-content-container label[b-svvp97gg1z] {
  color: var(--portal-text-primary);
  text-align: center;
  font-family: var(--font-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 16px;
}

.feedback-content-container textarea[b-svvp97gg1z] {
  height: 104px;
  width: 523px;
}

.feedback-send-button[b-svvp97gg1z] {
  border-radius: 4px;
  background: var(--portal-feedback-send-bg);
  box-shadow: var(--portal-feedback-shadow);
  display: flex;
  padding: 8px 22px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--portal-feedback-send-text);
  font-feature-settings:
    "clig" off,
    "liga" off;
  font-family: var(--font-text);
  font-size: 15px;
  font-style: normal;
  line-height: 26px;
  letter-spacing: 0.46px;
  text-transform: uppercase;
  margin-top: 26px;
}

.feedback-thanks-container[b-svvp97gg1z] {
  color: var(--portal-text-primary);
  text-align: center;
  font-family: var(--font-text);
  font-size: 20px;
  font-style: normal;
  line-height: normal;
  margin-top: 30px;
}

.feedback-thanks-container p[b-svvp97gg1z] {
  margin-bottom: 20px;
  line-height: 26px;
}
/* /Features/PeerReview/PeerReviewComponent.razor.rz.scp.css */
.shared-container[b-7gtangikmu] {
  margin: 0 auto;
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}

.peerreview-description[b-7gtangikmu] {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 24px;
  margin-bottom: 69px;
}

.peerreview-description-heading[b-7gtangikmu] {
  font-weight: bold;
  text-transform: uppercase;
}

h1[b-7gtangikmu] {
  color: var(--portal-text-primary);
  font-size: 40px;
}

.rating-column[b-7gtangikmu] {
  display: flex;
  flex-direction: column;
  width: 500px;
  justify-content: flex-start;
  gap: 8px;
  flex-shrink: 0;
}

.feedback-column[b-7gtangikmu] {
  min-height: 90px;
  margin: 4px;
  flex: 1;
  padding-left: 1.5rem;
}

.feedback-column label[b-7gtangikmu] {
  font-size: 16px;
  color: var(--portal-text-primary);
  font-style: normal;
  line-height: normal;
}

.feedback-header[b-7gtangikmu] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.feedback-header .info-icon[b-7gtangikmu] {
  margin-left: 2px;
  cursor: pointer;
  position: relative;
}

.feedback-header .info-icon img[b-7gtangikmu] {
  width: 20px;
  height: 20px;
}

.feedback-textarea[b-7gtangikmu] {
  height: 215px;
}

.feedback-textarea[b-7gtangikmu]::placeholder {
  color: var(--portal-text-disabled);
}

.feedback-additional-info[b-7gtangikmu] {
  color: var(--portal-info);
  font-size: 14px;
  padding-left: 8px;
}

.rating-group[b-7gtangikmu] {
  flex: 1;
  display: flex;
  padding: 4px;
  gap: 8px;
}

.rating-group label[b-7gtangikmu] {
  font-size: 16px;
  color: var(--portal-text-primary);
  margin: 4px;
  font-weight: bold;
}

.rating-group div.label-wrapper[b-7gtangikmu],
.rating-group button[b-7gtangikmu] {
  border: 1px solid var(--portal-rating-group-border);
  background-color: var(--portal-rating-group-bg);
  border-radius: 10px;
}

.rating-column[b-7gtangikmu]  .smiley-ratings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.rating-column[b-7gtangikmu]  .smiley {
  background-color: var(--portal-smiley-bg);
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  width: 60px;
  height: 60px;
  padding: 5px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.rating-column[b-7gtangikmu]  .smiley.smiley-selected {
  background-color: var(--portal-smiley-selected);
}

.rating-column[b-7gtangikmu]  .smiley.smiley-disabled:not(.smiley-selected) {
  cursor: default;
  opacity: 0.33 !important;
}

.rating-column[b-7gtangikmu]  .smiley.smiley-disabled.smiley-selected {
  cursor: default;
}

.rating-column[b-7gtangikmu]  .smiley:not(.smiley-selected, .smiley-disabled):hover {
  background-color: var(--portal-smiley-hover);
}

.rating-column[b-7gtangikmu]  .smiley img {
  width: 50px;
  height: 50px;
}

.rating-column[b-7gtangikmu]  .smiley img.rating-deselect {
  display: none;
}

.rating-column[b-7gtangikmu]
  
  .smiley.smiley-selected:not(.smiley-disabled):hover
  img.rating-deselect {
  display: block;
}

.rating-column[b-7gtangikmu]
  
  .smiley.smiley-selected:not(.smiley-disabled):hover
  img.rating-image {
  display: none;
}

.person-card[b-7gtangikmu] {
  width: 1218px;
  display: flex;
  border: 1px solid var(--portal-person-card-border);
  box-shadow: var(--portal-shadow-sm);
  margin-bottom: 1.5rem;
  border-radius: 8px;
  min-height: fit-content;
}

.person-section[b-7gtangikmu]  .person-thumbnail-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  max-height: 300px;
  border-radius: 50%;
  height: 150px;
  width: 150px;
}

.person-section[b-7gtangikmu]  .person-name {
  text-align: center;
  padding: 0.5rem 1rem;
}

.person-section[b-7gtangikmu] {
  min-height: 330px;
  width: 165px;
  align-items: center;
  display: flex;
  padding: 1rem 0 1rem 1rem;
  flex-shrink: 0;
}

.person-section[b-7gtangikmu]  .person-image-and-name {
}

.review-section[b-7gtangikmu] {
  flex: 2.7;
  padding: 1rem;
  display: flex;
  justify-content: flex-start;
  align-self: flex-start;
}

.rating-column[b-7gtangikmu]  .label-wrapper {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 200px;
  padding: 10px;
}

.rating-column[b-7gtangikmu]  .label-wrapper .info-icon {
  flex-shrink: 0;
  position: relative;
  right: auto;
  align-self: center;
}

.rating-column[b-7gtangikmu]  .label-wrapper .info-icon img {
  height: 25px;
  width: 25px;
}

.rating-column[b-7gtangikmu]  .info-icon {
  margin-left: 2px;
  cursor: pointer;
  position: relative;
  visibility: visible;
}

.info-icon-additional-feedback[b-7gtangikmu] {
  margin-top: 10px;
  display: flex;
  align-items: center;
  cursor: default;
}

.info-icon-additional-feedback img[b-7gtangikmu] {
  display: flex;
  align-items: center;
}

.info-icon-hidden[b-7gtangikmu] {
  visibility: hidden;
}

.rating-column[b-7gtangikmu]  .info-icon img {
  width: 20px;
  height: 20px;
}

.rating-column[b-7gtangikmu]  .peerreview-tooltip,
.feedback-column .peerreview-tooltip[b-7gtangikmu] {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--portal-bg-elevated);
  color: var(--portal-text-primary);
  border-radius: 8px;
  width: 400px;
  padding: 10px 15px;
  font-size: 16px;
  box-shadow: var(--portal-shadow-tooltip);
  z-index: 1000;
}

.rating-column[b-7gtangikmu]  .info-icon:hover .peerreview-tooltip,
.feedback-column .info-icon:hover .peerreview-tooltip[b-7gtangikmu] {
  display: block;
}

.add-colleague-container[b-7gtangikmu] {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  margin-bottom: 80px;
}

.add-colleague-container .btn[b-7gtangikmu] {
  flex-shrink: 0;
  flex-grow: 0;
  width: 80px;
  height: 56px;
  margin-top: 5px;
  color: var(--portal-text-on-primary);
  background-color: var(--portal-success);
  border-color: var(--portal-success);
}

.add-colleague-container .btn:hover[b-7gtangikmu] {
  color: var(--portal-text-on-primary) !important;
}

.autocomplete-size[b-7gtangikmu] {
  width: 300px;
}

.add-colleague-container[b-7gtangikmu]  .mud-input-control .mud-input-slot {
  background-color: var(--portal-bg-elevated);
}

.mud-select[b-7gtangikmu] {
  flex-grow: 0 !important;
}

.navigation-container[b-7gtangikmu] {
  width: 100%;
  max-width: 1218px;
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}

.next-button[b-7gtangikmu] {
  bottom: 10px;
  right: 0;
}

.back-button[b-7gtangikmu] {
  bottom: 10px;
  left: 0;
}
/* /Features/PeerReview/PeerReviewSummaryComponent.razor.rz.scp.css */
.shared-container[b-s7nlpafw47] {
  margin: 0 auto;
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}

.peerreview-description[b-s7nlpafw47] {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 24px;
  margin-bottom: 69px;
}

.peerreview-description-heading[b-s7nlpafw47] {
  font-weight: bold;
  text-transform: uppercase;
}

h1[b-s7nlpafw47] {
  color: var(--portal-text-primary);
  font-size: 40px;
}

.rating-column[b-s7nlpafw47] {
  display: flex;
  flex-direction: column;
  width: 500px;
  justify-content: flex-start;
  gap: 8px;
  flex-shrink: 0;
}

.feedback-column[b-s7nlpafw47] {
  min-height: 90px;
  margin: 4px;
  flex: 1;
  padding-left: 1.5rem;
}

.feedback-column label[b-s7nlpafw47] {
  font-size: 16px;
  color: var(--portal-text-primary);
  font-weight: bold;
  font-style: normal;
  line-height: normal;
  margin-bottom: 8px;
}

.feedback-textarea[b-s7nlpafw47] {
  height: 215px;
}

.feedback-textarea[b-s7nlpafw47]::placeholder {
  color: var(--portal-text-disabled);
}

.feedback-additional-info[b-s7nlpafw47] {
  color: var(--portal-info);
  font-size: 14px;
  padding-left: 8px;
}

.rating-group[b-s7nlpafw47] {
  flex: 1;
  display: flex;
  padding: 4px;
  gap: 8px;
}

.rating-group label[b-s7nlpafw47] {
  font-size: 16px;
  color: var(--portal-text-primary);
  margin: 4px;
  font-weight: bold;
}

.rating-group div.label-wrapper[b-s7nlpafw47],
.rating-group button[b-s7nlpafw47] {
  border: 1px solid var(--portal-rating-group-border);
  background-color: var(--portal-rating-group-bg);
  border-radius: 10px;
}

.rating-column[b-s7nlpafw47]  .smiley-ratings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.rating-column[b-s7nlpafw47]  .smiley {
  background-color: var(--portal-smiley-bg);
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  width: 60px;
  height: 60px;
  padding: 5px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.rating-column[b-s7nlpafw47]  .smiley.smiley-selected {
  background-color: var(--portal-smiley-selected);
}

.rating-column[b-s7nlpafw47]  .smiley.smiley-disabled:not(.smiley-selected) {
  cursor: default;
  opacity: 0.33 !important;
}

.rating-column[b-s7nlpafw47]  .smiley.smiley-disabled.smiley-selected {
  cursor: default;
}

.rating-column[b-s7nlpafw47]  .smiley:not(.smiley-selected, .smiley-disabled):hover {
  background-color: var(--portal-smiley-hover);
}

.rating-column[b-s7nlpafw47]  .smiley img {
  width: 50px;
  height: 50px;
}

.rating-column[b-s7nlpafw47]  .smiley img.rating-deselect {
  display: none;
}

.rating-column[b-s7nlpafw47]
  
  .smiley.smiley-selected:not(.smiley-disabled):hover
  img.rating-deselect {
  display: block;
}

.rating-column[b-s7nlpafw47]
  
  .smiley.smiley-selected:not(.smiley-disabled):hover
  img.rating-image {
  display: none;
}

.person-card[b-s7nlpafw47] {
  width: 1218px;
  display: flex;
  border: 1px solid var(--portal-person-card-border);
  box-shadow: var(--portal-shadow-sm);
  margin-bottom: 1.5rem;
  border-radius: 8px;
  min-height: fit-content;
}

.person-section[b-s7nlpafw47]  .person-thumbnail-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  max-height: 300px;
  border-radius: 50%;
  height: 150px;
  width: 150px;
}

.person-section[b-s7nlpafw47]  .person-name {
  text-align: center;
  padding: 0.5rem 1rem;
}

.person-section[b-s7nlpafw47] {
  min-height: 330px;
  width: 165px;
  align-items: center;
  display: flex;
  padding: 1rem 0 1rem 1rem;
  flex-shrink: 0;
}

.person-section[b-s7nlpafw47]  .person-image-and-name {
}

.review-section[b-s7nlpafw47] {
  flex: 2.7;
  padding: 1rem;
  display: flex;
  justify-content: flex-start;
  align-self: flex-start;
}

.feedback-wrapper[b-s7nlpafw47] {
  display: block;
  width: 100%;
  min-height: 215px;
  line-height: 24px;
  letter-spacing: 0.15px;
  border-radius: 8px;
  color: var(--portal-text-primary);
}

.feedback-wrapper p[b-s7nlpafw47] {
  white-space-collapse: preserve;
}

.rating-column[b-s7nlpafw47]  .label-wrapper {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 200px;
  padding: 10px;
}

.rating-column[b-s7nlpafw47]  .label-wrapper .info-icon {
  flex-shrink: 0;
  position: relative;
  right: auto;
  align-self: center;
}

.rating-column[b-s7nlpafw47]  .label-wrapper .info-icon img {
  height: 25px;
  width: 25px;
}

.rating-column[b-s7nlpafw47]  .info-icon {
  margin-left: 2px;
  cursor: pointer;
  position: relative;
  visibility: visible;
}

.info-icon-additional-feedback[b-s7nlpafw47] {
  margin-top: 10px;
  display: flex;
  align-items: center;
  cursor: default;
}

.info-icon-additional-feedback img[b-s7nlpafw47] {
  display: flex;
  align-items: center;
}

.info-icon-hidden[b-s7nlpafw47] {
  visibility: hidden;
}

.rating-column[b-s7nlpafw47]  .info-icon img {
  width: 20px;
  height: 20px;
}

.rating-column[b-s7nlpafw47]  .peerreview-tooltip {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--portal-bg-elevated);
  color: var(--portal-text-primary);
  border-radius: 8px;
  width: 400px;
  padding: 10px 15px;
  font-size: 16px;
  box-shadow: var(--portal-shadow-tooltip);
  z-index: 1000;
}

.rating-column[b-s7nlpafw47]  .info-icon:hover .peerreview-tooltip {
  display: block;
}

.navigation-container[b-s7nlpafw47],
.error-container[b-s7nlpafw47] {
  width: 100%;
  max-width: 1218px;
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}

.next-button[b-s7nlpafw47] {
  bottom: 10px;
  right: 0;
}

.back-button[b-s7nlpafw47] {
  bottom: 10px;
  left: 0;
}

.company-feedback-label[b-s7nlpafw47] {
  font-size: 16px;
  font-weight: 700;
  margin-top: 30px;
}

.company-feedback-textarea[b-s7nlpafw47] {
  margin-top: 10px;
  margin-bottom: 20px;
}

.error-container[b-s7nlpafw47] {
  color: var(--portal-error);
  justify-content: end;
  padding: 0px;
}
/* /Features/PeerReview/Results/PeerReviewNotAvailable.razor.rz.scp.css */
.peer-review-not-available[b-n71srek8hr] {
  display: flex;
  color: var(--mud-palette-text-primary, black);
  font-family: var(--font-text);
  justify-content: center;
}

:global(html.dark-theme) .peer-review-not-available[b-n71srek8hr] {
  color: var(--mud-palette-text-primary, #fff);
}

@media (prefers-color-scheme: dark) {
  .peer-review-not-available[b-n71srek8hr] {
    color: var(--mud-palette-text-primary, #fff);
  }
}

.peer-review-not-available-info[b-n71srek8hr] {
  text-align: center;
  margin-top: 20px;
}

.peer-review-not-available-info h2[b-n71srek8hr] {
  color: var(--mud-palette-text-primary, black);
  margin: 20px 0px;
}

:global(html.dark-theme) .peer-review-not-available-info h2[b-n71srek8hr] {
  color: var(--mud-palette-text-primary, #fff);
}

@media (prefers-color-scheme: dark) {
  .peer-review-not-available-info h2[b-n71srek8hr] {
    color: var(--mud-palette-text-primary, #fff);
  }
}

.tooling-link[b-n71srek8hr] {
  color: var(--portal-primary-link);
}
/* /Features/PeerReview/Results/PeerReviewResults.razor.rz.scp.css */
.peerreview-results-header[b-j55jbvjhda] {
  align-items: flex-end;
  gap: 16px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-results-heading[b-j55jbvjhda] {
  margin: 0;
}

.peerreview-results-selects[b-j55jbvjhda] {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.peerreview-results-select[b-j55jbvjhda] {
  min-width: 220px;
}
/* /Features/PeerReview/Results/PeerReviewResultsNps.razor.rz.scp.css */
.nps-results[b-osjohyv4u2] {
  display: flex;
  color: var(--portal-nps-text);
  font-family: var(--font-text);
}

.nps-results-heading[b-osjohyv4u2] {
  color: var(--portal-nps-text);
  font-size: 30px;
  font-style: normal;
  font-family: var(--font-text);
  font-weight: 700;
  line-height: normal;
  display: flex;
  margin-bottom: 20px;
}

.nps-results-data[b-osjohyv4u2] {
  display: flex;
}

.nps-results-data-total[b-osjohyv4u2] {
  background: var(--portal-nps-total-bg);
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.nps-results-score[b-osjohyv4u2] {
  color: var(--portal-nps-text);
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  margin-top: -15px;
  display: block;
}

.nps-results-score-text[b-osjohyv4u2] {
  color: var(--portal-nps-text);
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
  display: block;
}

.nps-results-data-breakdown[b-osjohyv4u2] {
  background: var(--portal-nps-breakdown-bg);
  margin-right: 57px;
  padding: 20px 35px;
  width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.score-breakdown-row[b-osjohyv4u2] {
  font-size: 24px;
  margin-bottom: 5px;
}

.score-breakdown-row-value[b-osjohyv4u2] {
  width: 50px;
  display: inline-block;
  font-weight: 700;
}

.score-breakdown-row-title[b-osjohyv4u2] {
  display: inline-block;
  width: 210px;
  font-weight: 400;
}

.score-breakdown-row-info[b-osjohyv4u2] {
  font-weight: 300;
}

.nps-results-explanation h3[b-osjohyv4u2] {
  color: var(--portal-nps-text);
  font-weight: 700;
}

.nps-results-explanation p[b-osjohyv4u2] {
  line-height: 1.5;
}

.nps-score-difference[b-osjohyv4u2]::before {
  content: "+";
}

.nps-score-difference-negative[b-osjohyv4u2] {
  color: var(--portal-nps-negative);
}

.nps-score-difference-negative[b-osjohyv4u2]::before {
  content: "-";
}

.nps-link[b-osjohyv4u2] {
  color: var(--portal-nps-link);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
/* /Features/PeerReview/Results/PeerReviewResultsUser.razor.rz.scp.css */
.user-results-heading[b-bfzdgwzolz] {
  color: var(--portal-text-primary);
  font-family: var(--font-text);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
  margin-top: 60px;
  display: flex;
  align-items: end;
}

.average-text[b-bfzdgwzolz] {
  color: var(--portal-text-primary);
  font-family: var(--font-text);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 50px;
  padding-bottom: 4px;
}

.chart-grid[b-bfzdgwzolz] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.chart-item[b-bfzdgwzolz] {
  width: 100%;
  position: relative;
  background: var(--portal-bg-tertiary);
  padding: 15px;
  border-radius: 15px;
}

.chart-item .chart-title span[b-bfzdgwzolz] {
  font-size: 24px;
  display: inline-block;
  vertical-align: middle;
  color: var(--portal-text-secondary);
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

.chart-item .chart-title .info-icon-wrapper[b-bfzdgwzolz] {
  margin-left: 5px;
  cursor: pointer;
  position: relative;
}

.chart-item .chart-title .info-icon-wrapper .tooltip-content[b-bfzdgwzolz] {
  display: none;
  position: absolute;
  bottom: 100%;
  transform: translateX(-25%);
  background-color: var(--portal-bg-elevated);
  color: var(--portal-text-primary);
  border-radius: 8px;
  width: 600px;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 400;
  box-shadow: var(--portal-shadow-tooltip);
  z-index: 1000;
}

.chart-item .chart-title .info-icon-wrapper:hover .tooltip-content[b-bfzdgwzolz],
.chart-item .chart-title .info-icon-wrapper:focus-within .tooltip-content[b-bfzdgwzolz] {
  display: block;
}

.chart-container[b-bfzdgwzolz] {
  display: flex;
}

.smiley-icon[b-bfzdgwzolz] {
  width: 26px;
  height: 26px;
}

.smileys-container[b-bfzdgwzolz] {
  display: grid;
  width: 26px;
  height: 254px;
  padding-top: 17px;
}

.user-feedback[b-bfzdgwzolz] {
  margin-top: 20px;
}
/* /Features/PeerReview/Results/PeerReviewUserFeedback.razor.rz.scp.css */
.feedback-results-heading[b-cqnktiogr0] {
  color: var(--mud-palette-text-primary, #000);
  font-family: var(--font-text);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
  margin-top: 60px;
  display: flex;
  align-items: end;
}

@media (prefers-color-scheme: dark) {
  .feedback-results-heading[b-cqnktiogr0] {
    color: var(--mud-palette-text-primary, #fff);
  }
}

.feedback-table[b-cqnktiogr0] {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 150px;
  border: 1px solid var(--portal-feedback-border);
}

.feedback-table td[b-cqnktiogr0] {
  padding: 1rem;
  color: var(--mud-palette-text-primary, #000);
  font-family: var(--font-text);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (prefers-color-scheme: dark) {
  .feedback-table td[b-cqnktiogr0] {
    color: var(--mud-palette-text-primary, #fff);
  }
}

.feedback-table td.feedback-content[b-cqnktiogr0] {
  display: flex;
  justify-content: space-between;
}

.feedback-table td.feedback-user-image[b-cqnktiogr0] {
  width: 180px;
}

.comment-publish-toggle[b-cqnktiogr0] {
  background: var(--portal-primary-link);
  margin-left: 20px;
  padding: 10px 20px;
  border-radius: 10px;
  color: var(--portal-text-on-primary);
  font-size: 12px;
  max-height: 30px;
  width: 75px;
}

.comment-publish-toggle--unpublished[b-cqnktiogr0] {
  background: var(--portal-feedback-unpublish-bg);
}

.feedback-text--disabled[b-cqnktiogr0] {
  color: var(--portal-feedback-disabled-text);
  font-style: italic;
}

.feedback-table tr:nth-child(odd)[b-cqnktiogr0] {
  background-color: var(--portal-feedback-list-even);
}

.feedback-table tr:nth-child(even)[b-cqnktiogr0] {
  background-color: var(--portal-feedback-list-odd);
}

.person-thumbnail-section[b-cqnktiogr0] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  max-height: 200px;
  border-radius: 50%;
  height: 100px;
  width: 100px;
}

.person-name[b-cqnktiogr0] {
  text-align: center;
  padding: 0.5rem 0.5rem 0rem;
  font-size: 16px;
}

.person-section[b-cqnktiogr0] {
  height: 330px;
  width: 165px;
  align-items: center;
  display: flex;
  padding: 1rem 0 1rem 1rem;
}

.person-image-and-name[b-cqnktiogr0] {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* /Features/PeerReview/SatisfactionSlider.razor.rz.scp.css */
.satisfaction-slider[b-95dm0ej0bn] {
    width: 100%;
}

.satisfaction-slider-track[b-95dm0ej0bn] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.satisfaction-slider-endpoint[b-95dm0ej0bn] {
    font-size: 16px;
    color: var(--portal-text-secondary, #666);
    min-width: 24px;
    text-align: center;
}

.satisfaction-range[b-95dm0ej0bn] {
    flex: 1;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

.satisfaction-range[b-95dm0ej0bn]::-webkit-slider-runnable-track {
    height: 4px;
    background: linear-gradient(
        to right,
        var(--mud-palette-info, #00aab5) 0%,
        var(--mud-palette-info, #00aab5) calc(var(--value, 50) * 1%),
        #d0d0d0 calc(var(--value, 50) * 1%),
        #d0d0d0 100%
    );
    border-radius: 2px;
}

.satisfaction-range[b-95dm0ej0bn]::-moz-range-track {
    height: 4px;
    background: #d0d0d0;
    border-radius: 2px;
}

.satisfaction-range[b-95dm0ej0bn]::-moz-range-progress {
    height: 4px;
    background: var(--mud-palette-info, #00aab5);
    border-radius: 2px;
}

.satisfaction-range[b-95dm0ej0bn]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--mud-palette-info, #00aab5);
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    margin-top: -7px;
    cursor: pointer;
}

.satisfaction-range[b-95dm0ej0bn]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--mud-palette-info, #00aab5);
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.satisfaction-slider-end-labels[b-95dm0ej0bn] {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    padding: 0 36px;
}

.satisfaction-slider-end-label[b-95dm0ej0bn] {
    font-size: 12px;
    color: var(--portal-text-secondary, #999);
}
/* /Features/Pipeline/Pipeline.razor.rz.scp.css */
/* /Features/Pipeline/PipelineEditDialog.razor.rz.scp.css */
.skill-child[b-i6rpj7jgbm] {
  padding-left: 16px;
}

/* Project-wide planned work effort summary, shown next to the "Roles" heading. */
.pipeline-edit-dialog__effort-total[b-i6rpj7jgbm] {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-left: 12px;
  padding: 2px 10px;
  border-radius: 6px;
  background: var(--mud-palette-background-grey, rgba(0, 0, 0, 0.04));
  white-space: nowrap;
}

.pipeline-edit-dialog__effort-total-label[b-i6rpj7jgbm] {
  font-size: 0.75rem;
  color: var(--mud-palette-text-secondary);
}

.pipeline-edit-dialog__effort-total-value[b-i6rpj7jgbm] {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mud-palette-text-primary);
}

/* Per-role derived work effort, rendered under the role's allocation field. */
.pipeline-edit-dialog__role-effort[b-i6rpj7jgbm] {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 2px;
}

.pipeline-edit-dialog__role-effort-label[b-i6rpj7jgbm] {
  font-size: 0.7rem;
  color: var(--mud-palette-text-secondary);
}

.pipeline-edit-dialog__role-effort-value[b-i6rpj7jgbm] {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mud-palette-primary, var(--mud-palette-text-primary));
}
/* /Features/_Common/ErrorNotification.razor.rz.scp.css */
.error-notification[b-jz09zzmcgi] {
  max-width: 500px;
  min-width: 300px;
  background-color: var(--portal-error-notif-bg);
  border: 1px solid var(--portal-error-notif-border);
  border-radius: 8px;
  box-shadow: var(--portal-shadow-md);
  font-size: 14px;
  color: var(--portal-error-notif-text);
}

.error-notification-header[b-jz09zzmcgi] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background-color: var(--portal-error-notif-header-bg);
  border-radius: 8px 8px 0 0;
  cursor: pointer;
}

.error-notification:not(.expanded) .error-notification-header[b-jz09zzmcgi] {
  border-radius: 8px;
}

.error-notification-title[b-jz09zzmcgi] {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--portal-error-notif-title);
  font-weight: 500;
}

.error-notification-actions[b-jz09zzmcgi] {
  display: flex;
  align-items: center;
  gap: 4px;
}

.error-notification-content[b-jz09zzmcgi] {
  padding: 12px;
  max-height: 800px;
  overflow-y: auto;
  color: var(--portal-error-notif-text);
}

.error-notification-message[b-jz09zzmcgi],
.error-notification-inner[b-jz09zzmcgi] {
  margin-bottom: 8px;
  word-break: break-word;
}

.error-notification-details[b-jz09zzmcgi] {
  margin-top: 8px;
}

.error-notification-details summary[b-jz09zzmcgi] {
  cursor: pointer;
  color: var(--portal-error-notif-detail-summary);
  font-size: 12px;
}

.error-notification-details pre[b-jz09zzmcgi] {
  margin-top: 8px;
  padding: 8px;
  background-color: var(--portal-error-notif-pre-bg);
  border: 1px solid var(--portal-error-notif-pre-border);
  border-radius: 4px;
  font-size: 11px;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-all;
  color: var(--portal-error-notif-pre-text);
}
/* /Features/_Common/OverlayErrorBoundary.razor.rz.scp.css */
.circuit-breaker-fallback[b-941ftrwse0] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  margin: 16px;
  background-color: var(--portal-circuit-bg);
  border: 2px solid var(--portal-circuit-border);
  border-radius: 8px;
  text-align: center;
}

.circuit-breaker-fallback .circuit-breaker-icon[b-941ftrwse0] {
  font-size: 48px;
  margin-bottom: 16px;
}

.circuit-breaker-fallback h3[b-941ftrwse0] {
  margin: 0 0 8px 0;
  color: var(--portal-circuit-heading);
}

.circuit-breaker-fallback p[b-941ftrwse0] {
  margin: 4px 0;
  color: var(--portal-circuit-text);
}

.circuit-breaker-fallback .circuit-breaker-error[b-941ftrwse0] {
  font-size: 12px;
  color: var(--portal-circuit-error);
  margin-top: 12px;
  word-break: break-word;
}

.circuit-breaker-fallback .circuit-breaker-reset[b-941ftrwse0] {
  margin-top: 16px;
  padding: 8px 16px;
  background-color: var(--portal-circuit-btn-bg);
  color: var(--portal-circuit-btn-text);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.circuit-breaker-fallback .circuit-breaker-reset:hover[b-941ftrwse0] {
  background-color: var(--portal-circuit-btn-hover);
}
/* /Features/_Common/PresenceIndicator/PresenceIndicator.razor.rz.scp.css */
.presence-wrapper[b-v8bu00voml] {
  position: relative;
  display: inline-block;
}

.presence-dot[b-v8bu00voml] {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  border: 2px solid var(--portal-presence-border);
}
/* /Features/_Common/ProtoBadge.razor.rz.scp.css */
.proto-badge[b-i8fymrf6zl] {
    position: relative;
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

/* Glint sweep, clipped to the wordmark glyphs via the alpha-channel mask
   (mask-image is set inline because the asset URL is theme-dependent). */
.proto-badge-shine[b-i8fymrf6zl] {
    position: absolute;
    inset: 0;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: linear-gradient(115deg, transparent 38%, rgba(5, 195, 222, 0.9) 50%, transparent 62%);
    background-size: 300% 100%;
    background-repeat: no-repeat;
    animation: proto-badge-shine-b-i8fymrf6zl 4.5s ease-in-out infinite;
}

@keyframes proto-badge-shine-b-i8fymrf6zl {
    0% {
        background-position: 100% 0;
    }

    40% {
        background-position: 0% 0;
    }

    100% {
        background-position: 0% 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .proto-badge-shine[b-i8fymrf6zl] {
        animation: none;
    }
}
