body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #333333;
}

header {
  background-color: #333333;
  color: white;
  padding: 20px;
}

nav a {
  color: white;
  margin-right: 15px;
  text-decoration: none;
}

main {
  padding: 40px;
}

footer {
  background-color: #333333;
  color: white;
  text-align: center;
  padding: 10px;
}

.about-section, .how-it-works {
  max-width: 800px;
  margin-bottom: 40px;
}

.about-section h2, .how-it-works h2 {
  border-bottom: 2px solid #333333;
  padding-bottom: 8px;
}

.contact-section {
  max-width: 600px;
  margin-bottom: 40px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #cccccc;
  border-radius: 4px;
}

button[type="submit"] {
  background-color: #333333;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #555555;
}

.job-search {
  margin-top: 40px;
}

.search-bar {
  display: flex;
  gap: 10px;
  align-items: center;
}

.search-bar input {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #cccccc;
  border-radius: 4px;
  width: 180px;
}

.search-bar button {
  background-color: #333333;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

.search-bar button:hover {
  background-color: #555555;
}

css#results-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

#results-table th, #results-table td {
  border: 1px solid #cccccc;
  padding: 10px;
  text-align: left;
}

#results-table th {
  background-color: #333333;
  color: white;
}

#results-table tr:nth-child(even) {
  background-color: #f5f5f5;
}

#results-table a {
  color: #333333;
  font-weight: bold;
}

.back-button {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 20px;
  background-color: #333333;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 1rem;
}

.back-button:hover {
  background-color: #555555;
}

css.slider-container {
  margin: 20px 0;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
  max-width: 400px;
}

.slider-container label {
  display: block;
  font-size: 1rem;
  margin-bottom: 10px;
}

.slider-container input[type="range"] {
  width: 100%;
  cursor: pointer;
}

.slider-hint {
  font-size: 0.85rem;
  color: #777777;
  margin-top: 8px;
}

.top-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.error-button {
  background-color: #8b0000;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

.error-button:hover {
  background-color: #a00000;
}

.download-button {
  background-color: #1a5c1a;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

.download-button:hover {
  background-color: #237223;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-box {
  background-color: white;
  padding: 30px;
  border-radius: 6px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.modal-box h3 {
  margin-top: 0;
  margin-bottom: 20px;
}

.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

#district-select {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #cccccc;
  border-radius: 4px;
}