img[src*="/avatars/interviewer"] {
  opacity: 1 !important;
  filter: none !important;
}

#interview-progress-shell {
  position: fixed;
  top: 52px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2147483646;
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}

.interview-progress-track {
  width: 100%;
  height: 16px;
  border: 2px solid #a7a7a7;
  border-radius: 999px;
  background: #f3f3f3;
  overflow: hidden;
  box-sizing: border-box;
}

.interview-progress-fill {
  width: 6%;
  height: 100%;
  background: #ff0473;
  border-radius: 999px 0 0 999px;
  transition: width 180ms ease;
}

.interview-progress-label {
  font-size: 11px;
  line-height: 1;
  color: #666666;
  letter-spacing: 0.02em;
}

/* Persistent corner logos */
body::before {
  content: "" !important;
  display: block !important;
  position: fixed !important;
  left: calc((100vw - min(960px, 100vw - 32px)) / 4) !important;
  bottom: 16px !important;
  width: 220px !important;
  height: 64px !important;
  background: url("/public/uni-logo.png") left center / contain no-repeat !important;
  z-index: 2147483647 !important;
  pointer-events: none !important;
  transform: translateX(-50%) !important;
}

body::after {
  content: "" !important;
  display: block !important;
  position: fixed !important;
  right: calc((100vw - min(960px, 100vw - 32px)) / 4) !important;
  bottom: 16px !important;
  width: 260px !important;
  height: 68px !important;
  background: url("/public/lab-logo.png") right center / contain no-repeat !important;
  z-index: 2147483647 !important;
  pointer-events: none !important;
  transform: translateX(50%) !important;
}

@media (prefers-color-scheme: dark) {
  body::before {
    background-image: url("/public/uni-logo-light.png") !important;
  }
  body::after {
    background-image: url("/public/lab-logo-light.png") !important;
  }
}

html.dark body::before,
body.dark::before,
html[data-theme="dark"] body::before,
body[data-theme="dark"]::before,
html[data-color-scheme="dark"] body::before,
body[data-color-scheme="dark"]::before,
html[data-mui-color-scheme="dark"] body::before,
body[data-mui-color-scheme="dark"]::before {
  background-image: url("/public/uni-logo-light.png") !important;
}

html.dark body::after,
body.dark::after,
html[data-theme="dark"] body::after,
body[data-theme="dark"]::after,
html[data-color-scheme="dark"] body::after,
body[data-color-scheme="dark"]::after,
html[data-mui-color-scheme="dark"] body::after,
body[data-mui-color-scheme="dark"]::after {
  background-image: url("/public/lab-logo-light.png") !important;
}

@media (max-width: 1450px) {
  body::before,
  body::after {
    display: none !important;
  }
}

@media (max-width: 900px) {
  #interview-progress-shell {
    width: min(220px, calc(100vw - 120px));
  }

  .interview-progress-track {
    height: 14px;
  }

  .interview-progress-label {
    display: none;
  }
}

@media (max-width: 768px) {
  #interview-progress-shell {
    display: none !important;
  }
}
