@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;450;500;550;600;650;700&family=Manrope:wght@400;500;600;650;700;750;800&display=swap");
:root {
  --blue: #2463eb;
  --blue-dark: #164ec4;
  --blue-soft: #edf3ff;
  --ink: #172640;
  --muted: #738097;
  --line: #e6eaf1;
  --canvas: #f6f8fc;
  --green: #15845f;
  --amber: #a86513;
  --red: #cb4b43;
  --radius: 12px;
  --shadow: 0 3px 8px #10254a03;
  --font: "DM Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font: 400 1rem/1.5 var(--font);
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
  opacity: 0.45;
}
button {
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
svg.icon {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  vertical-align: middle;
  stroke-width: 1.7;
}
button > span[data-icon],
.exam-meta span[data-icon] {
  display: inline-flex;
}
.skip-link {
  position: fixed;
  top: -70px;
  left: 16px;
  padding: 12px;
  background: var(--blue);
  color: #fff;
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
}
:focus-visible {
  outline: 3px solid #76a1ff;
  outline-offset: 4px;
}
[hidden] {
  display: none !important;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4,
.brand {
  font-family: "Manrope", var(--font);
}
h1 {
  font-size: 1.85rem;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: -0.065rem;
}
h2 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.035rem;
}
h3 {
  font-size: 1rem;
  font-weight: 750;
}
p {
  color: var(--muted);
}
.app-header {
  height: 80px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1536px;
  margin: auto;
  height: 100%;
  padding: 0 42px;
  display: flex;
  align-items: center;
  gap: 23px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.43rem;
  font-weight: 800;
  letter-spacing: -0.06rem;
}
.brand-iq {
  color: var(--blue);
}
.brand-mark {
  width: 35px;
  height: 39px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 10px 10px 15px 15px;
  box-shadow: 0 4px 8px #2463eb1c;
}
.brand-mark .icon {
  width: 25px;
  height: 25px;
  stroke-width: 2;
}
.header-divider {
  height: 25px;
  width: 1px;
  background: var(--line);
}
.workspace-label {
  font-size: 0.875rem;
  color: #65738a;
}
.header-right {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 15px;
}
.demo-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #e1e7f1;
  border-radius: 7px;
  padding: 5px 10px;
  font-size: 0.75rem;
  color: #697991;
}
.demo-badge .icon {
  height: 14px;
  width: 14px;
}
.profile-avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: #eaf0ff;
  border: 2px solid #fff;
  outline: 1px solid #e0e7f7;
  border-radius: 50%;
  color: #4768ae;
  font-size: 0.75rem;
  font-weight: 700;
}
.profile-label {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}
.profile-label strong {
  font-size: 0.875rem;
  font-weight: 600;
}
.profile-label span {
  font-size: 0.75rem;
  color: var(--muted);
}
.workspace {
  max-width: 1536px;
  margin: auto;
  padding: 23px 42px 0;
}
.breadcrumb {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 17px;
}
.breadcrumb .icon {
  width: 13px;
  height: 13px;
}
.breadcrumb > span:last-child {
  color: #58667b;
}
.exam-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 31px;
}
.title-row {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 550;
  line-height: 1.3;
  padding: 5px 8px;
  border-radius: 5px;
}
.pill i {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: currentColor;
}
.green {
  background: #eaf7f1;
  color: var(--green);
}
.amber {
  background: #fff5e5;
  color: var(--amber);
}
.red {
  background: #fff0ed;
  color: var(--red);
}
.blue {
  background: var(--blue-soft);
  color: var(--blue);
}
.slate {
  background: #f0f3f8;
  color: #687890;
}
.exam-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 9px;
  color: #7b8798;
  font-size: 0.875rem;
}
.exam-meta > span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.exam-meta .icon {
  height: 15px;
  width: 15px;
}
.meta-divider {
  color: #b1bac7;
}
.button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 7px;
  padding: 9px 14px;
  font-size: 0.875rem;
  font-weight: 550;
  line-height: 1.3;
  border: 1px solid transparent;
  white-space: nowrap;
  transition:
    background 0.15s,
    box-shadow 0.15s,
    transform 0.15s;
}
.button .icon {
  height: 16px;
  width: 16px;
}
.button.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 3px 5px #2463eb12;
}
.button.primary:hover {
  background: var(--blue-dark);
}
.button.secondary {
  background: #fff;
  border-color: #dce3ee;
  box-shadow: 0 2px 3px #132e5003;
}
.button.secondary:hover {
  background: #f4f7fd;
  border-color: #c6d4eb;
}
.button.small {
  padding: 7px 11px;
  min-height: 34px;
}
.button:active {
  transform: translateY(1px);
}
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: none;
  border: 0;
  padding: 5px 0;
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 550;
}
.text-button:hover {
  text-decoration: underline;
}
.text-button .icon {
  height: 15px;
  width: 15px;
}
.tab-scroll {
  border-bottom: 1px solid #dfe5ef;
  margin-bottom: 27px;
  overflow: auto;
  scrollbar-width: none;
}
.tabs {
  display: flex;
  gap: 26px;
  min-width: max-content;
}
.tabs button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  background: none;
  border: 0;
  padding: 0 3px 18px;
  color: #7a869b;
  font-size: 0.875rem;
  font-weight: 500;
  min-height: 45px;
  white-space: nowrap;
}
.tabs button .icon {
  width: 17px;
  height: 17px;
}
.tabs button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 3px;
  background: transparent;
}
.tabs button:hover {
  color: var(--blue);
}
.tabs button[aria-selected="true"] {
  color: var(--blue);
  font-weight: 600;
}
.tabs button[aria-selected="true"]:after {
  background: var(--blue);
}
.tabs button:focus-visible {
  outline-offset: -3px;
}
.tab-count {
  font-size: 0.75rem;
  min-width: 22px;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eaf0f8;
  color: #6e7b91;
  border-radius: 5px;
  padding: 3px 5px;
  font-weight: 600;
}
.tab-count.alert-count {
  color: #c57b23;
  background: #fff0dc;
}
.live-dot {
  width: 6px;
  height: 6px;
  background: #24a47e;
  border-radius: 50%;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}
.section-heading p {
  font-size: 0.875rem;
  margin-top: 4px;
}
.snapshot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #8994a6;
  white-space: nowrap;
}
.snapshot .icon {
  width: 13px;
  height: 13px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 19px;
  margin-bottom: 22px;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 19px 21px 17px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.stat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #748199;
}
.stat-icon {
  height: 34px;
  width: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
}
.stat-icon .icon {
  width: 18px;
  height: 18px;
}
.stat-value {
  font:
    800 2rem/1.2 "Manrope",
    sans-serif;
  letter-spacing: -0.06rem;
  margin-top: 7px;
  margin-bottom: 10px;
}
.stat-foot {
  font-size: 0.75rem;
  color: #8894a7;
  display: flex;
  align-items: center;
  gap: 5px;
}
.stat-foot .icon {
  width: 12px;
  height: 12px;
}
.stat-foot strong {
  font-weight: 500;
  color: var(--green);
}
.stat-foot .amber-text {
  color: var(--amber);
}
.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 354px;
  gap: 22px;
  align-items: stretch;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 0;
  overflow: hidden;
}
.card-heading {
  padding: 22px 23px 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.card-heading p {
  font-size: 0.75rem;
  margin-top: 3px;
}
.small-label {
  font-size: 0.75rem;
  color: #8a96a8;
  white-space: nowrap;
}
.activity-card .card-heading {
  padding-bottom: 5px;
}
.chart-legend {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  font-size: 0.75rem;
  color: #7c899e;
  padding: 8px 25px 4px;
}
.chart-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.chart-legend i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.blue-key {
  background: #4686ee;
}
.amber-key {
  background: #e1a54e;
}
.activity-chart {
  padding: 0 21px;
}
.activity-chart svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
  max-height: 197px;
}
.chart-note {
  border-top: 1px solid #eff2f6;
  margin-top: 3px;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #8c98aa;
  font-size: 0.75rem;
}
.chart-note .icon {
  width: 13px;
  height: 13px;
}
.heading-with-icon {
  display: flex;
  align-items: center;
  gap: 9px;
}
.mini-icon {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 6px;
}
.mini-icon .icon {
  width: 14px;
  height: 14px;
}
.queue-card {
  display: flex;
  flex-direction: column;
}
.queue-card .card-heading {
  padding: 20px 20px 9px;
}
.queue-card .card-heading h3 {
  font-size: 0.9375rem;
}
.queue-item {
  display: flex;
  width: 100%;
  text-align: left;
  align-items: flex-start;
  gap: 11px;
  padding: 14px 20px;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #f0f3f7;
}
.queue-item:hover {
  background: #f9fbff;
}
.event-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 8px;
}
.event-icon .icon {
  width: 16px;
  height: 16px;
}
.queue-copy {
  flex: 1;
  min-width: 0;
}
.queue-copy strong {
  font-size: 0.875rem;
  font-weight: 550;
  display: block;
}
.queue-copy p {
  font-size: 0.75rem;
  margin-top: 2px;
}
.queue-time {
  font-size: 0.75rem;
  color: #909bac;
  padding-top: 3px;
  white-space: nowrap;
}
.queue-copy .pill {
  margin-top: 6px;
  font-size: 0.75rem;
  padding: 2px 5px;
}
.card-bottom-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  border: 0;
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 550;
  padding: 13px;
  width: 100%;
  margin-top: auto;
}
.card-bottom-button:hover {
  background: #f7faff;
}
.card-bottom-button .icon {
  height: 14px;
  width: 14px;
}
.table-wrap {
  overflow: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  white-space: nowrap;
  font-size: 0.875rem;
}
th {
  font-weight: 500;
  font-size: 0.75rem;
  color: #8c97a9;
  background: #fafbfe;
  padding: 11px 23px;
  border-top: 1px solid #f1f3f7;
  border-bottom: 1px solid #f1f3f7;
}
td {
  padding: 13px 23px;
  border-bottom: 1px solid #edf1f6;
}
tr:last-child td {
  border-bottom: 0;
}
.person-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background: #edf1fe;
  color: #6e79bc;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 600;
}
.avatar.mint {
  background: #eaf5ee;
  color: #6a9279;
}
.avatar.peach {
  background: #fcf0e7;
  color: #b7835b;
}
.avatar.rose {
  background: #f9eaf0;
  color: #b77b94;
}
.avatar.sky {
  background: #e9f2fb;
  color: #6c92b5;
}
.person-name {
  font-weight: 550;
  font-size: 0.875rem;
}
.person-id {
  display: block;
  color: #94a0b1;
  font-size: 0.75rem;
  margin-top: 1px;
}
.muted {
  color: #8b97aa;
}
.table-event {
  font-size: 0.75rem;
  color: #748197;
}
.row-button {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #e6ebf3;
  border-radius: 6px;
  background: #fff;
  color: #8794a9;
}
.row-button:hover {
  background: var(--blue-soft);
  color: var(--blue);
}
.row-button .icon {
  height: 14px;
  width: 14px;
}
.table-bottom {
  border-top: 1px solid var(--line);
  padding: 13px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 0.75rem;
  color: var(--muted);
}
.pagination {
  display: flex;
  gap: 6px;
  align-items: center;
}
.pagination .row-button {
  height: 30px;
  width: 30px;
}
.page-label {
  padding: 0 5px;
}
.setup-card .card-heading {
  padding-bottom: 11px;
}
.health-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 23px;
}
.health-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #e8edf5;
  border-radius: 8px;
  color: #8393ad;
}
.health-icon .icon {
  width: 16px;
  height: 16px;
}
.health-row div {
  flex: 1;
}
.health-row strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 550;
}
.health-row div span {
  font-size: 0.75rem;
  color: #91a0b3;
}
.health-row > .icon,
.health-row > span > .icon {
  width: 16px;
  height: 16px;
}
.text-green {
  color: #34a17e;
}
.exam-progress {
  margin: 13px 23px 23px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}
.exam-progress > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}
.exam-progress strong {
  font-weight: 550;
}
.exam-progress > div span {
  color: #7a8ba3;
}
.exam-progress p {
  font-size: 0.75rem;
  margin-top: 7px;
  color: #96a1b3;
}
progress {
  display: block;
  width: 100%;
  height: 5px;
  margin-top: 12px;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #eaf0fa;
}
progress::-webkit-progress-bar {
  background: #eaf0fa;
  border-radius: 10px;
}
progress::-webkit-progress-value {
  background: #4a83ea;
  border-radius: 10px;
}
progress::-moz-progress-bar {
  background: #4a83ea;
  border-radius: 10px;
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #9aa6b7;
  font-size: 0.75rem;
  margin-top: 29px;
  padding: 4px 0 23px;
}
footer > span {
  display: flex;
  align-items: center;
  gap: 6px;
}
footer .icon {
  height: 13px;
  width: 13px;
}
.footer-separator {
  color: #c8d0dc;
  margin: 0 4px;
}
.panel {
  animation: enter 0.2s ease-out;
}
.panel:focus {
  outline: none;
}
@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.toolbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.search-field {
  display: flex;
  align-items: center;
  border: 1px solid #dfe6f1;
  background: #fff;
  border-radius: 7px;
  padding: 0 12px;
  gap: 9px;
  color: #8f9bae;
}
.search-field .icon {
  width: 17px;
  height: 17px;
}
.search-field input {
  border: 0;
  outline: none;
  background: none;
  min-width: 0;
  width: 240px;
  padding: 10px 0;
  color: var(--ink);
  font-size: 0.875rem;
}
.search-field:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px #2463eb12;
}
input::placeholder {
  color: #8b98ac;
}
select {
  border: 1px solid #dfe6f1;
  border-radius: 7px;
  background: #fff;
  padding: 10px 32px 10px 12px;
  color: #63758d;
  font-size: 0.875rem;
  max-width: 100%;
}
.subtle-banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #edf3ff;
  color: #58769d;
  padding: 13px 16px;
  border: 1px solid #e2eafe;
  border-radius: 8px;
  font-size: 0.875rem;
  margin-bottom: 22px;
}
.subtle-banner > .icon {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}
.subtle-banner strong {
  font-weight: 550;
  color: #38669f;
}
.monitor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.monitor-card {
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  overflow: hidden;
}
.monitor-card.flagged {
  border-color: #ebc88d;
}
.feed {
  height: 174px;
  background: #edf1f8;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feed-avatar {
  width: 70px;
  height: 70px;
  font-size: 1.375rem;
  font-family: Manrope, sans-serif;
  font-weight: 650;
  border-radius: 50%;
  background: #dfe6f4;
  color: #8395b5;
  display: grid;
  place-items: center;
}
.feed .feed-status {
  position: absolute;
  top: 11px;
  left: 11px;
  background: #fff;
  color: #6d7f9a;
  border: 1px solid #e5eaf3;
  font-size: 0.75rem;
  padding: 4px 7px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 5px;
}
.feed .feed-status .icon {
  width: 11px;
  height: 11px;
}
.feed .feed-label {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.75rem;
  color: #8391a7;
}
.feed-tools {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  color: #8b9db6;
}
.feed-tools .icon {
  width: 14px;
  height: 14px;
}
.monitor-info {
  padding: 14px;
}
.monitor-info-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.monitor-info-top strong {
  font-size: 0.875rem;
  font-weight: 550;
}
.monitor-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  gap: 8px;
  color: #8c99ad;
  font-size: 0.75rem;
}
.monitor-foot button {
  font-size: 0.75rem;
}
.monitor-status {
  font-size: 0.75rem;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 4px;
}
.monitor-status.review {
  color: var(--amber);
}
.monitor-status .icon {
  height: 13px;
  width: 13px;
}
.segmented {
  display: inline-flex;
  gap: 3px;
  background: #eaf0f9;
  padding: 4px;
  border-radius: 8px;
}
.segmented button {
  border: 0;
  background: none;
  border-radius: 5px;
  padding: 6px 12px;
  font-size: 0.875rem;
  color: #7b8aa0;
  font-weight: 500;
}
.segmented button.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 4px #172c4f0a;
}
.alerts-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.alert-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 23px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.alert-row .event-icon {
  width: 41px;
  height: 41px;
}
.alert-main {
  flex: 1;
}
.alert-main h3 {
  font-size: 0.9375rem;
}
.alert-main p {
  font-size: 0.875rem;
  margin-top: 4px;
}
.alert-row .pill {
  font-size: 0.75rem;
}
.alert-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  font-size: 0.75rem;
  color: #8b98ad;
  margin: 0 14px;
}
.empty-state {
  text-align: center;
  padding: 55px 25px;
  color: #8997aa;
}
.empty-state > .icon {
  height: 34px;
  width: 34px;
  color: #63a996;
  margin-bottom: 10px;
}
.empty-state h3 {
  color: #55677f;
  font-size: 1rem;
  margin-bottom: 4px;
}
.empty-state p {
  font-size: 0.875rem;
}
.reports-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 22px;
}
.report-summary {
  padding: 27px;
}
.report-summary h3 {
  font-size: 1.125rem;
}
.report-summary > p {
  font-size: 0.875rem;
  margin-top: 6px;
}
.report-number {
  font:
    800 3.5rem/1.2 Manrope,
    sans-serif;
  letter-spacing: -0.15rem;
  margin-top: 27px;
}
.report-number span {
  font-size: 1.125rem;
  font-weight: 500;
  color: #8998af;
  letter-spacing: 0;
}
.completion-bar {
  height: 12px;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  margin: 16px 0;
}
.completion-bar .complete {
  background: #34a385;
  width: 16.6667%;
}
.completion-bar .active {
  background: #638eeb;
  flex: 1;
}
.report-key {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #7c8ba2;
}
.report-key > span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.report-key i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34a385;
}
.report-key span:last-child i {
  background: #638eeb;
}
.report-info {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 0.875rem;
  color: #8391a7;
}
.bars {
  padding: 12px 25px 24px;
}
.bar-group {
  margin: 15px 0 20px;
}
.bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 8px;
  color: #61748f;
}
.bar-track {
  height: 9px;
  border-radius: 10px;
  background: #f0f4fa;
  overflow: hidden;
}
.bar-value {
  height: 100%;
  background: #6591ed;
  border-radius: 10px;
}
.report-wide {
  grid-column: 1/-1;
  padding: 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.report-wide p {
  font-size: 0.875rem;
  margin-top: 4px;
}
.settings-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
}
.settings-card .card-heading {
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}
.setting-row {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 22px 24px;
  border-bottom: 1px solid #edf1f6;
}
.setting-row:last-child {
  border-bottom: 0;
}
.setting-copy {
  flex: 1;
}
.setting-copy strong {
  font-size: 0.9375rem;
  font-weight: 550;
}
.setting-copy p {
  font-size: 0.875rem;
  margin-top: 4px;
}
.setting-row .health-icon {
  color: #758ba9;
  height: 37px;
  width: 37px;
}
.switch {
  width: 40px;
  height: 23px;
  border-radius: 20px;
  background: #d3ddeb;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  display: block;
}
.switch input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.switch span {
  position: absolute;
  pointer-events: none;
  inset: 0;
  border-radius: 20px;
  transition: background 0.2s;
}
.switch span:after {
  content: "";
  position: absolute;
  width: 17px;
  height: 17px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px #31446222;
  transition: transform 0.2s;
}
.switch input:checked + span {
  background: var(--blue);
}
.switch input:checked + span:after {
  transform: translateX(17px);
}
.switch input:focus-visible + span {
  outline: 3px solid #76a1ff;
  outline-offset: 3px;
}
.settings-aside {
  padding: 23px;
}
.settings-aside .aside-icon {
  color: var(--blue);
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  margin-bottom: 17px;
}
.settings-aside h3 {
  font-size: 1rem;
}
.settings-aside p {
  font-size: 0.875rem;
  margin-top: 9px;
  line-height: 1.75;
}
.settings-aside .aside-foot {
  border-top: 1px solid var(--line);
  margin-top: 20px;
  padding-top: 15px;
  font-size: 0.75rem;
}
.settings-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  grid-column: 1/-1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 23px;
}
.settings-bottom p {
  font-size: 0.875rem;
}
.settings-actions {
  display: flex;
  gap: 9px;
}
.settings-help {
  font-size: 0.75rem;
  margin-top: 12px;
  color: var(--muted);
}
dialog {
  border: 1px solid #e1e7f0;
  border-radius: 16px;
  padding: 0;
  max-width: 580px;
  width: calc(100% - 32px);
  color: var(--ink);
  box-shadow: 0 24px 100px #112e5e35;
  max-height: calc(100vh - 48px);
}
dialog::backdrop {
  background: #14244366;
  backdrop-filter: blur(3px);
}
.dialog-head {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}
.dialog-head h2 {
  font-size: 1.3rem;
}
.dialog-head p {
  font-size: 0.875rem;
  margin-top: 4px;
}
.close-button {
  display: grid;
  place-items: center;
  background: #f4f6fa;
  border: 0;
  border-radius: 7px;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.close-button .icon {
  width: 17px;
  height: 17px;
}
.dialog-body {
  padding: 24px;
}
.dialog-body .subtle-banner {
  margin-top: 20px;
  margin-bottom: 0;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
}
.detail-grid dt {
  font-size: 0.75rem;
  color: #8a97aa;
  margin-bottom: 4px;
}
.detail-grid dd {
  font-size: 0.9375rem;
  margin: 0;
  font-weight: 500;
}
.dialog-actions {
  display: flex;
  gap: 9px;
  justify-content: flex-end;
  padding: 17px 24px;
  border-top: 1px solid var(--line);
  background: #fbfcfe;
  flex-wrap: wrap;
}
.dialog-avatar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.dialog-avatar .avatar {
  width: 45px;
  height: 45px;
  font-size: 0.875rem;
}
.dialog-avatar strong {
  font-size: 1rem;
}
.dialog-avatar p {
  font-size: 0.875rem;
}
.timeline {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 19px;
}
.timeline h3 {
  font-size: 0.9375rem;
  margin-bottom: 12px;
}
.timeline-item {
  display: flex;
  gap: 13px;
  padding: 12px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid #f0f3f7;
}
.timeline-time {
  color: #96a1b2;
  font-size: 0.75rem;
  min-width: 48px;
}
.timeline-copy {
  flex: 1;
}
.timeline-copy small {
  font-size: 0.75rem;
  color: #8c99ad;
  display: block;
  margin-top: 3px;
}
.timeline-item .pill {
  align-self: flex-start;
  font-size: 0.75rem;
}
.toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: #19324f;
  color: #fff;
  padding: 12px 19px;
  border-radius: 9px;
  box-shadow: 0 7px 25px #17304f29;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.875rem;
  z-index: 20;
  max-width: calc(100% - 32px);
}
.toast .icon {
  width: 17px;
  height: 17px;
  color: #93e2c6;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.numeric {
  font-variant-numeric: tabular-nums;
}
.no-border {
  border: 0 !important;
}
@media (min-width: 1500px) {
  .workspace {
    padding-top: 28px;
  }
  .exam-heading {
    margin-bottom: 35px;
  }
  .activity-chart svg {
    max-height: 220px;
  }
  .queue-item {
    padding-top: 17px;
    padding-bottom: 17px;
  }
  .stat-card {
    padding-top: 23px;
    padding-bottom: 22px;
  }
  .overview-grid {
    grid-template-columns: minmax(0, 1fr) 380px;
  }
}
@media (max-width: 1200px) {
  .header-inner {
    padding: 0 26px;
  }
  .workspace {
    padding-left: 26px;
    padding-right: 26px;
  }
  .overview-grid {
    grid-template-columns: minmax(0, 1fr) 322px;
    gap: 18px;
  }
  .stats-grid {
    gap: 15px;
  }
  .tabs {
    gap: 21px;
  }
  h1 {
    font-size: 1.65rem;
  }
  .card-heading {
    padding-left: 18px;
    padding-right: 18px;
  }
  td,
  th {
    padding-left: 18px;
    padding-right: 18px;
  }
  .queue-item {
    padding-left: 18px;
    padding-right: 18px;
  }
  .candidates-card .table-event {
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .monitor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .profile-label {
    display: none;
  }
  .settings-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
  }
  .stat-head {
    font-size: 0.875rem;
  }
  .card-heading .text-button {
    font-size: 0.75rem;
  }
}
@media (max-width: 980px) {
  .overview-grid {
    grid-template-columns: minmax(0, 1fr) 290px;
  }
  .title-row .pill {
    font-size: 0.75rem;
  }
  .exam-meta {
    font-size: 0.75rem;
    gap: 8px;
  }
  .exam-heading {
    gap: 14px;
  }
  .stat-card {
    padding: 15px;
  }
  .stat-icon {
    width: 29px;
    height: 29px;
  }
  .stat-head {
    font-size: 0.75rem;
  }
  .stat-foot {
    font-size: 0.75rem;
  }
  .activity-chart {
    padding: 0 12px;
  }
  .activity-chart svg {
    min-height: 198px;
  }
  .chart-legend {
    gap: 12px;
  }
  .queue-card .card-heading {
    padding-left: 16px;
    padding-right: 16px;
  }
  .queue-card .card-heading h3 {
    font-size: 0.875rem;
  }
  .queue-item {
    padding: 14px 15px;
    gap: 8px;
  }
  .queue-time {
    display: none;
  }
  .candidates-card {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .setup-card {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .setup-card .card-heading {
    grid-column: 1/-1;
  }
  .health-row {
    padding: 10px 20px;
  }
  .health-row > span:last-child {
    display: none;
  }
  .exam-progress {
    grid-column: 1/-1;
  }
  .snapshot {
    display: none;
  }
  .tabs {
    gap: 23px;
  }
  .monitor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .alert-row {
    gap: 13px;
    padding: 18px;
  }
  .alert-meta {
    margin: 0;
  }
  .settings-layout {
    grid-template-columns: 1fr;
  }
  .settings-aside {
    grid-column: 1/-1;
  }
  .settings-aside .aside-icon {
    display: none;
  }
  .settings-aside .aside-foot {
    margin-top: 12px;
    padding-top: 12px;
  }
  h1 {
    font-size: 1.5rem;
  }
}
@media (max-width: 760px) {
  .app-header {
    height: 68px;
  }
  .header-inner {
    padding: 0 20px;
    gap: 15px;
  }
  .workspace-label {
    display: none;
  }
  .header-inner > .header-divider {
    display: none;
  }
  .header-right {
    gap: 12px;
  }
  .header-right > .header-divider {
    display: none;
  }
  .workspace {
    padding: 21px 20px 0;
  }
  .exam-heading {
    align-items: flex-start;
  }
  .exam-heading > .button {
    width: 36px;
    height: 36px;
    font-size: 0;
    gap: 0;
    padding: 0;
    min-height: 36px;
    margin-top: 4px;
  }
  .exam-heading > .button .icon {
    width: 17px;
    height: 17px;
  }
  .title-row {
    gap: 9px;
  }
  .title-row h1 {
    font-size: 1.55rem;
    width: 100%;
    line-height: 1.4;
  }
  .title-row .pill {
    font-size: 0.75rem;
  }
  .exam-meta .meta-divider {
    display: none;
  }
  .exam-meta {
    column-gap: 13px;
    row-gap: 6px;
    font-size: 0.75rem;
  }
  .exam-meta > span:first-child {
    width: 100%;
  }
  .exam-heading {
    margin-bottom: 26px;
  }
  .tabs {
    gap: 24px;
  }
  .tabs button {
    padding-bottom: 14px;
    font-size: 0.875rem;
  }
  .tabs button .icon {
    height: 16px;
    width: 16px;
  }
  .tab-scroll {
    margin-bottom: 23px;
    margin-right: -20px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin-bottom: 17px;
  }
  .stat-card {
    padding: 16px;
  }
  .stat-head {
    font-size: 0.875rem;
  }
  .stat-foot {
    font-size: 0.75rem;
  }
  .stat-value {
    font-size: 1.8rem;
  }
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .queue-card {
    grid-row: 3;
  }
  .candidates-card {
    grid-row: 2;
  }
  .setup-card {
    grid-template-columns: 1fr;
  }
  .health-row > span:last-child {
    display: initial;
  }
  .setup-card .card-heading,
  .exam-progress {
    grid-column: auto;
  }
  .activity-chart svg {
    min-height: 0;
  }
  .queue-time {
    display: block;
  }
  .queue-card .card-heading h3 {
    font-size: 1rem;
  }
  .queue-item {
    padding: 16px 20px;
  }
  .queue-copy strong {
    font-size: 0.875rem;
  }
  .queue-copy p {
    font-size: 0.875rem;
  }
  .section-heading {
    margin-bottom: 18px;
    align-items: flex-start;
  }
  .section-heading p {
    font-size: 0.875rem;
  }
  .section-heading h2 {
    font-size: 1.2rem;
  }
  .section-heading .button {
    padding: 9px 11px;
  }
  .card-heading .text-button {
    font-size: 0.75rem;
  }
  .chart-note {
    font-size: 0.75rem;
    padding: 12px 16px;
    align-items: flex-start;
  }
  .chart-note .icon {
    margin-top: 2px;
  }
  .chart-legend {
    padding-right: 20px;
  }
  .card-heading {
    padding-top: 18px;
  }
  .small-label {
    font-size: 0.75rem;
  }
  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
    font-size: 0.75rem;
  }
  .monitor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
  }
  .feed {
    height: 160px;
  }
  .monitor-info-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .monitor-foot {
    flex-wrap: wrap;
  }
  .toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .toolbar-left {
    width: 100%;
  }
  .search-field {
    flex: 1;
  }
  .search-field input {
    width: 100%;
  }
  .alert-row {
    flex-wrap: wrap;
    gap: 12px;
  }
  .alert-main {
    flex: 1;
    min-width: calc(100% - 70px);
  }
  .alert-meta {
    margin-left: 52px;
    align-items: flex-start;
    flex-direction: row;
    align-items: center;
    flex: 1;
  }
  .alert-row > .button {
    margin-left: auto;
  }
  .reports-grid {
    grid-template-columns: 1fr;
  }
  .report-wide {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
  }
  .report-summary {
    padding: 23px;
  }
  .settings-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .settings-actions {
    width: 100%;
  }
  .settings-actions .primary {
    flex: 1;
  }
  .setting-row {
    padding: 19px;
    gap: 12px;
  }
  .setting-row .health-icon {
    display: none;
  }
  .setting-copy strong {
    font-size: 0.875rem;
  }
  .setting-copy p {
    font-size: 0.75rem;
  }
  .settings-actions .button {
    padding: 10px 12px;
  }
  .detail-grid {
    gap: 20px 12px;
  }
  .dialog-head,
  .dialog-body {
    padding: 20px;
  }
  .dialog-actions {
    padding: 15px 20px;
  }
  .profile-avatar {
    width: 31px;
    height: 31px;
  }
  .demo-badge {
    font-size: 0.75rem;
    padding: 4px 7px;
  }
  .demo-badge .icon {
    display: none;
  }
  .table-bottom {
    padding: 13px 16px;
  }
}
@media (max-width: 420px) {
  .header-inner {
    padding: 0 16px;
  }
  .brand {
    font-size: 1.3rem;
    gap: 8px;
  }
  .brand-mark {
    width: 30px;
    height: 34px;
  }
  .header-right {
    gap: 9px;
  }
  .workspace {
    padding-left: 16px;
    padding-right: 16px;
  }
  .tab-scroll {
    margin-right: -16px;
  }
  .title-row h1 {
    font-size: 1.4rem;
  }
  .card-heading {
    gap: 9px;
  }
  .card-heading .text-button .icon {
    display: none;
  }
  .card-heading h3 {
    font-size: 0.9375rem;
  }
  .card-heading .small-label {
    display: none;
  }
  .stat-card {
    padding: 14px;
  }
  .stat-head {
    font-size: 0.75rem;
  }
  .stat-icon {
    width: 25px;
    height: 25px;
  }
  .stat-icon .icon {
    width: 15px;
    height: 15px;
  }
  .monitor-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .feed {
    height: 145px;
  }
  .feed-avatar {
    width: 55px;
    height: 55px;
    font-size: 1.2rem;
  }
  .monitor-info {
    padding: 11px;
  }
  .monitor-info-top strong {
    font-size: 0.875rem;
  }
  .monitor-foot {
    font-size: 0.75rem;
  }
  .alert-meta {
    margin-left: 0;
  }
  .segmented button {
    padding: 6px 9px;
  }
  .section-heading {
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.switch:has(input:disabled) {
  opacity: 0.55;
  cursor: default;
}
.switch input:disabled {
  cursor: default;
}
