body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f6f8;
  color: #333;
  margin: 0;
  padding: 2rem;
}

h1 {
  text-align: center;
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

#filters {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 2rem auto;
  width: fit-content;
  background-color: #fff;
  border-radius: 999px; /* Full pill shape */
  box-shadow: 0 0 0 1px #ccc;
  overflow: hidden;
}

#filters select {
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border: none;
  background-color: #fff;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  cursor: pointer;
  margin: 0;
  border-left: 1px solid #ccc;
}

/* Remove first left border */
#filters select:first-child {
  border-left: none;
}

/* Rounded corners only on outermost selects */
#filters select:first-child {
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
}
#filters select:last-child {
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
}

/* Hover and focus styles */
#filters select:hover {
  background-color: #f7f7f7;
}
#filters select:focus {
  background-color: #e8f0fe;
}


#results {
  max-width: 800px;
  margin: 0 auto;
}

#results p {
  background-color: white;
  padding: 1rem;
  margin-bottom: 1rem;
  border-left: 5px solid #3498db;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

#results p a {
  font-weight: bold;
  color: #2980b9;
  text-decoration: none;
}

#results p a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  #filters {
    flex-direction: column;
    align-items: center;
  }
}
