/* Clean Minimal Dark Theme */
body {
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  background-color: #09090b;
  color: #f4f4f5;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #09090b;
}

::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3f3f46;
}

/* Category Filter Chips */
.category-chip {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid #27272a;
  background-color: #121215;
  color: #a1a1aa;
  cursor: pointer;
  transition: all 0.12s ease-in-out;
  white-space: nowrap;
}

.category-chip:hover {
  background-color: #18181b;
  border-color: #3f3f46;
  color: #f4f4f5;
}

.category-chip.active {
  background-color: #f4f4f5;
  border-color: #f4f4f5;
  color: #09090b;
  font-weight: 600;
}

/* Card Transitions */
.job-card {
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.job-card:hover {
  border-color: #3f3f46;
  background-color: #121216;
}
