* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #1b1b32;
  color: #f5f6f7;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

main {
  width: 100%;
  max-width: 500px;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

#search-input {
  width: 100%;
  padding: 10px;
  border: 2px solid #f5f6f7;
  border-radius: 5px;
  background-color: #0a0a23;
  color: #f5f6f7;
  font-size: 1rem;
  margin-bottom: 10px;
}

#search-button {
  width: 100%;
  padding: 10px;
  background-color: #f1be32;
  color: #0a0a23;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 25px;
}

#search-button:hover {
  background-color: #d4a426;
}

.name-id,
.size {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  background-color: #0a0a23;
  border-radius: 5px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: bold;
}

#types {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

#types span {
  padding: 6px 14px;
  background-color: #f1be32;
  color: #0a0a23;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 15px;
  background-color: #0a0a23;
  border-radius: 5px;
}

.stats span {
  padding: 8px;
  background-color: #1b1b32;
  border-radius: 3px;
  text-align: center;
}