﻿.recruitee-page {
  display: flex;
  flex-direction: column;
  gap: 20px;
  --recruitee-progress-track: #dce5f5;
  --recruitee-progress-start: #ef4444;
  --recruitee-progress-mid: #f59e0b;
  --recruitee-progress-end: #22c55e;
  --recruitee-progress-glow: rgba(34, 197, 94, 0.25);
}

.recruitee-hidden {
  display: none !important;
}

.recruitee-hero {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid #e6e8ef;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.04);
}

.recruitee-hero-copy {
  flex: 1;
  min-width: 0;
}

.recruitee-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #667085;
  margin-bottom: 10px;
}

.recruitee-title {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
  color: #101828;
}

.recruitee-subtitle {
  margin: 0;
  max-width: 860px;
  font-size: 15px;
  line-height: 1.65;
  color: #475467;
}

.recruitee-hero-status {
  width: 260px;
  flex: 0 0 260px;
}

.recruitee-status-card {
  height: 100%;
  padding: 18px;
  border: 1px solid #e6e8ef;
  border-radius: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.recruitee-status-label {
  font-size: 12px;
  color: #667085;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.recruitee-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.recruitee-badge.is-idle {
  background: #eef2f7;
  color: #344054;
}

.recruitee-badge.is-loading {
  background: #eff6ff;
  color: #1d4ed8;
}

.recruitee-badge.is-success {
  background: #ecfdf3;
  color: #027a48;
}

.recruitee-badge.is-error {
  background: #fef3f2;
  color: #b42318;
}

.recruitee-module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  perspective: 1200px;
  align-items: stretch;
}

.recruitee-module-card {
  --module-accent: #2563eb;
  --module-accent-soft: rgba(37, 99, 235, 0.2);
  appearance: none;
  border: 1px solid #d9e2f1;
  border-radius: 18px;
  background:
    radial-gradient(140% 120% at 100% 0%, var(--module-accent-soft), transparent 62%),
    linear-gradient(165deg, #ffffff 0%, #f8fbff 60%, #edf4ff 100%);
  text-align: left;
  padding: 20px 20px 22px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-height: 180px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
  box-shadow:
    0 16px 30px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.recruitee-module-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -44px;
  top: -68px;
  background: radial-gradient(circle, var(--module-accent-soft) 0%, rgba(255, 255, 255, 0) 72%);
}

.recruitee-module-card::after {
  content: "";
  position: absolute;
  inset: auto 12px 12px 12px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(148, 163, 184, 0.45),
    rgba(255, 255, 255, 0)
  );
}

.recruitee-module-card:hover {
  transform: translateY(-6px) rotateX(2deg);
  border-color: #b7c8e6;
  box-shadow:
    0 26px 40px rgba(15, 23, 42, 0.14),
    0 8px 18px rgba(15, 23, 42, 0.08);
}

.recruitee-module-card:active {
  transform: translateY(-3px) rotateX(1deg);
}

.recruitee-module-card.is-locked {
  border-color: #d7dce6;
  background:
    radial-gradient(140% 120% at 100% 0%, rgba(148, 163, 184, 0.18), transparent 62%),
    linear-gradient(165deg, #f8fafc 0%, #f1f5f9 60%, #e2e8f0 100%);
  box-shadow:
    0 10px 22px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  cursor: not-allowed;
}

.recruitee-module-card.is-locked:hover,
.recruitee-module-card.is-locked:active {
  transform: none;
  border-color: #cbd5e1;
  box-shadow:
    0 10px 22px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.recruitee-module-card.is-locked .recruitee-module-kicker,
.recruitee-module-card.is-locked .recruitee-module-title,
.recruitee-module-card.is-locked .recruitee-module-text {
  color: #64748b;
}

.recruitee-lock-hint {
  position: absolute;
  right: 16px;
  bottom: 12px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid #fecaca;
  background: #fff1f2;
  color: #b91c1c;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.recruitee-module-card.is-locked:hover .recruitee-lock-hint,
.recruitee-module-card.is-locked:focus-visible .recruitee-lock-hint {
  opacity: 1;
  transform: translateY(0);
}

.recruitee-module-card:nth-child(1) {
  --module-accent: #2563eb;
  --module-accent-soft: rgba(37, 99, 235, 0.22);
}

.recruitee-module-card:nth-child(2) {
  --module-accent: #0f766e;
  --module-accent-soft: rgba(15, 118, 110, 0.22);
}

.recruitee-module-card:nth-child(3) {
  --module-accent: #15803d;
  --module-accent-soft: rgba(21, 128, 61, 0.22);
}

.recruitee-module-card:nth-child(4) {
  --module-accent: #dc2626;
  --module-accent-soft: rgba(220, 38, 38, 0.2);
}

.recruitee-module-card:nth-child(5) {
  --module-accent: #b45309;
  --module-accent-soft: rgba(180, 83, 9, 0.24);
}

.recruitee-module-kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--module-accent);
}

.recruitee-module-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.recruitee-module-text {
  font-size: 14px;
  line-height: 1.55;
  color: #334155;
}

.recruitee-workspace {
  border: 1px solid #e6e8ef;
  border-radius: 20px;
  background: #fff;
  padding: 24px;
  min-height: 72vh;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.04);
}

.recruitee-workspace-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.recruitee-workspace-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #667085;
  margin-bottom: 8px;
}

.recruitee-workspace-title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  color: #101828;
}

.recruitee-workspace-subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #475467;
}

.recruitee-back-btn,
.recruitee-btn {
  appearance: none;
  border: 1px solid #d0d5dd;
  background: #fff;
  color: #101828;
  border-radius: 12px;
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.recruitee-btn {
  background: #101828;
  color: #fff;
  border-color: #101828;
}

.recruitee-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.recruitee-panel-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.recruitee-form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 520px;
}

.recruitee-label {
  font-size: 13px;
  font-weight: 600;
  color: #344054;
}

.recruitee-input,
.recruitee-select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d0d5dd;
  border-radius: 12px;
  padding: 0 14px;
  font-size: 14px;
  color: #101828;
  background: #fff;
  outline: none;
}

.recruitee-input:focus,
.recruitee-select:focus {
  border-color: #98a2b3;
}

.recruitee-result-box {
  border: 1px solid #e6e8ef;
  border-radius: 18px;
  padding: 18px;
  background: #f8fafc;
  min-height: 180px;
  overflow: auto;
  color: #344054;
}

.recruitee-pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 13px;
  line-height: 1.55;
  color: #101828;
}

.recruitee-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.recruitee-verteiler-summary-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.recruitee-stat-card {
  border: 1px solid #e6e8ef;
  border-radius: 16px;
  background: #fff;
  padding: 14px;
}

.recruitee-stat-label {
  display: block;
  font-size: 12px;
  color: #667085;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.recruitee-stat-value {
  font-size: 16px;
  color: #101828;
}

.recruitee-placeholder {
  max-width: 860px;
}

.recruitee-placeholder-title {
  margin: 0 0 10px;
  font-size: 22px;
  color: #101828;
}

.recruitee-placeholder-text {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.65;
  color: #475467;
}

.recruitee-plz-audit-card {
  border: 1px solid #cfe0ff;
  border-radius: 18px;
  padding: 18px;
  margin-top: 15px;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(19, 95, 225, 0.12), transparent 60%),
    linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 14px 26px rgba(30, 64, 175, 0.08);
}

.recruitee-verteiler-card {
  --recruitee-verteiler-pill-y: -6px;
  --recruitee-verteiler-toggle-y: 2px;
  --recruitee-verteiler-toggle-text-y: -3px;
  border: 1px solid #d5dee9;
  border-radius: 18px;
  padding: 18px;
  background:
    radial-gradient(140% 120% at 100% 0%, rgba(37, 99, 235, 0.08), transparent 60%),
    linear-gradient(180deg, #f9fbff 0%, #f2f7ff 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.08);
}

.recruitee-verteiler-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
  width: fit-content;
  max-width: 100%;
  align-self: flex-start;
}

.recruitee-verteiler-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.recruitee-verteiler-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #d5dee9;
  background: #ffffff;
  color: #344054;
  font-size: 12px;
  font-weight: 700;
  transform: translateY(var(--recruitee-verteiler-pill-y));
}

.recruitee-verteiler-title {
  font-size: 22px;
  margin-bottom: 0;
}

.recruitee-verteiler-controls {
  display: grid;
  grid-template-columns: minmax(240px, 320px) auto;
  gap: 12px;
  align-items: end;
}

.recruitee-verteiler-status {
  border-color: #bfe3d0;
  background: linear-gradient(180deg, #f7fdf9 0%, #eefaf2 100%);
  width: 100%;
  box-sizing: border-box;
}

.recruitee-verteiler-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
}

.recruitee-verteiler-step {
  border: 1px dashed #9ed8b6;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  padding: 10px 12px;
  font-size: 13px;
  color: #215734;
}

.recruitee-verteiler-automation-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 2px;
  transform: translateY(var(--recruitee-verteiler-toggle-y));
}

.recruitee-verteiler-automation-state {
  min-width: 96px;
  font-size: 13px;
  font-weight: 700;
  color: #0f766e;
  transform: translateY(var(--recruitee-verteiler-toggle-text-y));
}

.recruitee-verteiler-order {
  font-size: 13px;
  line-height: 1.5;
  color: #475467;
}

.recruitee-order-red {
  color: #dc2626;
}

.recruitee-order-yellow {
  color: #ca8a04;
}

.recruitee-order-green {
  color: #16a34a;
}

.recruitee-verteiler-start-btn {
  background: linear-gradient(180deg, #22c55e 0%, #15803d 100%);
  border-color: #15803d;
  color: #ffffff;
}

.recruitee-verteiler-start-btn:hover:not([disabled]) {
  background: linear-gradient(180deg, #16a34a 0%, #166534 100%);
  transform: translateY(-1px);
}

.recruitee-verteiler-btn-red {
  border-color: #b42318;
  background: linear-gradient(180deg, #ef4444 0%, #b42318 100%);
  color: #ffffff;
}

.recruitee-verteiler-btn-red:hover:not([disabled]) {
  background: linear-gradient(180deg, #dc2626 0%, #991b1b 100%);
  transform: translateY(-1px);
}

.recruitee-verteiler-btn-yellow {
  border-color: #b45309;
  background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
}

.recruitee-verteiler-btn-yellow:hover:not([disabled]) {
  background: linear-gradient(180deg, #d97706 0%, #b45309 100%);
  transform: translateY(-1px);
}

.recruitee-checkbox-line {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: #344054;
  cursor: pointer;
}

.recruitee-checkbox-line input[type="checkbox"] {
  margin-top: 2px;
}

.recruitee-toggle-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #d0d5dd;
  border-radius: 12px;
  background: #ffffff;
  padding: 10px 12px;
}

.recruitee-toggle-text {
  font-size: 13px;
  color: #344054;
  font-weight: 600;
}

.recruitee-toggle {
  position: relative;
  width: 54px;
  height: 30px;
  display: inline-block;
}

.recruitee-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.recruitee-toggle-slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #d0d5dd;
  transition: background-color 0.2s ease;
}

.recruitee-toggle-slider::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(16, 24, 40, 0.2);
  transition: transform 0.2s ease;
}

.recruitee-toggle input:checked + .recruitee-toggle-slider {
  background: #16a34a;
}

.recruitee-toggle input:checked + .recruitee-toggle-slider::before {
  transform: translateX(24px);
}

.recruitee-toggle input:focus-visible + .recruitee-toggle-slider {
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
}

.recruitee-verteiler-table-wrap {
  overflow: auto;
  border: 1px solid #e8edf5;
  border-radius: 14px;
}

.recruitee-verteiler-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
}

.recruitee-verteiler-table th,
.recruitee-verteiler-table td {
  padding: 12px;
  border-bottom: 1px solid #eef2f6;
  text-align: left;
  vertical-align: top;
}

.recruitee-verteiler-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f7f9fc;
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #667085;
  font-weight: 700;
}

.recruitee-verteiler-table tbody tr:nth-child(even) {
  background: #fcfdff;
}

.recruitee-verteiler-table tbody tr:hover,
.recruitee-verteiler-table tbody tr:hover td {
  background: #ecfdf3;
}

.recruitee-row-action-btn {
  appearance: none;
  min-width: 104px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #15803d;
  background: linear-gradient(180deg, #22c55e 0%, #15803d 100%);
  color: #ffffff;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 14px rgba(21, 128, 61, 0.22);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}

.recruitee-row-action-btn:hover:not([disabled]) {
  background: linear-gradient(180deg, #16a34a 0%, #166534 100%);
  transform: translateY(-1px);
  box-shadow: 0 12px 18px rgba(21, 128, 61, 0.28);
}

.recruitee-row-action-btn[disabled] {
  border-color: #d0d5dd;
  background: #f2f4f7;
  color: #98a2b3;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.9;
}

.recruitee-invalid-x {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid #ef4444;
  background: #fef2f2;
  color: #dc2626;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: help;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.recruitee-invalid-x:hover {
  transform: translateY(-1px) scale(1.06);
  background: #fee2e2;
  box-shadow: 0 8px 16px rgba(220, 38, 38, 0.2);
}

.recruitee-invalid-x::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  background: #111827;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 8px;
  box-shadow: 0 8px 14px rgba(17, 24, 39, 0.26);
  transition: opacity 0.15s ease;
}

.recruitee-invalid-x:hover::after {
  opacity: 1;
}

.recruitee-file-input-wrap {
  border: 1px solid #d0d5dd;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.recruitee-file-input-wrap:focus-within {
  border-color: #98a2b3;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.recruitee-file-input {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: #fff;
  cursor: pointer;
}

.recruitee-file-input::file-selector-button {
  appearance: none;
  border: 0;
  border-right: 1px solid #e4e7ec;
  min-height: 44px;
  padding: 0 14px;
  margin-right: 12px;
  background: linear-gradient(180deg, #303030 0%, #303030 100%);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.recruitee-file-input:hover::file-selector-button {
  background: linear-gradient(180deg, #155dc9 0%, #155dc9 100%);
}

.recruitee-plz-audit-status {
  border-color: #cfe0ff;
  background: linear-gradient(180deg, #f9fbff 0%, #f4f8ff 100%);
}

.recruitee-plz-audit-note {
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: #475467;
  background: #f8fafc;
  border: 1px dashed #d0d5dd;
  border-radius: 12px;
  padding: 10px 12px;
}

.recruitee-plz-table-wrap {
  overflow: auto;
  border: 1px solid #e8edf5;
  border-radius: 14px;
}

.recruitee-plz-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  background: #fff;
}

.recruitee-plz-table th,
.recruitee-plz-table td {
  padding: 12px;
  border-bottom: 1px solid #eef2f6;
  text-align: left;
  vertical-align: top;
}

.recruitee-plz-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f7f9fc;
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #667085;
  font-weight: 700;
}

.recruitee-plz-table:not(.recruitee-name-table) th:nth-child(1),
.recruitee-plz-table:not(.recruitee-name-table) td:nth-child(1) {
  width: 16%;
}

.recruitee-plz-table:not(.recruitee-name-table) th:nth-child(2),
.recruitee-plz-table:not(.recruitee-name-table) td:nth-child(2) {
  width: 5%;
}

.recruitee-plz-table:not(.recruitee-name-table) th:nth-child(4),
.recruitee-plz-table:not(.recruitee-name-table) td:nth-child(4) {
  width: 14%;
}

.recruitee-plz-table:not(.recruitee-name-table) th:nth-child(5),
.recruitee-plz-table:not(.recruitee-name-table) td:nth-child(5) {
  width: 14%;
}

.recruitee-plz-table:not(.recruitee-name-table) th:nth-child(6),
.recruitee-plz-table:not(.recruitee-name-table) td:nth-child(6) {
  width: 13%;
}

.recruitee-plz-table:not(.recruitee-name-table) th:nth-child(7),
.recruitee-plz-table:not(.recruitee-name-table) td:nth-child(7) {
  width: 13%;
}

.recruitee-plz-table:not(.recruitee-name-table) th:nth-child(8),
.recruitee-plz-table:not(.recruitee-name-table) td:nth-child(8) {
  width: 5%;
}

.recruitee-plz-table tbody tr:nth-child(even) {
  background: #fcfdff;
}

.recruitee-plz-table tbody tr:hover {
  background: #ecfdf3;
}

.recruitee-plz-table tbody tr:hover td {
  background: #ecfdf3;
  box-shadow:
    inset 0 1px 0 #bbf7d0,
    inset 0 -1px 0 #bbf7d0;
}

.recruitee-plz-main {
  font-weight: 700;
  color: #1f2937;
  line-height: 1.4;
}

.recruitee-plz-sub {
  margin-top: 4px;
  font-size: 12px;
  color: #667085;
  line-height: 1.5;
}

.recruitee-issue-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.recruitee-issue-badge.is-critical {
  background: #feeceb;
  color: #b42318;
}

.recruitee-issue-badge.is-missing {
  background: #ffefcc;
  color: #b54708;
}

.recruitee-issue-badge.is-extra {
  background: #e8f3ff;
  color: #175cd3;
}

.recruitee-issue-badge.is-warning {
  background: #eef2f7;
  color: #344054;
}

.recruitee-issue-badge.is-info {
  background: #e8f3ff;
  color: #175cd3;
}

.recruitee-issue-badge.is-success {
  background: #ecfdf3;
  color: #027a48;
}

.recruitee-plz-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.recruitee-plz-chip {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  border: 1px solid transparent;
}

.recruitee-plz-chip.is-neutral {
  background: #f2f4f7;
  color: #344054;
  border-color: #e4e7ec;
}

.recruitee-plz-chip.is-missing {
  background: #fff2cc;
  color: #93370d;
  border-color: #f7d58d;
}

.recruitee-plz-chip.is-extra {
  background: #e9f3ff;
  color: #1849a9;
  border-color: #b9d9ff;
}

.recruitee-plz-empty {
  color: #98a2b3;
  font-weight: 600;
}

.recruitee-plz-action-cell {
  min-width: 140px;
  white-space: nowrap;
}

.recruitee-plz-edit-btn {
  appearance: none;
  border: 1px solid #15803d;
  background: linear-gradient(180deg, #22c55e 0%, #15803d 100%);
  color: #ffffff;
  border-radius: 10px;
  min-height: 34px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 14px rgba(21, 128, 61, 0.22);
}

.recruitee-plz-edit-btn:hover {
  background: linear-gradient(180deg, #16a34a 0%, #166534 100%);
}

.recruitee-plz-status-layout {
  display: block;
}

.recruitee-plz-status-copy {
  display: block;
}

.recruitee-plz-status-action {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 10px;
  gap: 12px;
  flex-wrap: wrap;
}

.recruitee-plz-export-btn {
  appearance: none;
  border: 1px solid #16a34a;
  background: linear-gradient(180deg, #22c55e 0%, #15803d 100%);
  color: #ffffff;
  border-radius: 14px;
  min-height: 50px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow:
    0 0 0 0 rgba(34, 197, 94, 0.45),
    0 12px 20px rgba(22, 163, 74, 0.28);
  animation: recruitee-export-pulse 1.7s ease-out infinite;
}

.recruitee-plz-export-btn:hover {
  background: linear-gradient(180deg, #16a34a 0%, #166534 100%);
}

.recruitee-name-export-btn {
  appearance: none;
  border: 1px solid #0284c7;
  background: linear-gradient(180deg, #0ea5e9 0%, #0369a1 100%);
  color: #ffffff;
  border-radius: 14px;
  min-height: 50px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow:
    0 0 0 0 rgba(14, 165, 233, 0.38),
    0 12px 20px rgba(3, 105, 161, 0.22);
}

.recruitee-name-export-btn:hover {
  background: linear-gradient(180deg, #0284c7 0%, #075985 100%);
}

.recruitee-audit-collapsible {
  padding: 0;
  overflow: hidden;
}

.recruitee-audit-collapsible-btn {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  font-size: 16px;
  font-weight: 700;
  color: #101828;
  cursor: pointer;
}

.recruitee-audit-collapsible-btn:hover,
.recruitee-audit-collapsible-btn:focus-visible {
  background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
  color: #0f172a;
}

.recruitee-audit-collapsible-btn:hover .recruitee-audit-toggle-icon,
.recruitee-audit-collapsible-btn:focus-visible .recruitee-audit-toggle-icon {
  background: #bfdbfe;
  color: #1e3a8a;
}

.recruitee-audit-collapsible.is-open .recruitee-audit-collapsible-btn {
  border-bottom: 1px solid #e8edf5;
}

.recruitee-audit-toggle-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: #e2e8f0;
  color: #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.recruitee-audit-collapsible-body {
  padding: 14px 16px 16px;
}

.recruitee-name-table .recruitee-name-divider td {
  background: #fff7ed;
  color: #9a3412;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.recruitee-filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

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

.recruitee-status-meta {
  line-height: 1.7;
  color: #344054;
}

.recruitee-status-loading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.recruitee-analytics-results {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.recruitee-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.recruitee-kpi-card {
  border: 1px solid #e6e8ef;
  border-radius: 16px;
  background: #fff;
  padding: 16px;
}

.recruitee-kpi-label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #667085;
}

.recruitee-kpi-value {
  display: block;
  font-size: 22px;
  line-height: 1.2;
  color: #101828;
}

.recruitee-chart-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.recruitee-chart-card,
.recruitee-table-card {
  border: 1px solid #e6e8ef;
  border-radius: 18px;
  background: #fff;
  padding: 16px;
}

.recruitee-chart-title {
  font-size: 16px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 12px;
}

.recruitee-chart-card canvas {
  width: 100% !important;
  height: 320px !important;
}

.recruitee-table-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.recruitee-table-wrap {
  overflow: auto;
}

.recruitee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.recruitee-table th,
.recruitee-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #eef2f6;
  text-align: left;
  vertical-align: top;
}

.recruitee-table th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #667085;
  font-weight: 700;
}

.recruitee-empty-table {
  color: #667085;
  line-height: 1.6;
}

.recruitee-textarea {
  width: 100%;
  min-height: 96px;
  border: 1px solid #d0d5dd;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #101828;
  background: #fff;
  outline: none;
  resize: vertical;
}

.recruitee-textarea:focus {
  border-color: #98a2b3;
}

.recruitee-bulk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 16px;
  margin-top: 15px;
}

.recruitee-bulk-card {
  border: 1px solid #e6e8ef;
  border-radius: 18px;
  background: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.recruitee-bulk-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.recruitee-form-row--wide {
  grid-column: 1 / -1;
  max-width: none;
}

.recruitee-replace-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recruitee-replace-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 140px;
  gap: 12px;
  align-items: end;
  border: 1px solid #e6e8ef;
  border-radius: 16px;
  background: #f8fafc;
  padding: 12px;
}

.recruitee-remove-row-btn {
  appearance: none;
  border: 1px solid #d0d5dd;
  background: #fff;
  color: #101828;
  border-radius: 12px;
  min-height: 42px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.recruitee-bulk-card--check {
  background: linear-gradient(180deg, #fff9f2 0%, #fff4e8 100%);
  border-color: #f2d1a6;
}

.recruitee-bulk-card--replace {
  background: linear-gradient(180deg, #f5fff8 0%, #ebfaf0 100%);
  border-color: #b7e2c5;
}

.recruitee-bulk-hint {
  font-size: 13px;
  line-height: 1.5;
  color: #7a5a2b;
  background: rgba(255, 255, 255, 0.65);
  border: 1px dashed rgba(201, 145, 54, 0.35);
  border-radius: 12px;
  padding: 10px 12px;
}

.recruitee-btn[disabled],
.recruitee-back-btn[disabled],
.recruitee-remove-row-btn[disabled] {
  opacity: 0.7;
  cursor: wait;
}

.recruitee-btn.is-locked[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.recruitee-back-btn.is-locked[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.recruitee-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  display: inline-block;
  animation: recruitee-spin 0.8s linear infinite;
}

.recruitee-progress {
  width: 100%;
  margin-top: 12px;
}

.recruitee-progress-track {
  position: relative;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: var(--recruitee-progress-track);
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.14);
}

.recruitee-progress-bar {
  position: relative;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background-image: linear-gradient(
    90deg,
    #dc2626 0%,
    #ef4444 10%,
    #f97316 24%,
    #f59e0b 38%,
    #facc15 52%,
    #84cc16 68%,
    #22c55e 82%,
    #16a34a 100%
  );
  background-size: calc(10000% / var(--recruitee-progress-percent, 100)) 100%;
  background-position: left top;
  background-repeat: no-repeat;
  box-shadow: 0 0 16px var(--recruitee-progress-glow);
  transition:
    width 0.25s ease,
    background-size 0.24s ease,
    box-shadow 0.24s ease;
}

.recruitee-progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  left: -70px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.46),
    rgba(255, 255, 255, 0)
  );
  animation: recruitee-progress-shimmer 1.15s linear infinite;
}

.recruitee-progress-bar.is-indeterminate {
  width: 42%;
  min-width: 44px;
  background: linear-gradient(
    90deg,
    var(--recruitee-progress-start) 0%,
    var(--recruitee-progress-mid) 46%,
    var(--recruitee-progress-end) 100%
  );
  box-shadow: 0 0 16px var(--recruitee-progress-glow);
  animation: recruitee-progress-indeterminate 1.2s ease-in-out infinite;
}

.recruitee-progress-text {
  margin-top: 8px;
  font-size: 13px;
  color: #334155;
  font-weight: 600;
}

@keyframes recruitee-progress-shimmer {
  0% {
    left: -70px;
  }
  100% {
    left: 120%;
  }
}

@keyframes recruitee-progress-indeterminate {
  0% {
    transform: translateX(-118%);
  }
  100% {
    transform: translateX(260%);
  }
}

.recruitee-field-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.recruitee-field-switch-btn {
  appearance: none;
  border: 1px solid #d0d5dd;
  background: #fff;
  color: #344054;
  border-radius: 999px;
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.recruitee-field-switch-btn.is-active {
  background: #101828;
  color: #fff;
  border-color: #101828;
}

.recruitee-bulk-small {
  font-size: 13px;
  line-height: 1.5;
  color: #667085;
}

.recruitee-bulk-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.55;
  color: #475467;
}

.recruitee-bulk-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.recruitee-bulk-meta-value {
  color: #b42318;
  font-weight: 700;
}

.recruitee-verteiler-confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 1700;
  background: rgba(16, 24, 40, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.recruitee-verteiler-confirm-dialog {
  width: min(560px, 100%);
  border-radius: 18px;
  border: 1px solid #cfe9d8;
  background: #ffffff;
  box-shadow: 0 24px 40px rgba(16, 24, 40, 0.25);
  padding: 18px;
}

.recruitee-verteiler-confirm-title {
  font-size: 18px;
  font-weight: 700;
  color: #101828;
  margin-bottom: 8px;
}

.recruitee-verteiler-confirm-text {
  font-size: 14px;
  line-height: 1.55;
  color: #344054;
  margin-bottom: 16px;
}

.recruitee-verteiler-confirm-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.recruitee-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1600;
}

.recruitee-modal.is-open {
  display: flex;
}

.recruitee-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.56);
}

.recruitee-modal-dialog {
  position: relative;
  width: min(760px, calc(100% - 28px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #d0d5dd;
  box-shadow:
    0 18px 34px rgba(15, 23, 42, 0.24),
    0 6px 12px rgba(15, 23, 42, 0.14);
}

.recruitee-plz-edit-modal {
  width: min(680px, calc(100% - 28px));
}

.recruitee-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid #e4e7ec;
}

.recruitee-modal-head h3 {
  margin: 0;
  font-size: 18px;
  color: #101828;
}

.recruitee-modal-close {
  appearance: none;
  border: 1px solid #d0d5dd;
  background: #ffffff;
  color: #475467;
  border-radius: 10px;
  width: 34px;
  height: 34px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.recruitee-modal-close:hover {
  background: #f8fafc;
}

.recruitee-modal-body {
  padding: 16px 18px 8px;
}

.recruitee-plz-edit-meta {
  margin-bottom: 14px;
  padding: 10px 12px;
  border: 1px dashed #d0d5dd;
  border-radius: 12px;
  background: #f8fafc;
  font-size: 13px;
  line-height: 1.6;
  color: #344054;
}

.recruitee-plz-edit-hint {
  min-height: 22px;
  margin-top: 8px;
  color: #475467;
  font-size: 13px;
}

.recruitee-plz-edit-context {
  margin-top: 10px;
}

.recruitee-edit-context-box {
  border: 1px solid #dbeafe;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recruitee-edit-context-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #1e3a8a;
}

.recruitee-edit-context-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #334155;
  line-height: 1.5;
}

.recruitee-edit-context-value.is-name {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #bfdbfe;
  background: #e0f2fe;
  color: #0c4a6e;
  font-weight: 700;
}

.recruitee-modal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 12px 18px 18px;
  border-top: 1px solid #eef2f6;
}

@keyframes recruitee-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes recruitee-export-pulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(34, 197, 94, 0.42),
      0 12px 20px rgba(22, 163, 74, 0.28);
  }
  70% {
    box-shadow:
      0 0 0 13px rgba(34, 197, 94, 0),
      0 12px 20px rgba(22, 163, 74, 0.28);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(34, 197, 94, 0),
      0 12px 20px rgba(22, 163, 74, 0.28);
  }
}

@media (max-width: 900px) {
  .recruitee-verteiler-stack {
    width: 100%;
  }

  .recruitee-verteiler-card {
    width: 100%;
  }

  .recruitee-verteiler-controls {
    grid-template-columns: 1fr;
  }

  .recruitee-inline-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .recruitee-inline-actions .recruitee-btn,
  .recruitee-inline-actions .recruitee-back-btn {
    width: 100%;
  }

  .recruitee-verteiler-automation-inline {
    justify-content: flex-start;
    width: 100%;
  }

  .recruitee-verteiler-confirm-actions {
    flex-direction: column;
  }

  .recruitee-verteiler-confirm-actions .recruitee-btn,
  .recruitee-verteiler-confirm-actions .recruitee-back-btn {
    width: 100%;
  }

  .recruitee-replace-row {
    grid-template-columns: 1fr;
  }

  .recruitee-plz-status-action {
    width: 100%;
    justify-content: flex-start;
  }

  .recruitee-plz-export-btn {
    width: 100%;
    justify-content: center;
  }

  .recruitee-name-export-btn {
    width: 100%;
    justify-content: center;
  }

  .recruitee-modal-dialog {
    width: calc(100% - 18px);
    max-height: calc(100vh - 16px);
    border-radius: 14px;
  }

  .recruitee-modal-actions {
    flex-wrap: wrap;
    justify-content: stretch;
  }

  .recruitee-modal-actions .recruitee-back-btn,
  .recruitee-modal-actions .recruitee-btn {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .recruitee-hero {
    flex-direction: column;
  }

  .recruitee-hero-status {
    width: 100%;
    flex: 1 1 auto;
  }

  .recruitee-workspace-head {
    flex-direction: column;
  }
}
