.filter-section {
  margin-bottom: 32px;
  padding: 16px 0;
  background: #f8f9fa;
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-end;
}

.filter-group {
  flex: 1;
  min-width: 200px;
}

.filter-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.filter-group select {
  width: 100%;
  padding: 8px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
}

.reset-button,
.reset-button:hover,
.reset-button:focus {
  background: transparent !important;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  align-self: flex-end;
  margin: 4px;
  color: #c65200 !important;
}

.reset-button svg {
  margin-right: 8px;
}

.location-group {
  margin-bottom: 2rem;
}

.location-title {
  padding-bottom: 16px;
}

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

.job-item {
  padding: 32px 24px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.15);
}

.job-item h4 {
  margin-bottom: 24px;
}

.job-meta span{
  background: #F2F6F8;
  margin: 8px 8px 8px 0;
  border-radius: 4px;
  padding: 4px 8px;
  display: inline-block;
}

.job-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #C65200;
  text-decoration: none;
  white-space: nowrap;
}

.arrow {
  font-size: 1.2rem;
}

.loading, .error, .no-jobs {
  text-align: center;
  padding: 2rem;
}

.error {
  color: #dc3545;
}

@media only screen and (max-width: 767px) {
.job-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}