body {
  font-family: Arial, sans-serif;
  background-color: #0a7a11;
  color: #000;
  margin: 0;
  padding: 0;
  text-align: center;
}

header {
  background-color: #ffeb3b;
  padding: 24px;
  margin: 10px;
  border-radius: 6px;
  box-shadow: 0 0 0 6px #0a7a11 inset;
}

h1 {
  margin: 0;
  font-size: 32px;
  color: #222;
}

.images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 18px;
}

.images img {
  width: 220px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

button {
  background-color: #0b9bd3;
  border: none;
  padding: 10px 14px;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  min-width: 110px;
}

button:hover { filter: brightness(0.95); }

#filters {
  margin: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

input {
  padding: 8px 10px;
  border-radius: 6px;
  border: none;
  min-width: 180px;
}

select {
  padding: 8px 10px;
  border-radius: 6px;
  border: none;
  min-width: 180px;
}

#output {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 18px;
}

.card {
  background: #fff;
  color: #000;
  border-radius: 8px;
  width: 200px;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-align: center;
}

.card img { width: 100%; border-radius: 6px; }
.card h3 { margin: 8px 0 4px; font-size: 16px; }
.card p { margin: 4px 0; font-size: 13px; color: #333; }

#error {
  color: #ffeded;
  background: #b50c0c;
  padding: 10px 14px;
  border-radius: 6px;
  margin: 10px auto;
  display: inline-block;
}
