/* Secondary / muted text helper */
.muted {
  color: #6b7280;
  font-size: 0.98rem;
  margin-top: 6px;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.job-card {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.job-card h4 {
  margin: 0 0 8px 0;
  font-size: 1.05rem;
}

.job-card p {
  margin: 0;
  color: #5b6b7a;
}

.job-apply {
  margin-top: 12px;
  display: inline-block;
}

/* Category filter styles */
.category-filter-container {
  margin: 20px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #dee2e6;
}

.category-filter-title {
  margin-bottom: 15px;
  font-weight: 600;
  color: #333;
}

.category-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.category-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.category-checkbox label {
  cursor: pointer;
  font-size: 14px;
}

.filter-actions {
  display: flex;
  gap: 10px;
}

.btn-filter {
  padding: 8px 16px;
  border: 1px solid #007cba;
  background: #007cba;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
}

.btn-filter:hover {
  background: #005a87;
}

.btn-clear {
  padding: 8px 16px;
  border: 1px solid #6c757d;
  background: #6c757d;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
}

.btn-clear:hover {
  background: #545b62;
}

.active-filters {
  margin-top: 10px;
  font-size: 14px;
}

.filter-tag {
  display: inline-block;
  background: #007cba;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  margin-right: 5px;
  font-size: 12px;
}