/* ============================================
   Job Advisory - Design System
   A cohesive, modern UI with consistent styling
   ============================================ */

/* --- CSS Variables (Design Tokens) --- */
:root {
  /* Primary Colors - Deep Ocean Blue */
  --primary-50: #e6f4fa;
  --primary-100: #b3dff2;
  --primary-200: #80c9e9;
  --primary-300: #4db3e0;
  --primary-400: #269dd7;
  --primary-500: #0d7bb5;
  --primary-600: #0a6291;
  --primary-700: #074a6d;
  --primary-800: #053149;
  --primary-900: #021924;

  /* Accent Colors - Warm Coral */
  --accent-50: #fff5f2;
  --accent-100: #ffe0d6;
  --accent-200: #ffbfa8;
  --accent-300: #ff9e7a;
  --accent-400: #ff7d4c;
  --accent-500: #e85a24;
  --accent-600: #c4451a;
  --accent-700: #a03110;
  --accent-800: #7c1e06;
  --accent-900: #580a00;

  /* Neutral Colors */
  --neutral-50: #fafbfc;
  --neutral-100: #f4f6f8;
  --neutral-200: #e8ecf0;
  --neutral-300: #d1d9e0;
  --neutral-400: #9aa5b1;
  --neutral-500: #667380;
  --neutral-600: #4a5568;
  --neutral-700: #2d3748;
  --neutral-800: #1a202c;
  --neutral-900: #0d1117;

  /* Success/Error/Warning */
  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;
  --info: #3b82f6;

  /* Typography */
  --font-primary: 'DM Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

/* --- Import Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- Base Reset & Typography --- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--neutral-700);
  background: linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-100) 100%);
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--neutral-800);
  margin-bottom: var(--space-md);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

a {
  color: var(--primary-500);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-600);
}

/* --- Utility Classes --- */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary-500);
}

.text-accent {
  color: var(--accent-500);
}

/* --- Header Styles --- */
header.bg-dark {
  background: linear-gradient(135deg, var(--neutral-900) 0%, var(--primary-800) 100%) !important;
  padding: var(--space-md) 0;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

header.bg-dark > .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  width: 100%;
}

header .logo {
  flex-shrink: 0;
}

header .logo a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: white !important;
  transition: opacity var(--transition-fast);
  text-decoration: none;
}

header .logo a:hover {
  opacity: 0.9;
  color: white !important;
}

header .logo img {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: var(--radius-md);
  object-fit: contain;
  background: white;
  padding: 2px;
}

header .logo span {
  white-space: nowrap;
}

header nav {
  flex-shrink: 0;
}

header .nav {
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

header .nav-link {
  font-weight: 500;
  padding: var(--space-sm) var(--space-md) !important;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  color: rgba(255, 255, 255, 0.85) !important;
  white-space: nowrap;
}

header .nav-link:hover {
  color: white !important;
  background: rgba(255, 255, 255, 0.1);
}

/* --- Footer Styles --- */
footer.bg-dark {
  background: linear-gradient(135deg, var(--neutral-900) 0%, var(--primary-900) 100%) !important;
  padding: var(--space-lg) 0;
  margin-top: auto;
  width: 100%;
}

footer.bg-dark > .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  width: 100%;
}

footer .nav-link {
  color: rgba(255, 255, 255, 0.7) !important;
  transition: color var(--transition-fast);
}

footer .nav-link:hover {
  color: white !important;
}

/* --- Main Container --- */
.main-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl);
}

/* Ensure main container is consistently styled across all pages */
body > .container,
.container-fluid > .container {
  max-width: 1200px;
  margin: 0 auto;
}

.container {
  padding: var(--space-lg);
}

/* --- Card Component --- */
.card, .search-container {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-xl);
  border: 1px solid var(--neutral-200);
}

/* --- Button Styles --- */
.btn {
  font-family: var(--font-primary);
  font-weight: 500;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-info {
  background: linear-gradient(135deg, var(--accent-400) 0%, var(--accent-500) 100%);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-info:hover {
  background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-600) 100%);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
  color: white;
}

button {
  font-family: var(--font-primary);
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  color: white;
  padding: var(--space-sm) var(--space-lg);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

button:hover {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

/* --- Form Styles --- */
label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--neutral-700);
}

label.no-bottom-margin {
  margin-bottom: 0;
}

input[type="text"],
input[type="number"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: all var(--transition-fast);
  background: white;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-400);
  box-shadow: 0 0 0 3px var(--primary-100);
}

/* --- Radio & Checkbox Styles --- */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
}

.radio-group label {
  margin-bottom: 0;
}

.radio-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  cursor: pointer;
}

.radio-item input[type="radio"],
.form-check-input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--primary-500);
  cursor: pointer;
}

.form-check-label {
  cursor: pointer;
  font-weight: 400;
}

/* --- Filter Chips --- */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.filter-chip {
  background: var(--neutral-100);
  color: var(--neutral-600);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  padding: var(--space-sm) var(--space-md);
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
}

.filter-chip:hover {
  background: var(--neutral-200);
  border-color: var(--neutral-300);
}

.filter-chip.active {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

/* --- Search Container --- */
.search-container {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.search-field {
  margin-bottom: var(--space-lg);
}

.search-field input {
  font-size: 1.1rem;
  padding: var(--space-md);
}

.options-container {
  margin-top: var(--space-lg);
  padding: var(--space-lg);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  background: var(--neutral-50);
}

.search-button-container {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

/* --- Slider Styles --- */
.slider-container {
  padding: var(--space-sm) 0;
}

.slider-container .slider-selection {
  background: linear-gradient(90deg, var(--primary-400) 0%, var(--primary-500) 100%);
}

.slider-container .slider-track {
  background: var(--neutral-200);
  height: 8px;
}

.slider.slider-horizontal {
  width: 90%;
  height: 20px;
}

.slider-container .slider-handle {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  border: 3px solid white;
  box-shadow: var(--shadow-md);
}

.slider-container .slider-tick {
  background: var(--primary-300);
}

.slider-container .slider-tick-label {
  color: var(--neutral-500);
  font-size: 0.75rem;
}

/* --- DataTables Styles --- */
.dataTables_wrapper {
  font-family: var(--font-primary);
  font-size: 0.95rem;
}

.dataTables_length,
.dataTables_filter {
  margin-bottom: var(--space-md);
}

.dataTables_info {
  margin-top: var(--space-md);
  color: var(--neutral-500);
}

.dataTables_paginate {
  margin-top: var(--space-md);
}

.dataTables_paginate .paginate_button {
  padding: var(--space-sm) var(--space-md) !important;
  margin: 0 var(--space-xs);
  border-radius: var(--radius-md) !important;
  border: 1px solid var(--neutral-200) !important;
  background: white !important;
  color: var(--neutral-600) !important;
  transition: all var(--transition-fast);
}

.dataTables_paginate .paginate_button:hover {
  background: var(--neutral-100) !important;
  border-color: var(--neutral-300) !important;
  color: var(--neutral-800) !important;
}

.dataTables_paginate .paginate_button.current {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%) !important;
  color: white !important;
  border-color: var(--primary-500) !important;
}

table.dataTable thead {
  display: none;
}

#resultsTable {
  border-collapse: separate;
  border-spacing: 0 var(--space-md);
  width: 100%;
}

#resultsTable td {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 0;
  border: 1px solid var(--neutral-200);
  transition: all var(--transition-fast);
}

#resultsTable td:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

.dataTables_empty {
  text-align: center;
  padding: var(--space-2xl);
  color: var(--neutral-500);
}

/* --- Job Card Styles --- */
.job-overview {
  margin-bottom: 0;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--neutral-200);
  background: linear-gradient(135deg, var(--neutral-50) 0%, white 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-xl);
  justify-content: space-between;
  align-items: center;
}

.job-overview-bottom {
  margin-top: 0;
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--neutral-200);
  background: linear-gradient(135deg, white 0%, var(--neutral-50) 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-xl);
  justify-content: space-between;
  align-items: center;
}

.job-meta-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.job-meta-item .label {
  font-weight: 600;
  color: var(--neutral-500);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.job-meta-item .value {
  color: var(--neutral-800);
  font-weight: 500;
}

.job-meta-item .value a,
.job-meta-item a {
  color: var(--primary-500);
  font-weight: 500;
}

.job-meta-item .value a:hover,
.job-meta-item a:hover {
  color: var(--primary-600);
  text-decoration: underline;
}

.job-post-content {
  padding: var(--space-lg);
  line-height: 1.7;
  color: var(--neutral-700);
  font-size: 0.95rem;
  max-height: 300px;
  overflow-y: auto;
}

.job-post-content::-webkit-scrollbar {
  width: 6px;
}

.job-post-content::-webkit-scrollbar-track {
  background: var(--neutral-100);
  border-radius: var(--radius-full);
}

.job-post-content::-webkit-scrollbar-thumb {
  background: var(--neutral-300);
  border-radius: var(--radius-full);
}

.job-post-content::-webkit-scrollbar-thumb:hover {
  background: var(--neutral-400);
}

.job-post-content p {
  margin-bottom: var(--space-sm);
}

.job-post-content a {
  color: var(--primary-500);
}

/* --- Banner Section (Home Page) --- */
.banner-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  background: linear-gradient(135deg, var(--primary-50) 0%, white 50%, var(--accent-50) 100%);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-xl);
}

.banner-section h2 {
  font-size: 3rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--accent-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.banner-section p {
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
  color: var(--neutral-600);
  max-width: 600px;
}

.image-section {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.image-section img {
  max-width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

.image-section img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.sign-in-section {
  display: flex;
  justify-content: center;
  margin: var(--space-xl) 0;
}

.google-sign-in-button {
  padding: var(--space-md) var(--space-xl);
  background: white;
  color: var(--neutral-700);
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  box-shadow: var(--shadow-md);
}

.google-sign-in-button:hover {
  background: var(--neutral-50);
  border-color: var(--neutral-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.google-sign-in-button img {
  width: 20px;
  height: 20px;
}

/* --- Pricing / Process Section --- */
.process {
  text-align: left;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: var(--space-xl) auto;
}

.process-title {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--neutral-800);
  margin-bottom: var(--space-lg);
}

.process-steps {
  list-style: decimal;
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.process-step {
  padding: var(--space-sm) 0;
  line-height: 1.7;
  color: var(--neutral-700);
}

.process-step b {
  color: var(--primary-600);
}

.ul-sub-process {
  list-style: disc;
  margin: var(--space-sm) 0 var(--space-sm) var(--space-xl);
}

.ul-sub-process li {
  margin: var(--space-xs) 0;
  color: var(--neutral-600);
}

/* --- Summary Dashboard --- */
#jobSummaryContainer {
  margin-top: var(--space-xl);
}

#jobSummaryContainer h2 {
  font-family: var(--font-display);
  color: var(--neutral-800);
}

#jobSummaryContainer h3 {
  font-family: var(--font-display);
  color: var(--neutral-700);
}

#tabButtonsContainer {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Location Tab Styles - Inactive */
.location-tab-inactive {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.9rem;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  border: 2px solid var(--neutral-300);
  background: white;
  color: var(--neutral-600);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.location-tab-inactive:hover {
  border-color: var(--primary-400);
  color: var(--primary-600);
  background: var(--primary-50);
}

/* Location Tab Styles - Active */
.location-tab-active {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  border: 2px solid var(--accent-500);
  background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-600) 100%);
  color: white;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
}

.location-tab-active:hover {
  background: linear-gradient(135deg, var(--accent-600) 0%, var(--accent-700) 100%);
}

#tabContent {
  background: var(--neutral-50);
  border-radius: var(--radius-lg);
}

/* --- Admin Job Review Carousel --- */
.job-review-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.job-review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.job-counter {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neutral-600);
}

.job-counter .current {
  color: var(--primary-600);
  font-size: 1.5rem;
}

.job-review-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--neutral-200);
  overflow: hidden;
  transition: all var(--transition-base);
}

.job-review-card:hover {
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.15);
}

.job-review-card .card-header {
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
  padding: var(--space-lg);
  border-bottom: 1px solid var(--neutral-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-review-card .job-id {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-600);
}

.job-review-card .card-body {
  padding: var(--space-xl);
  max-height: 400px;
  overflow-y: auto;
  line-height: 1.7;
  color: var(--neutral-700);
}

.job-review-card .card-body::-webkit-scrollbar {
  width: 6px;
}

.job-review-card .card-body::-webkit-scrollbar-track {
  background: var(--neutral-100);
}

.job-review-card .card-body::-webkit-scrollbar-thumb {
  background: var(--neutral-300);
  border-radius: var(--radius-full);
}

.job-review-card .card-footer {
  background: var(--neutral-50);
  padding: var(--space-lg);
  border-top: 1px solid var(--neutral-200);
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
}

.review-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: white;
}

.review-btn.reject {
  border-color: var(--error);
  color: var(--error);
}

.review-btn.reject:hover {
  background: var(--error);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

.review-btn.approve {
  border-color: var(--success);
  color: var(--success);
}

.review-btn.approve:hover {
  background: var(--success);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.review-btn.skip {
  border-color: var(--neutral-400);
  color: var(--neutral-500);
  width: 50px;
  height: 50px;
  font-size: 1.25rem;
}

.review-btn.skip:hover {
  background: var(--neutral-500);
  color: white;
  transform: scale(1.05);
}

.job-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.nav-btn {
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  border: 2px solid var(--neutral-300);
  background: white;
  color: var(--neutral-600);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.nav-btn:hover:not(:disabled) {
  border-color: var(--primary-400);
  color: var(--primary-600);
  background: var(--primary-50);
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.empty-jobs-message {
  text-align: center;
  padding: var(--space-3xl);
  color: var(--neutral-500);
}

.empty-jobs-message i {
  font-size: 4rem;
  color: var(--neutral-300);
  margin-bottom: var(--space-lg);
  display: block;
}

/* --- Error Messages --- */
.error-message {
  color: var(--error);
  font-weight: 500;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .banner-section h2 {
    font-size: 2.25rem;
  }
  
  .image-section img {
    max-width: 240px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  .banner-section {
    padding: var(--space-xl);
  }
  
  .banner-section h2 {
    font-size: 1.75rem;
  }
  
  .banner-section p {
    font-size: 1rem;
  }
  
  .image-section {
    flex-direction: column;
    align-items: center;
  }
  
  .image-section img {
    max-width: 100%;
    height: auto;
  }
  
  .search-container {
    padding: var(--space-lg);
  }
  
  .radio-group {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .filter-chips {
    gap: var(--space-xs);
  }
  
  .filter-chip {
    font-size: 0.8rem;
    padding: var(--space-xs) var(--space-sm);
  }
  
  .job-overview,
  .job-overview-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }
  
  header .container {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  header .nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* --- Animation Utilities --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

/* --- Print Styles --- */
@media print {
  header, footer, .search-container, .dataTables_paginate {
    display: none;
  }
  
  #resultsTable td {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}
