*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
#root {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: #f8faff;
  color: #1e293b;
}

/* ── Public Navbar ───────────────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e8edf8;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: #4f46e5;
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #818cf8;
  display: inline-block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #475569;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  transition: all 0.15s;
}

.nav-link:hover {
  color: #4f46e5;
  background: #eef2ff;
}

.nav-link.active {
  color: #4f46e5;
  background: #eef2ff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-ghost {
  color: #4f46e5;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  border: 1.5px solid transparent;
  transition: all 0.15s;
}

.btn-ghost:hover {
  border-color: #c7d2fe;
  background: #eef2ff;
}

.btn-primary {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  background: #4f46e5;
  border: 1.5px solid #4f46e5;
  transition: all 0.15s;
  box-shadow: 0 1px 3px rgba(79, 70, 229, 0.25);
}

.btn-primary:hover {
  background: #4338ca;
  border-color: #4338ca;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
  transform: translateY(-1px);
}

/* ── Landing Hero ────────────────────────────────────────────────────────────── */

.landing {
  background: #f8faff;
}

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #eef2ff;
  color: #4f46e5;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
  border: 1px solid #c7d2fe;
  letter-spacing: 0.3px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -1px;
  margin: 0 0 1.25rem;
}

.hero-title span {
  color: #4f46e5;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-lg {
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: 10px;
}

.btn-outline {
  color: #475569;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  border: 1.5px solid #cbd5e1;
  background: #fff;
  transition: all 0.15s;
}

.btn-outline:hover {
  border-color: #94a3b8;
  color: #1e293b;
}

.hero-preview {
  margin-top: 4rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 40px rgba(79, 70, 229, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.hero-preview-bar {
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-preview-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-preview-board {
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  min-height: 200px;
}

.preview-col {
  flex: 1;
  min-width: 160px;
  background: #f8faff;
  border-radius: 10px;
  padding: 0.75rem;
  border: 1px solid #e8edf8;
}

.preview-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.preview-card {
  background: #fff;
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.preview-card-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.preview-card-sub {
  font-size: 0.7rem;
  color: #94a3b8;
}

.preview-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  margin-top: 0.35rem;
}

.tag-blue   { background: #eff6ff; color: #3b82f6; }
.tag-green  { background: #f0fdf4; color: #22c55e; }
.tag-orange { background: #fff7ed; color: #f97316; }
.tag-purple { background: #f5f3ff; color: #8b5cf6; }

/* ── Features ────────────────────────────────────────────────────────────────── */

.features {
  background: #fff;
  border-top: 1px solid #e8edf8;
  border-bottom: 1px solid #e8edf8;
  padding: 5rem 1.5rem;
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #4f46e5;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin: 0 0 0.75rem;
}

.section-sub {
  text-align: center;
  color: #64748b;
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: #f8faff;
  border: 1px solid #e8edf8;
  border-radius: 14px;
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: 0 6px 24px rgba(79, 70, 229, 0.08);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f46e5;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.5rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* ── How it works ────────────────────────────────────────────────────────────── */

.how {
  padding: 5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #4f46e5;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.4rem;
}

.step-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* ── CTA Banner ──────────────────────────────────────────────────────────────── */

.cta-banner {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  padding: 4.5rem 1.5rem;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem;
  letter-spacing: -0.5px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin: 0 0 2rem;
}

.btn-white {
  color: #4f46e5;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.15s;
  display: inline-block;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ── Footer ──────────────────────────────────────────────────────────────────── */

.footer {
  background: #fff;
  border-top: 1px solid #e8edf8;
  padding: 2rem 1.5rem;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-size: 1rem;
  font-weight: 800;
  color: #4f46e5;
  text-decoration: none;
}

.footer-copy {
  font-size: 0.8rem;
  color: #94a3b8;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  font-size: 0.8rem;
  color: #64748b;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #4f46e5;
}

/* ── About / Contact pages ───────────────────────────────────────────────────── */

.page-hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 1.5rem 3rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin: 0 0 1rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}

.page-card {
  background: #fff;
  border: 1px solid #e8edf8;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.6rem;
}

.page-card p {
  font-size: 0.925rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* Contact form */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}

.form-input,
.form-textarea {
  padding: 0.65rem 0.9rem;
  border-radius: 9px;
  border: 1.5px solid #e2e8f0;
  background: #f8faff;
  color: #1e293b;
  font-size: 0.925rem;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #818cf8;
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.15);
  background: #fff;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  align-self: flex-start;
  padding: 0.65rem 1.75rem;
  border-radius: 9px;
  background: #4f46e5;
  color: #fff;
  font-size: 0.925rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}

.form-submit:hover {
  background: #4338ca;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* ── App Layout (authenticated) ──────────────────────────────────────────────── */

.shell-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.shell-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 56px;
  background: #fff;
  border-bottom: 1px solid #e8edf8;
  position: sticky;
  top: 0;
  z-index: 50;
  flex-shrink: 0;
}

.shell-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: #4f46e5;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.shell-logo:hover {
  color: #4338ca;
}

.shell-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.shell-user-name {
  font-size: 0.875rem;
  color: #64748b;
}

.shell-logout-btn {
  padding: 0.4rem 0.875rem;
  background: transparent;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  color: #64748b;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}

.shell-logout-btn:hover {
  border-color: #fca5a5;
  color: #ef4444;
  background: #fef2f2;
}

.shell-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ── Loading / Spinner ───────────────────────────────────────────────────────── */

.shell-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 56px);
  gap: 1rem;
  color: #94a3b8;
  font-size: 0.875rem;
}

.shell-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #e2e8f0;
  border-top-color: #4f46e5;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── App Nav (board / offres) ─────────────────────────────────────────────── */

.shell-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.shell-nav-link {
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.shell-nav-link:hover {
  background: #f0f4ff;
  color: #4f46e5;
}

.shell-nav-link.active {
  background: #eef2ff;
  color: #4f46e5;
}

/* ── Jobs page ───────────────────────────────────────────────────────────── */

.jobs-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.jobs-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.jobs-title {
  margin: 0 0 0.25rem;
  font-size: 1.6rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.5px;
}

.jobs-subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: #64748b;
}

.jobs-premium-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: #fef9c3;
  border: 1px solid #fde68a;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #92400e;
  white-space: nowrap;
  flex-shrink: 0;
}

.jobs-search-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.jobs-input {
  flex: 1;
  min-width: 160px;
  padding: 0.6rem 0.875rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #1e293b;
  background: #fff;
  transition: border-color 0.15s;
  font-family: inherit;
}

.jobs-input:focus {
  outline: none;
  border-color: #4f46e5;
}

.jobs-search-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  background: #4f46e5;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
  white-space: nowrap;
}

.jobs-search-btn:hover:not(:disabled) {
  background: #4338ca;
}

.jobs-search-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.jobs-btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.jobs-error {
  padding: 0.75rem 1rem;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  color: #ef4444;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.jobs-count {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 1rem;
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ── Job card ─────────────────────────────────────────────────────────────── */

.job-card {
  background: #fff;
  border: 1.5px solid #e8edf8;
  border-radius: 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
  overflow: hidden;
  position: relative;
}

.job-card:hover {
  border-color: #c7d2fe;
  box-shadow: 0 2px 12px rgba(79, 70, 229, 0.06);
}

.job-card-content {
  padding: 1rem 1.25rem;
}

.job-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.job-card-info {
  flex: 1;
  min-width: 0;
}

.job-title {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.job-company {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.55rem;
  background: #f1f5f9;
  border-radius: 20px;
  font-size: 0.72rem;
  color: #475569;
  font-weight: 500;
}

.job-tag--contract {
  background: #eef2ff;
  color: #4f46e5;
}

.job-tag--source {
  background: #f0fdf4;
  color: #16a34a;
}

.job-description {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-shrink: 0;
}

.job-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.875rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  border: none;
  font-family: inherit;
  white-space: nowrap;
  text-decoration: none;
  justify-content: center;
}

.job-btn--primary {
  background: #4f46e5;
  color: #fff;
}

.job-btn--primary:hover:not(:disabled) {
  background: #4338ca;
}

.job-btn--outline {
  background: transparent;
  border: 1.5px solid #e2e8f0;
  color: #475569;
}

.job-btn--outline:hover {
  border-color: #4f46e5;
  color: #4f46e5;
}

.job-btn--added {
  background: #f0fdf4;
  color: #16a34a;
  border: 1.5px solid #bbf7d0;
  cursor: default;
}

/* ── Locked card (free limit) ─────────────────────────────────────────────── */

.job-card--locked {
  min-height: 80px;
}

.job-locked-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(2px);
  z-index: 2;
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
}

.job-locked-link {
  color: #4f46e5;
  text-decoration: none;
  font-weight: 700;
}

.job-locked-link:hover {
  text-decoration: underline;
}

/* ── Premium upsell block ─────────────────────────────────────────────────── */

.jobs-upsell {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 100%);
  border: 1.5px solid #c7d2fe;
  border-radius: 16px;
  text-align: center;
}

.jobs-upsell-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: #f59e0b;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.jobs-upsell h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
}

.jobs-upsell p {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  color: #475569;
}

.jobs-upsell-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: #4f46e5;
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.15s;
}

.jobs-upsell-btn:hover {
  background: #4338ca;
}

/* ── Pagination ───────────────────────────────────────────────────────────── */

.jobs-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.jobs-page-btn {
  padding: 0.5rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  color: #475569;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}

.jobs-page-btn:hover:not(:disabled) {
  border-color: #4f46e5;
  color: #4f46e5;
}

.jobs-page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.jobs-page-info {
  font-size: 0.85rem;
  color: #64748b;
}

/* ── Empty state ──────────────────────────────────────────────────────────── */

.jobs-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 3rem 1rem;
  color: #94a3b8;
  font-size: 0.9rem;
  text-align: center;
}
