:root {
  color-scheme: light;
  --ink: #18211f;
  --muted: #65716d;
  --quiet: #8a9691;
  --line: #dce4df;
  --soft: #edf3ef;
  --panel: #ffffff;
  --page: #f7f8f4;
  --accent: #0d6a55;
  --accent-dark: #084d3d;
  --blue: #245f9f;
  --amber: #9c6812;
  --rose: #aa4059;
  --shadow: 0 18px 50px rgba(24, 33, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--page);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body.auth-page {
  display: grid;
  place-items: center;
  padding: 24px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(13, 106, 85, 0.35);
  outline-offset: 2px;
}

.app-shell {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  min-height: 100vh;
}

.auth-shell {
  width: min(100%, 460px);
}

.auth-panel {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 26px;
  box-shadow: var(--shadow);
}

.auth-logo {
  width: 190px;
  height: 92px;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.auth-heading {
  display: grid;
  gap: 5px;
}

.auth-heading h1 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.auth-tab {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
}

.auth-tab.active {
  border-color: rgba(13, 106, 85, 0.34);
  color: var(--ink);
  background: var(--soft);
}

.auth-form {
  display: grid;
  gap: 13px;
}

.auth-subheading {
  display: grid;
  gap: 4px;
}

.auth-subheading strong {
  font-size: 15px;
}

.auth-subheading span,
.auth-secondary {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.auth-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.auth-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
}

.password-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.password-field:focus-within {
  outline: 2px solid rgba(13, 106, 85, 0.35);
  outline-offset: 2px;
}

.password-field input {
  border: 0;
  outline: 0;
}

.password-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0 8px 8px 0;
  color: var(--muted);
  background: transparent;
  text-align: center;
}

.password-toggle.visible {
  color: var(--accent-dark);
  background: var(--soft);
}

.auth-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.sidebar {
  border-right: 1px solid var(--line);
  background: #fcfdfb;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.brand {
  display: grid;
  gap: 7px;
}

.brand-logo {
  width: min(186px, 100%);
  height: 92px;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.nav-list {
  display: grid;
  gap: 8px;
}

.nav-item,
.segment,
.secondary-action,
.ghost-action,
.danger-action,
.mini-action {
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  padding: 9px 11px;
  text-align: left;
}

.nav-item.active,
.segment.active {
  color: var(--ink);
  background: var(--soft);
  border-color: var(--line);
  font-weight: 800;
}

.sidebar-panel {
  margin-top: auto;
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px;
  background: #fff;
}

.sidebar-panel strong {
  font-size: 32px;
}

.workspace {
  min-width: 0;
  padding: 26px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.topbar h1 {
  margin: 2px 0 0;
  font-size: 34px;
  line-height: 1.05;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-box {
  min-width: min(380px, 38vw);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  background: #fff;
}

.search-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
}

.recruiter-session {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.recruiter-session span {
  max-width: 180px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.primary-action,
.secondary-action,
.ghost-action {
  font-weight: 800;
  white-space: nowrap;
}

.primary-action {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  background: var(--accent);
}

.primary-action:hover {
  background: var(--accent-dark);
}

.secondary-action {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.ghost-action {
  border-color: var(--line);
  color: var(--accent-dark);
  background: #f9fbf8;
}

.danger-action {
  border-color: #f1c8d0;
  color: #8c2f48;
  background: #fff7f9;
  font-weight: 800;
  white-space: nowrap;
}

.mini-action {
  min-height: 28px;
  padding: 4px 8px;
  font-size: 12px;
}

.primary-action:disabled,
.secondary-action:disabled,
.ghost-action:disabled,
.danger-action:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.metric,
.candidate-card,
.client-card,
.table-panel,
.activity-form,
.timeline-item,
.detail-list-button,
.detail-stat {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.metric {
  min-height: 116px;
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 15px;
}

.metric strong {
  font-size: 28px;
}

.metric small,
.section-heading p,
.candidate-meta,
.job-meta,
.timeline small,
.detail-muted,
.panel-label,
.eyebrow {
  color: var(--muted);
  font-size: 12px;
}

.panel-label,
.eyebrow,
.metric span,
.candidate-meta,
.job-meta {
  text-transform: uppercase;
  letter-spacing: 0;
}

.view {
  display: none;
}

.active-view {
  display: block;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.rank-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
}

.toolbar select,
.section-actions select,
label select,
label input,
label textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px 12px;
}

.pipeline-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(206px, 1fr));
  gap: 12px;
  align-items: start;
  overflow-x: auto;
  padding-bottom: 6px;
}

.stage-column {
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #eef3ef;
  transition:
    border-color 0.16s ease,
    background 0.16s ease,
    box-shadow 0.16s ease;
}

.stage-column.drag-over {
  border-color: rgba(13, 106, 85, 0.55);
  background: #e5f1eb;
  box-shadow: inset 0 0 0 2px rgba(13, 106, 85, 0.1);
}

.stage-header,
.candidate-footer,
.score-row,
.section-heading,
.table-row,
.client-head,
.stage-count,
.detail-list-button,
.detail-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.stage-header {
  min-height: 34px;
  margin-bottom: 9px;
  font-weight: 900;
}

.stage-header span {
  color: var(--muted);
  font-weight: 800;
}

.candidate-card {
  width: 100%;
  min-height: 154px;
  display: grid;
  gap: 9px;
  margin-bottom: 10px;
  padding: 12px;
  color: inherit;
  cursor: grab;
  text-align: left;
  box-shadow: 0 7px 18px rgba(24, 33, 31, 0.05);
}

.candidate-card:active {
  cursor: grabbing;
}

.candidate-card.dragging {
  opacity: 0.58;
  transform: scale(0.985);
}

.candidate-card-body {
  width: 100%;
  display: grid;
  gap: 9px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: inherit;
  padding: 0;
  text-align: left;
}

.candidate-card-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.candidate-card-actions {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.compare-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.compare-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.candidate-card.compare-selected {
  border-color: rgba(36, 95, 159, 0.55);
}

.candidate-card.ranked {
  border-color: rgba(13, 106, 85, 0.58);
  background: #fbfdfb;
}

.rank-badge {
  border: 0;
  min-width: 34px;
  min-height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.fit-score-badge {
  border: 0;
  min-width: 58px;
  min-height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--muted);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.fit-score-badge.green {
  background: var(--accent);
}

.fit-score-badge.blue {
  background: var(--blue);
}

.fit-score-badge.amber {
  color: #744a0d;
  background: #f7d47c;
}

.fit-score-badge.rose {
  background: #b94764;
}

.candidate-card:hover,
.record-row:hover,
.client-card:hover,
.detail-list-button:hover {
  border-color: rgba(13, 106, 85, 0.45);
}

.candidate-card.selected,
.record-row.selected,
.client-card.selected {
  border-color: var(--accent);
  outline: 2px solid rgba(13, 106, 85, 0.14);
}

.candidate-card strong {
  display: block;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--accent-dark);
  background: #e2f4ed;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.pill.blue {
  color: #174c82;
  background: #e4effa;
}

.pill.amber {
  color: #744a0d;
  background: #fff0d4;
}

.pill.rose {
  color: #8c2f48;
  background: #fae5eb;
}

.empty-note {
  margin: 14px 0;
  color: var(--muted);
  font-size: 13px;
}

.table-panel {
  padding: 16px;
}

.section-heading {
  align-items: flex-start;
  margin-bottom: 12px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.candidate-page-actions {
  align-items: end;
  gap: 10px;
}

.candidate-target-select {
  display: grid;
  gap: 5px;
  min-width: 260px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.candidate-target-select select {
  min-height: 40px;
}

.compact-filter {
  min-width: 180px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.checkbox-label input {
  width: auto;
}

.candidate-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vendor-send-controls {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.vendor-target-select {
  min-width: min(360px, 100%);
}

.vendor-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.parser-panel {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbf8;
  padding: 12px;
}

.parser-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.parse-button {
  min-height: 44px;
  color: var(--accent-dark);
}

.import-status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.section-heading h2,
.activity-form h2,
.detail-block h3 {
  margin: 0;
  font-size: 16px;
}

.section-heading p {
  margin: 4px 0 0;
}

.data-table {
  display: grid;
}

.candidate-directory {
  gap: 10px;
}

.job-directory {
  gap: 10px;
}

.resume-search-panel {
  display: grid;
  gap: 14px;
}

.resume-search-controls {
  display: grid;
  grid-template-columns: minmax(210px, 0.85fr) minmax(260px, 1.4fr) auto;
  gap: 12px;
  align-items: end;
}

.resume-search-results {
  display: grid;
  gap: 10px;
}

.resume-result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 176px;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.resume-result-main {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.resume-result-main p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.resume-result-side {
  display: grid;
  gap: 6px;
  align-content: start;
  justify-items: end;
  text-align: right;
}

.resume-result-side strong {
  font-size: 24px;
}

.record-link {
  border: 0;
  background: transparent;
  color: var(--accent-dark);
  padding: 0;
  text-align: left;
  font-weight: 900;
}

.table-row {
  width: 100%;
  min-height: 72px;
  border: 0;
  border-top: 1px solid var(--line);
  padding: 12px 8px;
  color: inherit;
  background: transparent;
  text-align: left;
}

.table-row:first-child {
  border-top: 0;
}

.job-list-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(24, 33, 31, 0.04);
  cursor: pointer;
}

.job-list-item.selected {
  border-color: var(--accent);
  outline: 2px solid rgba(13, 106, 85, 0.14);
}

.job-list-button {
  min-width: 0;
  display: grid;
  align-items: stretch;
  justify-content: stretch;
  gap: 12px;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 14px 16px;
  text-align: left;
}

.job-list-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.job-list-primary {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.job-list-primary strong {
  overflow: hidden;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.job-list-primary span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.job-list-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.job-pill-select {
  min-height: 24px;
  width: auto;
  max-width: 128px;
  border: 0;
  border-radius: 999px;
  padding: 3px 24px 3px 8px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.job-pill-select.green {
  color: var(--accent-dark);
  background: #e2f4ed;
}

.job-pill-select.blue {
  color: #174c82;
  background: #e4effa;
}

.job-pill-select.amber {
  color: #744a0d;
  background: #fff0d4;
}

.job-pill-select.rose {
  color: #8c2f48;
  background: #fae5eb;
}

.job-pill-select:hover {
  filter: brightness(0.98);
}

.job-pill-select:focus-visible {
  outline: 2px solid rgba(13, 106, 85, 0.32);
  outline-offset: 2px;
}

.candidate-row-button[role="button"]:focus-visible,
.client-card[role="button"]:focus-visible,
.detail-list-button[role="button"]:focus-visible {
  outline: 2px solid rgba(13, 106, 85, 0.22);
  outline-offset: -2px;
}

.job-fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 10px;
}

.job-fact {
  display: grid;
  gap: 3px;
  min-width: 0;
  border-top: 1px solid #edf3ef;
  padding-top: 9px;
}

.job-fact-button {
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.job-fact-button:hover {
  border-top-color: rgba(13, 106, 85, 0.5);
  color: var(--accent-dark);
}

.job-fact small {
  color: var(--quiet);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.job-fact strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.job-list-actions {
  display: grid;
  align-items: center;
  gap: 7px;
  padding: 14px 14px 14px 0;
}

.job-edit-action {
  border-color: var(--line);
  color: var(--accent-dark);
  background: #f9fbf8;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.job-edit-action:hover {
  border-color: rgba(13, 106, 85, 0.35);
  background: #eef6f2;
}

.job-candidates-modal {
  width: 100%;
}

.job-candidates-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
}

.job-candidates-summary strong {
  color: var(--ink);
}

.job-candidates-list {
  display: grid;
  gap: 10px;
}

.job-candidate-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 12px;
}

.job-candidate-main {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.job-candidate-main strong,
.job-candidate-main span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.job-candidate-main span {
  color: var(--muted);
  font-size: 13px;
}

.job-candidate-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 7px;
}

.static-rank {
  min-width: 34px;
}

.static-rank:hover {
  background: var(--accent-dark);
}

.job-description-modal {
  width: 100%;
}

.job-description {
  display: grid;
  gap: 14px;
}

.job-description-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
}

.job-description-summary .tag-row {
  margin-top: 8px;
}

.job-description-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.job-description-fact {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px;
}

.job-description-fact small {
  color: var(--quiet);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.job-description-fact strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.job-description-block {
  display: grid;
  gap: 8px;
}

.job-description-block h3 {
  margin: 0;
  font-size: 14px;
}

.job-description-block p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-wrap;
}

.job-source-link {
  width: fit-content;
}

.candidate-list-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(24, 33, 31, 0.04);
}

.candidate-list-item.compare-selected {
  border-color: rgba(36, 95, 159, 0.48);
  background: #f7fbff;
}

.candidate-list-item.selected {
  border-color: var(--accent);
  outline: 2px solid rgba(13, 106, 85, 0.14);
}

.candidate-select-control {
  display: grid;
  place-items: start center;
  padding: 18px 10px;
  border-right: 1px solid var(--line);
  background: #f8faf7;
}

.candidate-select-control input {
  width: 17px;
  height: 17px;
  accent-color: var(--accent);
}

.candidate-row-button {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.candidate-list-button {
  display: grid;
  align-items: stretch;
  justify-content: stretch;
  gap: 12px;
  padding: 14px 16px;
}

.candidate-list-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.candidate-list-primary {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.candidate-list-primary strong {
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.candidate-list-primary span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.candidate-list-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.candidate-list-pills .job-pill-select {
  max-width: 176px;
}

.candidate-fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(118px, 1fr));
  gap: 10px;
}

.candidate-fact {
  display: grid;
  gap: 3px;
  min-width: 0;
  border-top: 1px solid #edf3ef;
  padding-top: 9px;
}

.candidate-fact small {
  color: var(--quiet);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.candidate-fact strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.candidate-list-actions {
  display: grid;
  align-items: center;
  padding: 14px 14px 14px 0;
}

.candidate-resume-action {
  border-color: var(--line);
  color: var(--accent-dark);
  background: #f9fbf8;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.candidate-resume-action:hover {
  border-color: rgba(13, 106, 85, 0.35);
  background: #eef6f2;
}

.interview-link-panel,
.interview-result-list {
  display: grid;
  gap: 10px;
}

.interview-result-item {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbf8;
  padding: 12px;
}

.interview-result-item span,
.interview-result-item p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.interview-result-item p {
  margin: 0;
}

.interview-question-guide {
  display: grid;
  gap: 10px;
}

.interview-guide-heading,
.interview-guide-item {
  display: grid;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 12px;
}

.interview-guide-heading {
  background: #f9fbf8;
}

.interview-guide-heading span,
.interview-guide-item span,
.interview-guide-item p,
.interview-guide-item li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.interview-guide-item p,
.interview-guide-item ul {
  margin: 0;
}

.interview-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.interview-guide-grid small {
  display: block;
  margin-bottom: 5px;
  color: var(--quiet);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.table-main {
  min-width: 220px;
}

.table-number {
  min-width: 78px;
  text-align: right;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 12px;
}

.vendor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.vendor-management-home,
.vendor-job-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.vendor-nav-card,
.vendor-job-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  color: inherit;
  background: #fff;
  box-shadow: 0 7px 18px rgba(24, 33, 31, 0.04);
  text-align: left;
  cursor: pointer;
}

.vendor-nav-card:hover,
.vendor-job-card:hover {
  border-color: rgba(13, 106, 85, 0.45);
}

.vendor-nav-card span,
.vendor-job-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.vendor-nav-card strong {
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
}

.vendor-nav-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.vendor-job-card strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.vendor-job-card-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.vendor-job-card-stats span {
  border-top: 1px solid #edf3ef;
  padding-top: 8px;
}

.vendor-job-card-stats strong {
  display: inline;
  margin-right: 3px;
  font-size: 14px;
}

.vendor-candidate-directory {
  gap: 10px;
}

.vendor-submissions-section {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.client-card {
  min-height: 190px;
  display: grid;
  gap: 14px;
  padding: 16px;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.vendor-list-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(24, 33, 31, 0.04);
}

.vendor-list-item.vendor-selected {
  border-color: rgba(36, 95, 159, 0.48);
  background: #f7fbff;
}

.vendor-select-control {
  display: grid;
  place-items: start center;
  padding: 18px 10px;
  border-right: 1px solid var(--line);
  background: #f8faf7;
}

.vendor-select-control input {
  width: 17px;
  height: 17px;
  accent-color: var(--accent);
}

.vendor-list-main {
  display: grid;
  gap: 12px;
  padding: 14px 16px;
}

.vendor-list-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.vendor-list-badges {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.vendor-list-primary {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.vendor-list-primary strong {
  overflow: hidden;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vendor-list-primary span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.vendor-status-label {
  min-height: 24px;
  border-radius: 8px;
  padding: 4px 9px;
  color: #174c82;
  background: #e4effa;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.vendor-status-label.green {
  color: #0a4a3b;
  background: #dff5eb;
}

.vendor-status-label.amber {
  color: #744a0d;
  background: #fae8b7;
}

.vendor-status-label.rose {
  color: #8c2741;
  background: #f8dbe3;
}

.vendor-candidate-item.declined {
  border-color: #d4d9d5;
  background: #f2f4f2;
  opacity: 0.78;
}

.vendor-candidate-item.declined .vendor-candidate-main {
  color: #596760;
}

.vendor-candidate-item.declined .vendor-status-label {
  color: #46524d;
  background: #e1e5e1;
}

.vendor-candidate-item.declined .vendor-status-label.rose {
  color: #8c2741;
  background: #f8dbe3;
}

.vendor-candidate-item.declined:hover {
  border-color: #c8cec9;
}

.recruiter-list-item {
  grid-template-columns: minmax(0, 1fr) auto;
}

.recruiter-list-main {
  display: grid;
  gap: 12px;
  padding: 14px 16px;
}

.recruiter-list-actions {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 14px 16px 14px 0;
}

.vendor-tier-badge {
  display: inline-grid;
  min-width: 112px;
  gap: 1px;
  border: 1px solid rgba(13, 106, 85, 0.18);
  border-radius: 8px;
  padding: 4px 9px;
  color: #174236;
  background: #edf8f3;
  line-height: 1.15;
  text-align: left;
  white-space: nowrap;
}

.vendor-tier-badge strong {
  font-size: 12px;
  font-weight: 900;
}

.vendor-tier-badge small {
  color: inherit;
  font-size: 10px;
  font-weight: 750;
  opacity: 0.82;
}

.vendor-tier-badge.tier-1 {
  border-color: rgba(13, 106, 85, 0.36);
  color: #0a4a3b;
  background: #dff5eb;
}

.vendor-tier-badge.tier-2 {
  border-color: rgba(36, 95, 159, 0.28);
  color: #174c82;
  background: #e4effa;
}

.vendor-tier-badge.tier-3 {
  border-color: rgba(193, 132, 31, 0.35);
  color: #744a0d;
  background: #fae8b7;
}

.vendor-tier-badge.tier-4 {
  border-color: rgba(185, 71, 100, 0.3);
  color: #8c2741;
  background: #f8dbe3;
}

.vendor-tier-badge.unscored {
  border-color: var(--line);
  color: var(--muted);
  background: #f4f6f3;
}

.vendor-fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 10px;
}

.vendor-fact {
  display: grid;
  gap: 3px;
  min-width: 0;
  border-top: 1px solid #edf3ef;
  padding-top: 9px;
}

.vendor-fact small {
  color: var(--quiet);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vendor-fact strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vendor-list-actions {
  display: grid;
  align-items: center;
  gap: 7px;
  padding: 14px 14px 14px 0;
}

.vendor-candidate-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(24, 33, 31, 0.04);
}

.vendor-candidate-item.promoted {
  border-color: rgba(13, 106, 85, 0.3);
  background: #f8fcfa;
}

.vendor-candidate-item.tier-1 {
  border-color: rgba(13, 106, 85, 0.36);
  background: #fbfefc;
}

.vendor-candidate-item.tier-2 {
  border-color: rgba(36, 95, 159, 0.24);
}

.vendor-candidate-main {
  display: grid;
  gap: 12px;
  padding: 14px 16px;
}

.vendor-candidate-summary {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.vendor-candidate-actions {
  display: grid;
  align-items: center;
  gap: 7px;
  padding: 14px 14px 14px 0;
}

.vendor-website-action {
  border-color: var(--line);
  color: var(--accent-dark);
  background: #f9fbf8;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.vendor-website-action:hover {
  border-color: rgba(13, 106, 85, 0.35);
  background: #eef6f2;
}

.vendor-score-action {
  border-color: rgba(36, 95, 159, 0.28);
  color: #174c82;
  background: #eef5fc;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.vendor-score-action:hover {
  border-color: rgba(36, 95, 159, 0.42);
  background: #e4effa;
}

.vendor-request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vendor-response-page {
  min-height: 100vh;
  background: #edf3f6;
}

.vendor-response-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.vendor-response-panel {
  width: min(100%, 560px);
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 45px rgba(18, 38, 53, 0.12);
}

.vendor-response-logo {
  width: 150px;
  height: auto;
  justify-self: center;
}

.vendor-response-panel h1 {
  margin: 0;
  font-size: 28px;
}

.vendor-thank-you-message {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.vendor-candidate-panel {
  width: min(100%, 680px);
}

.vendor-job-summary {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbf8;
  padding: 12px;
}

.vendor-job-summary span {
  color: var(--muted);
  font-size: 13px;
}

.vendor-response-form {
  display: grid;
  gap: 14px;
}

.vendor-response-form label {
  display: grid;
  gap: 7px;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.vendor-response-form input,
.vendor-response-form select,
.vendor-response-form textarea {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  text-transform: none;
}

.vendor-response-form textarea {
  min-height: 120px;
  padding: 10px 12px;
  resize: vertical;
}

.vendor-response-form input:focus,
.vendor-response-form select:focus,
.vendor-response-form textarea:focus {
  border-color: rgba(13, 106, 85, 0.55);
  box-shadow: 0 0 0 3px rgba(13, 106, 85, 0.12);
  outline: none;
}

.vendor-work-types {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  margin: 0;
}

.vendor-work-types legend {
  padding: 0 6px;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.vendor-work-option {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px !important;
  color: var(--ink) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  text-transform: none !important;
}

.vendor-work-option input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
}

.candidate-interview-shell {
  align-items: start;
  place-items: start center;
}

.candidate-interview-card {
  width: min(100%, 760px);
}

.vendor-response-heading {
  display: grid;
  gap: 6px;
}

.vendor-response-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.interview-progress {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbf8;
  padding: 10px 12px;
  color: var(--accent-dark);
  font-weight: 800;
}

.interview-chat {
  display: grid;
  gap: 10px;
}

.interview-message {
  max-width: 86%;
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}

.interview-message.candidate {
  justify-self: end;
  background: #eef6f2;
}

.interview-message span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.interview-message p {
  margin: 0;
  line-height: 1.55;
}

.interview-answer-form {
  display: grid;
  gap: 12px;
}

.interview-answer-form label {
  display: grid;
  gap: 7px;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.interview-answer-form textarea {
  width: 100%;
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  resize: vertical;
}

#vendorResponseStatus[data-mode="success"] {
  color: #0d6a55;
}

#vendorResponseStatus[data-mode="error"] {
  color: #a23434;
}

.client-stats,
.detail-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.client-stats div,
.detail-stat {
  border-radius: 8px;
  background: var(--soft);
  padding: 10px;
}

.activity-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.activity-form {
  display: grid;
  gap: 12px;
  padding: 16px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline-item {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.detail-card {
  display: grid;
  gap: 18px;
}

.detail-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

.detail-card p {
  margin: 6px 0 0;
}

.detail-block {
  display: grid;
  gap: 9px;
}

.detail-actions {
  align-items: stretch;
}

.detail-actions button {
  flex: 1;
  min-width: 0;
}

.stage-count {
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}

.stage-count:last-child {
  border-bottom: 0;
}

.stage-meter {
  height: 7px;
  border-radius: 999px;
  background: var(--soft);
  overflow: hidden;
}

.stage-meter span {
  display: block;
  height: 100%;
  min-width: 4px;
  background: var(--accent);
}

.detail-list-button {
  width: 100%;
  padding: 10px;
  color: inherit;
  text-align: left;
}

.detail-list-button small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.stage-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.stage-actions button,
.icon-button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 9px 10px;
}

dialog {
  width: min(760px, calc(100vw - 28px));
  max-width: calc(100vw - 28px);
  max-height: calc(100vh - 28px);
  border: 0;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

#resumeReviewDialog {
  width: min(980px, calc(100vw - 28px));
}

#jobDescriptionDialog {
  width: min(780px, calc(100vw - 28px));
}

#jobCandidatesDialog {
  width: min(760px, calc(100vw - 28px));
}

#vendorEmailDialog {
  width: min(820px, calc(100vw - 28px));
}

dialog::backdrop {
  background: rgba(24, 33, 31, 0.38);
}

dialog .pill {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.modal-form {
  width: 100%;
  max-width: 100%;
  max-height: calc(100vh - 28px);
  display: grid;
  gap: 16px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 20px;
}

.modal-form,
.modal-form * {
  min-width: 0;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.modal-header h2 {
  margin: 0;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.vendor-email-modal {
  width: 100%;
}

.resume-review-modal {
  width: 100%;
}

.vendor-email-modal textarea {
  min-height: 360px;
  resize: vertical;
  line-height: 1.45;
}

.resume-review {
  display: grid;
  gap: 12px;
}

.resume-review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.resume-review-meta strong,
.resume-review-meta span {
  display: block;
}

.resume-frame {
  width: 100%;
  min-height: min(72vh, 760px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.resume-preview-empty {
  min-height: 260px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbf8;
  padding: 18px;
  text-align: center;
}

.resume-text-preview {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.resume-text-preview pre {
  max-height: min(68vh, 720px);
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.ranking-detail {
  display: grid;
  gap: 16px;
}

.ranking-detail-block {
  display: grid;
  gap: 8px;
}

.ranking-detail-block h3,
.ranking-detail-block p {
  margin: 0;
}

.ranking-list {
  margin: 0;
  padding-left: 18px;
}

.requirement-table {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.requirement-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(70px, 0.55fr) minmax(0, 1.4fr);
  gap: 10px;
  padding: 10px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
}

.requirement-row span {
  overflow-wrap: anywhere;
}

.requirement-row span:first-child {
  color: var(--ink);
  font-weight: 800;
}

.requirement-head {
  background: var(--soft);
  color: var(--ink);
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.wide-field {
  grid-column: 1 / -1;
}

@media (max-width: 1260px) {
  .app-shell {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .pipeline-board {
    grid-template-columns: repeat(6, 220px);
  }
}

@media (max-width: 900px) {
  .app-shell {
    display: block;
  }

  .sidebar {
    position: sticky;
    top: 0;
    z-index: 5;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px;
  }

  .nav-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nav-item {
    text-align: center;
    padding: 9px 6px;
  }

  .sidebar-panel {
    display: none;
  }

  .workspace {
    padding: 18px;
  }

  .topbar,
  .topbar-actions,
  .toolbar,
  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .search-box {
    min-width: 100%;
  }

  .recruiter-session {
    justify-content: space-between;
  }

  .metrics-grid,
  .client-grid,
  .activity-layout,
  .resume-search-controls,
  .resume-result,
  .interview-guide-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .resume-result-side {
    justify-items: start;
    text-align: left;
  }

  .resume-review-meta {
    align-items: stretch;
    flex-direction: column;
  }

  .resume-frame {
    min-height: 68vh;
  }

  .table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .candidate-select-row,
  .candidate-list-item,
  .job-list-item {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .candidate-row-button {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .candidate-page-actions,
  .candidate-action-buttons,
  .vendor-send-controls,
  .vendor-action-buttons {
    align-items: stretch;
  }

  .candidate-target-select,
  .vendor-target-select {
    min-width: 0;
  }

  .candidate-action-buttons,
  .vendor-action-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .vendor-send-controls {
    flex-direction: column;
  }

  .candidate-list-button {
    align-items: stretch;
    justify-content: stretch;
    grid-template-columns: 1fr;
    padding: 13px;
  }

  .job-list-button {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    padding: 13px;
  }

  .candidate-list-header {
    flex-direction: column;
    gap: 8px;
  }

  .job-list-header {
    flex-direction: column;
    gap: 8px;
  }

  .candidate-list-pills {
    justify-content: flex-start;
  }

  .job-list-pills {
    justify-content: flex-start;
  }

  .candidate-fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .job-fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .candidate-list-actions {
    grid-column: 2;
    justify-items: stretch;
    padding: 0 13px 13px;
  }

  .job-list-actions {
    grid-column: 1 / -1;
    justify-items: stretch;
    padding: 0 13px 13px;
  }

  .vendor-list-item {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .vendor-list-main {
    grid-column: 2;
    padding: 13px;
  }

  .vendor-list-header {
    flex-direction: column;
    gap: 8px;
  }

  .vendor-fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vendor-list-actions {
    grid-column: 2;
    justify-items: stretch;
    padding: 0 13px 13px;
  }

  .vendor-candidate-item {
    grid-template-columns: 1fr;
  }

  .vendor-candidate-main {
    padding: 13px;
  }

  .vendor-candidate-actions {
    justify-items: stretch;
    padding: 0 13px 13px;
  }

  .recruiter-list-item {
    grid-template-columns: 1fr;
  }

  .recruiter-list-main {
    padding: 13px;
  }

  .recruiter-list-actions {
    justify-items: stretch;
    padding: 0 13px 13px;
  }

  .job-candidates-summary,
  .job-candidate-row {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .job-candidate-side {
    justify-content: flex-start;
  }

  .job-description-summary {
    flex-direction: column;
  }

  .job-description-grid {
    grid-template-columns: 1fr;
  }

  .candidate-resume-action {
    text-align: center;
  }

  .job-edit-action {
    text-align: center;
  }
}
