.palworld-breeding-calculator {
  max-width: 600px;
  margin: auto;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.dark-mode {
  background: #1e1e1e;
  color: #eee;
}

h2, h3 {
  text-align: center;
  color: #F43676;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
}

select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

button {
  background-color: #F43676;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #c22c5e;
}

.form-actions, .reverse-lookup {
  text-align: center;
  margin-top: 20px;
}

.results, .reverse-lookup {
  margin-top: 20px;
}

ul {
  list-style-type: disc;
  margin-left: 20px;
  text-align: left;
}