body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: white;
}

.job-page {
  display: flex;
  padding: 20px;
  gap: 20px;
}

.filters {
  background: #0C2D48;
  padding: 20px;
  width: 250px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.filters h2 {
  margin-top: 0;
  color: #F47421;
}

.filters label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #F47421;
}

.filters select, 
.filters button {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
}

#reset-filters {
  background: #ccc;
  border: none;
  cursor: pointer;
  margin-top: 15px;
}

#reset-filters:hover {
  background: #bbb;
}

.job-listings {
  flex: 1;
  color: #F47421;
}

.job-listings h2{
  color: #F47421;
}

.job-card {
  background: #0C2D48;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.job-card h3 {
  margin-top: 0;
}

.job-meta {
  font-size: 0.9rem;
  color: #666;
}

.job-details {
  font-size: 0.85rem;
  color: #333;
  margin-top: 8px;
}

.no-jobs {
  text-align: center;
  padding: 40px;
  background: #fff;
  border-radius: 8px;
  color: #999;
}

/* Responsive */
@media (max-width: 768px) {
  .job-page {
    flex-direction: column;
  }
  .filters {
    width: 100%;
  }
}
