/* Employee questionnaire allocation flow (near chat) */
.eq-flow {
  margin: .75rem 0 1rem;
  padding: .9rem 1rem 1.1rem;
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(15, 39, 68, .06), rgba(13, 122, 111, .08)),
    #f6f8fb;
  border: 1px solid rgba(18, 35, 58, .12);
  color: #12233a;
  font-size: .92rem;
  animation: eq-in .35s ease-out;
}
@keyframes eq-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.eq-flow__header {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .85rem;
  align-items: baseline;
  margin-bottom: .65rem;
}
.eq-flow__brand {
  font-size: 1.05rem;
  letter-spacing: .03em;
  color: #0f2744;
}
.eq-flow__title { color: #5a6b7d; font-size: .88rem; }
.eq-flow__body p { margin: 0 0 .75rem; line-height: 1.45; }
.eq-flow__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .75rem;
}
.eq-btn {
  appearance: none;
  border: none;
  border-radius: 999px;
  padding: .55rem .95rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.eq-btn:disabled { opacity: .45; cursor: not-allowed; }
.eq-btn--primary { background: #0d7a6f; color: #fff; }
.eq-btn--accent { background: #c45c26; color: #fff; }
.eq-btn--ghost {
  background: transparent;
  color: #0f2744;
  border: 1px solid rgba(18, 35, 58, .2);
}
.eq-flow__live { font-size: .9rem; }
.eq-flow__banner {
  background: #fff3e0;
  color: #a15c12;
  padding: .5rem .7rem;
  border-radius: 8px;
}
.eq-list { display: flex; flex-direction: column; gap: .4rem; margin: .5rem 0; }
.eq-row {
  display: grid;
  grid-template-columns: 1fr 72px auto auto auto;
  gap: .35rem;
  align-items: center;
}
.eq-row__label { font-weight: 600; }
.eq-input {
  width: 100%;
  padding: .4rem .55rem;
  border: 1px solid #d5dde8;
  border-radius: 8px;
  font: inherit;
  background: #fff;
}
.eq-input--count { max-width: 72px; }
.eq-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  border: 1px solid #d5dde8;
  background: #fff;
  cursor: pointer;
}
.eq-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .5rem;
  align-items: center;
}
.eq-check { font-size: .85rem; display: flex; gap: .35rem; align-items: center; }
.eq-catalog {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  max-height: 160px;
  overflow: auto;
  margin-bottom: .75rem;
}
.eq-chip {
  border: 1px solid #d5dde8;
  background: #fff;
  border-radius: 999px;
  padding: .35rem .7rem;
  font: inherit;
  cursor: pointer;
}
.eq-chip small { color: #5a6b7d; margin-left: .25rem; }
.eq-subhead { font-size: .95rem; margin: .75rem 0 .4rem; }
.eq-summary {
  display: grid;
  gap: .45rem;
  margin: 0 0 .85rem;
}
.eq-summary > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: .5rem;
}
.eq-summary dt { color: #5a6b7d; margin: 0; }
.eq-summary dd { margin: 0; font-weight: 600; }
.eq-field { margin-bottom: .65rem; }
.eq-field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .25rem; }
.eq-field select, .eq-field input { width: 100%; max-width: 280px; }
.eq-note { font-size: .82rem; color: #5a6b7d; }
.eq-ok { color: #1b7a4e; font-weight: 600; }
.eq-warn { color: #a15c12; font-weight: 600; }
.eq-example-list { padding-left: 1.1rem; margin: 0 0 .75rem; }
.eq-example-list li { margin-bottom: .45rem; }
.eq-example-list span { color: #5a6b7d; font-size: .85rem; }

@media (max-width: 560px) {
  .eq-row { grid-template-columns: 1fr 64px; }
  .eq-summary > div { grid-template-columns: 1fr; }
}
