body {
  background-color: #282828;
  color: wheat;
  font-family: 'Source Code Pro', monospace;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  background-color: #3d3d3d;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.header {
  font-size: 30px;
  text-align: left;
}

.subheader {
  font-size: 20px;
  text-align: left;
  margin-top: 10px;
}

form {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

form label, form input, form button {
  margin-bottom: 10px;
}

form input {
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  padding: 10px;
  background-color: #f39c12;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background-color: #e67e22;
}

#searchResults {
  margin-top: 20px;
  color: white;
  font-size: 16px;
}

.result-item {
  background-color: #4f4f4f;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.result-item h4 {
  margin: 0;
  font-size: 18px;
  color: #f39c12;
}

.result-item p {
  margin: 5px 0;
}

.result-item .key {
  font-weight: bold;
}

.result-item .value {
  color: lightgray;
}
