#candidateDialogOverlay.candidate-modal-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483647 !important;
  background: rgba(226, 234, 244, 0.72) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  padding: 18px !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.candidate-modal {
  width: min(1560px, 100%) !important;
  height: min(92vh, 920px) !important;
  max-height: min(92vh, 920px) !important;
  min-height: 0 !important;
  background: #ffffff !important;
  border: 0 !important;
  border-radius: 20px !important;
  box-shadow: 0 18px 60px rgba(35, 55, 88, 0.18) !important;
  padding: 24px 28px 28px !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  opacity: 0;
  transform: translateY(14px) scale(.985);
  transition: opacity .28s cubic-bezier(.2,.8,.2,1), transform .28s cubic-bezier(.2,.8,.2,1) !important;
}

.candidate-modal-header {
  height: 44px;
  flex: 0 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.candidate-modal-header h2 {
  margin: 0;
  color: #1c2b44;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.candidate-modal-close {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #f1f5fb;
  color: #17233a;
  font-size: 28px;
  line-height: 48px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.candidate-modal-close:hover {
  background: #e7edf7;
}

.candidate-modal-body {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 450px minmax(0, 1fr);
  gap: 28px;
  margin-top: 18px;
}

.candidate-profile-panel,
.candidate-chat-panel {
  min-height: 0;
  border: 1px solid #dfe7f2;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(35, 55, 88, 0.06);
}

.candidate-profile-panel {
  padding: 26px 24px;
  box-sizing: border-box;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #b7c0cc transparent;
}

.candidate-profile-top {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.candidate-avatar {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(180deg, #075dff 0%, #2469ff 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -0.6px;
  box-shadow: 0 9px 18px rgba(0, 92, 255, .25);
}

.candidate-title-block {
  min-width: 0;
}

.candidate-name {
  margin: 0 0 12px;
  color: #0f1733;
  font-size: 21px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.55px;
}

.candidate-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  color: #6d759a;
  font-size: 13px;
  font-weight: 600;
}

.candidate-meta a {
  color: #005cff;
  text-decoration: none;
}

.candidate-meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid #35bd63;
}

.candidate-status-text {
  color: #005cff;
  font-weight: 700;
}

.candidate-info-card {
  border: 1px solid #e2e8f3;
  border-radius: 12px;
  padding: 13px 16px 0 14px;
  margin-bottom: 23px;
}

.candidate-refresh-button {
  width: 100%;
  margin-top: 9px;
  height: 42px;
  border: 1px solid #cfd8e6;
  border-radius: 9px;
  background: #fff;
  color: #223049;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.candidate-refresh-button:hover {
  background: #f1f5fb;
}
.candidate-refresh-button:disabled {
  opacity: 0.6;
  cursor: default;
}
.candidate-chat-note-button {
  border: 0;
  border-radius: 9px;
  padding: 0 16px;
  height: 42px;
  background: #2f74d0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.candidate-chat-note-button:hover {
  background: #2864b8;
}
.candidate-chat-note-button:disabled {
  opacity: 0.6;
  cursor: default;
}

.candidate-info-row {
  min-height: 73px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  column-gap: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e2e8f3;
}

.candidate-info-row + .candidate-info-row {
  padding-top: 15px;
}

.candidate-info-row:last-child {
  border-bottom: 0;
  padding-bottom: 16px;
}

.candidate-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f3f6fb;
  color: #005cff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.candidate-info-label {
  margin-bottom: 9px;
  color: #68739e;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.45px;
}

.candidate-info-value {
  color: #0f1733;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.15px;
  overflow-wrap: anywhere;
}

.candidate-info-icon svg {
  width: 18px;
  height: 18px;
}

.candidate-resume-link {
  color: #1462ff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.candidate-resume-link:hover {
  text-decoration: underline;
}

.candidate-status-button {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(180deg, #030b1c 0%, #010614 100%);
  color: #ffffff;
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: -0.2px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 12px 18px rgba(1, 6, 20, 0.13);
}

.candidate-status-button:disabled {
  cursor: default;
  opacity: .9;
}

.candidate-stage-block {
  margin-top: 28px;
  display: grid;
  gap: 12px;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.candidate-stage-title {
  color: #18263d;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.candidate-stage-subtitle {
  color: #7b8ba4;
  font-size: 15px;
  font-weight: 700;
}

.candidate-stage-select {
  width: 100%;
  height: 58px;
  border: 1px solid #d5dfed;
  border-radius: 12px;
  background: #ffffff;
  color: #101827;
  padding: 0 18px;
  font-size: 17px;
  font-weight: 800;
  outline: none;
}

.candidate-stage-save-button {
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 12px;
  background: #2563eb;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.candidate-chat-panel {
  display: flex;
  flex-direction: column;
  padding: 30px 24px 24px;
  box-sizing: border-box;
}

.candidate-chat-header {
  padding: 0 16px 18px;
  flex: 0 0 auto;
}

.candidate-chat-header h3 {
  margin: 0 0 8px;
  color: #17233a;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
}

.candidate-chat-header p {
  margin: 0;
  color: #75849c;
  font-size: 17px;
  font-weight: 700;
}

.candidate-chat-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 8px 18px 24px 16px;
  scrollbar-color: #b7c0cc transparent;
  scrollbar-width: thin;
  background: #ffffff !important;
}

.chat-system-message {
  width: min(930px, 100%);
  margin: 0 auto 12px;
  padding: 24px 28px;
  box-sizing: border-box;
  border-radius: 16px;
  background: #f5f7fb;
  text-align: center;
  color: #303c52;
  border: 0;
  box-shadow: none;
}

.chat-system-message::before,
.chat-system-message::after,
.chat-system-message div::before,
.chat-system-message div::after {
  content: none !important;
  display: none !important;
}

.chat-system-text {
  color: #303c52;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  white-space: pre-wrap;
}

.chat-system-text.is-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.chat-system-message.expanded .chat-system-text {
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
}

.chat-system-toggle {
  margin: 12px auto 0;
  border: 0;
  background: transparent;
  color: #1462ff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.chat-system-meta {
  margin-top: 14px;
  color: #96a2b5;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.chat-message-row {
  display: flex;
  margin: 28px 0;
}

.chat-message-row-manager {
  justify-content: flex-end;
}

.chat-message-row-candidate {
  justify-content: flex-start;
}

.chat-manager-message,
.chat-candidate-message {
  position: relative;
  max-width: 790px;
  padding: 20px 26px 24px;
  border-radius: 16px;
  box-sizing: border-box;
}

.chat-manager-message {
  background: linear-gradient(135deg, #2e7bff, #154ee9);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(31, 93, 238, 0.22);
}

.chat-manager-message::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: 0;
  width: 18px;
  height: 18px;
  background: #154ee9;
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
}

.chat-candidate-message {
  background: #ffffff;
  color: #17233a;
  border: 1px solid #dfe7f2;
  box-shadow: 0 10px 24px rgba(35, 55, 88, 0.08);
}

.chat-candidate-message::after {
  content: "";
  position: absolute;
  left: -1px;
  bottom: 0;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-left: 1px solid #dfe7f2;
  border-bottom: 1px solid #dfe7f2;
  clip-path: polygon(0 100%, 100% 100%, 0 0);
}

.chat-manager-meta,
.chat-candidate-meta {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 700;
}

.chat-manager-meta {
  color: rgba(255, 255, 255, 0.78);
}

.chat-candidate-meta {
  color: #75849c;
}

.chat-manager-text,
.chat-candidate-text {
  font-size: 19px;
  line-height: 1.42;
  font-weight: 700;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.candidate-chat-composer {
  border: 1px solid #dfe7f2;
  border-radius: 16px;
  padding: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  background: #ffffff;
  flex: 0 0 auto;
}

.candidate-chat-input {
  height: 42px;
  border: 1px solid #d4dfed;
  border-radius: 11px;
  padding: 0 16px;
  color: #223049;
  font-size: 15px;
  font-weight: 500;
  outline: none;
  background: #ffffff;
  cursor: text;
}

.candidate-chat-icon-button,
.candidate-chat-send-button {
  border: 0;
  cursor: default;
}

.candidate-chat-icon-button {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: transparent;
  color: #7f8da3;
  font-size: 22px;
}

.candidate-chat-send-button {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2d75ff, #1754e9);
  color: #ffffff;
  font-size: 26px;
  opacity: 1;
}

.candidate-chat-icon-button:disabled,
.candidate-chat-send-button:disabled {
  opacity: 1;
}

.candidate-modal-loading {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #17233a;
  text-align: center;
}

.candidate-modal-loading b {
  font-size: 24px;
  font-weight: 800;
}

.candidate-modal-loading p {
  margin: 0;
  color: #75849c;
  font-size: 16px;
  font-weight: 700;
}

.candidate-modal-loading.error p {
  color: #991b1b;
}

.candidate-chat-empty {
  margin: 40px 0;
  color: #75849c;
  text-align: center;
  font-weight: 800;
}

@media (max-width: 1180px) {
  #candidateDialogOverlay.candidate-modal-overlay {
    overflow: auto !important;
    align-items: flex-start !important;
  }

  .candidate-modal {
    height: 96vh !important;
    max-height: none !important;
  }

  .candidate-modal-body {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .candidate-profile-panel {
    overflow: visible;
  }

  .candidate-chat-panel {
    min-height: 720px;
  }
}

@media (max-width: 720px) {
  #candidateDialogOverlay.candidate-modal-overlay {
    padding: 10px !important;
  }

  .candidate-modal {
    padding: 18px !important;
    border-radius: 18px !important;
  }

  .candidate-profile-top {
    align-items: flex-start;
    gap: 16px;
  }

  .candidate-avatar {
    flex-basis: 64px;
    width: 64px;
    height: 64px;
    font-size: 26px;
  }

  .candidate-name {
    font-size: 18px;
  }

  .candidate-chat-composer {
    grid-template-columns: minmax(0, 1fr) 38px 38px 52px;
  }
}

/* План HR-бота (read-only, сворачиваемая карточка, по исходному референсу .hr-bot-plan) */
.hr-bot-plan {
  margin: 14px 0 0;
  border: 1px solid #dfe7f2;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .04);
  padding: 18px;
  overflow: hidden;
}
.hr-bot-plan__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
}
.hr-bot-plan__header::-webkit-details-marker {
  display: none;
}
.hr-bot-plan__title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.hr-bot-plan__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0f1733;
}
.hr-bot-plan__info {
  width: 16px;
  height: 16px;
  color: #172354;
  flex: 0 0 auto;
}
.hr-bot-plan__caret {
  width: 18px;
  height: 18px;
  color: #8290a8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: transform .2s ease;
}
.hr-bot-plan[open] .hr-bot-plan__caret {
  transform: rotate(180deg);
}
.hr-bot-plan__body {
  padding-top: 18px;
}
.hr-bot-plan__empty {
  margin: 0 0 18px;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.15px;
  color: #7680a5;
}
.hr-bot-plan__rows {
  margin-bottom: 16px;
}
.hr-bot-plan__row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 10px;
  padding: 9px 0;
  font-size: 13.5px;
  line-height: 1.35;
  border-top: 1px solid #eef2f8;
}
.hr-bot-plan__row:first-child {
  border-top: none;
}
.hr-bot-plan__key {
  color: #68739e;
  font-weight: 700;
}
.hr-bot-plan__val {
  color: #0f1733;
  font-weight: 800;
  letter-spacing: -0.15px;
  word-break: break-word;
}
.hr-bot-plan__analyze-btn {
  width: 100%;
  height: 50px;
  border: 1px solid #d5dfed;
  border-radius: 14px;
  background: #ffffff;
  color: #17233a;
  font-family: inherit;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.hr-bot-plan__analyze-btn:hover {
  border-color: #005cff;
  background: #f7faff;
}
.hr-bot-plan__analyze-btn:disabled {
  cursor: default;
  opacity: .6;
}
.hr-bot-plan__icon {
  width: 17px;
  height: 17px;
  color: #005cff;
  flex: 0 0 auto;
}
.hr-bot-plan__error {
  margin-top: 10px;
  text-align: center;
  color: #991b1b;
  font-size: 13px;
  font-weight: 700;
}

/* L2: стоимость LLM-анализа — цена в шапке, предупреждение, ссылка, popup, toast */
.hr-bot-plan__header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.hr-bot-plan__cost {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}
.hr-bot-plan__cost-val {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.15px;
  color: #ef4444;
}
.hr-bot-plan__cost-sub {
  margin-top: 2px;
  font-size: 10.5px;
  font-weight: 600;
  color: #8290a8;
}
.hr-bot-plan__warn {
  margin: 0 0 14px;
  padding: 9px 12px;
  border-radius: 10px;
  background: #fff4f4;
  border: 1px solid #f7d4d4;
  color: #b42318;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.3;
}
.hr-bot-plan__cost-link {
  display: block;
  margin: 13px auto 0;
  padding: 0;
  border: 0;
  background: none;
  color: #005cff;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
}
.hr-bot-plan__cost-link:hover {
  text-decoration: underline;
}
.hr-bot-plan__cost-popup {
  position: fixed;
  z-index: 2147483647; /* >= overlay; popup живёт в body после открытия */
  width: 320px;
  max-width: 320px;
  background: #ffffff;
  border: 1px solid #dbe6f3;
  border-radius: 15px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .14);
  padding: 16px;
  overflow: visible;
}
.hr-bot-plan__cost-popup[hidden] {
  display: none;
}
/* треугольник-указатель слева (в сторону карточки плана) */
.hr-bot-plan__cost-popup::before {
  content: "";
  position: absolute;
  top: 16px;
  left: -9px;
  border-style: solid;
  border-width: 8px 9px 8px 0;
  border-color: transparent #dbe6f3 transparent transparent;
}
.hr-bot-plan__cost-popup::after {
  content: "";
  position: absolute;
  top: 16px;
  left: -8px;
  border-style: solid;
  border-width: 8px 9px 8px 0;
  border-color: transparent #ffffff transparent transparent;
}
.hr-bot-plan__cost-popup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.hr-bot-plan__cost-popup-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #0f1733;
}
.hr-bot-plan__cost-popup-x {
  border: 0;
  background: none;
  font-size: 18px;
  line-height: 1;
  color: #8290a8;
  cursor: pointer;
  padding: 0 2px;
}
.hr-bot-plan__cost-popup-x:hover {
  color: #0f1733;
}
.hr-bot-plan__cost-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  font-size: 13px;
  border-top: 1px solid #eef2f8;
}
.hr-bot-plan__cost-row:first-child {
  border-top: 0;
}
.hr-bot-plan__cost-k {
  color: #68739e;
  font-weight: 600;
}
.hr-bot-plan__cost-v {
  color: #0f1733;
  font-weight: 700;
  text-align: right;
}
.hr-bot-plan__cost-v--rub {
  color: #ef4444;
}
.hr-bot-plan__cost-popup-foot {
  margin-top: 10px;
  font-size: 11px;
  color: #8290a8;
}
.hr-bot-plan-toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%) translateY(10px);
  background: #0f1733;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .22);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 99999;
  pointer-events: none;
}
.hr-bot-plan-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Card data-completion (Part A): pencil-edit + предложения из переписки ── */
.candidate-info-row { grid-template-columns: 42px minmax(0, 1fr) auto; }
.candidate-info-edit {
  border: 0;
  background: transparent;
  color: #98a2b8;
  font-size: 15px;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 7px;
  opacity: 0;
  transition: opacity .15s, background .15s, color .15s;
}
.candidate-info-row:hover .candidate-info-edit { opacity: 1; }
.candidate-info-edit:hover { background: #eef3fb; color: #005cff; }
.candidate-info-editbox { display: inline-flex; gap: 6px; align-items: center; }
.candidate-info-input {
  border: 1px solid #cfd8e6;
  border-radius: 7px;
  padding: 5px 8px;
  font-size: 14px;
  color: #17233a;
  min-width: 120px;
}
.candidate-info-save, .candidate-info-cancel {
  border: 1px solid #cfd8e6;
  border-radius: 7px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 14px;
  background: #fff;
}
.candidate-info-save { color: #1f9d55; border-color: #b7e3c6; }
.candidate-info-cancel { color: #c0435a; border-color: #f0c6cf; }

.candidate-fill-panel {
  border: 1px solid #dbe6f6;
  background: #f6f9ff;
  border-radius: 11px;
  padding: 12px 13px;
  margin: 0 0 14px;
}
.fill-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: #223049;
  margin-bottom: 9px;
}
.fill-all {
  border: 1px solid #b9d0f6;
  background: #fff;
  color: #005cff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  padding: 5px 10px;
  cursor: pointer;
}
.fill-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid #e4ecf8;
}
.fill-item-label { font-size: 12px; color: #6d759a; }
.fill-conflict { color: #c0721c; font-weight: 600; }
.fill-item-proposed { font-size: 14px; font-weight: 600; color: #17233a; }
.fill-snippet { font-size: 12px; color: #8a93ad; margin-top: 2px; }
.fill-item-actions { display: flex; gap: 6px; flex: none; }
.fill-apply, .fill-skip {
  border-radius: 8px;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #cfd8e6;
  background: #fff;
}
.fill-apply { background: linear-gradient(180deg, #075dff 0%, #2469ff 100%); color: #fff; border: 0; }
.fill-skip { color: #6d759a; }

/* ── Карточка v2 (2026-08-13): вердикт-плашка, вакансия/таймлайн, телефон, бот-пузырь ── */
.candidate-verdict {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  margin: 14px 0 4px; padding: 10px 14px; border-radius: 12px;
  font-size: 15px; font-weight: 800; line-height: 1.3;
}
.candidate-verdict-reason { font-weight: 600; font-size: 13px; opacity: .85; }
.candidate-verdict--ok { background: #e7f7ec; color: #157a3a; border: 1px solid #b7e3c4; }
.candidate-verdict--no { background: #fdecec; color: #c0342b; border: 1px solid #f3c2bf; }
.candidate-verdict--wait { background: #fff6e5; color: #9a6a10; border: 1px solid #f2dca6; }
.candidate-meta-vac { color: #005cff; font-weight: 700; }
.candidate-timeline { margin-top: 6px; font-size: 13px; color: #6d759a; font-weight: 600; }
.candidate-timeline-sep { opacity: .5; margin: 0 2px; }
.candidate-waiting { color: #c0342b; font-weight: 800; }
.candidate-phone-link { color: #005cff; font-weight: 800; text-decoration: none; }
.candidate-phone-link:hover { text-decoration: underline; }
.candidate-phone-copy {
  margin-left: 8px; border: 1px solid #cfd8e6; background: #f1f5fb; color: #223049;
  border-radius: 7px; padding: 1px 7px; font-size: 13px; cursor: pointer; line-height: 1.4;
}
.candidate-phone-copy:hover { background: #e7edf7; }
.candidate-info-note { margin-top: 3px; font-size: 12.5px; color: #9098b3; font-weight: 600; }
/* HR-бот отличается от живого менеджера цветом пузыря (бирюзовый vs синий) */
.chat-bot-message { background: linear-gradient(135deg, #14b8a6, #0d9488) !important; box-shadow: 0 14px 28px rgba(13, 148, 136, 0.22) !important; }
.chat-bot-message::after { background: #0d9488 !important; }
