body {
  background: #0e0e0e;
  color: #eaeaea;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0e0e0e;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 5%;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #6cf;
  align-self: flex-start;
  margin-bottom: 8px;
}

.search-form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  gap: 10px;
}

input[type="text"] {
  flex: 1;
  padding: 10px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
}

input[type="submit"] {
  padding: 10px 20px;
  font-size: 1rem;
  background: #6cf;
  border: none;
  color: #000;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

input[type="submit"]:hover {
  background: #8cf;
}

input[type="submit"]:active {
  background: #4af;
  transform: scale(0.97);
}

.loading {
  margin-top: 100px;
  font-style: italic;
  text-align: center;
  display: none;
}

.results {
  margin-top: 160px;
  width: 90%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

