.pokemon-generator-widget {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.pokemon-generator-title {
  text-align: center;
  color: #333;
  font-size: 24px;
  margin-bottom: 20px;
}

.pokemon-generator-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.pokemon-generator-input {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.pokemon-generator-field {
  padding: 10px;
  width: 100%;
  max-width: 300px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.pokemon-generator-btn {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.pokemon-generator-btn:hover {
  background-color: #45a049;
}

.copy-btn {
  background-color: #2196F3;
}

.copy-btn:hover {
  background-color: #0b7dda;
}

.pokemon-generator-output {
  text-align: center;
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  width: 100%;
  min-height: 100px;
  border: 1px solid #ddd;
}

.pokemon-placeholder {
  color: #777;
  font-size: 15px;
}

@media (max-width: 600px) {
  .pokemon-generator-widget {
    padding: 15px;
  }
  .pokemon-generator-btn {
    width: 100%;
  }
  .pokemon-generator-field {
    width: 100%;
  }
}
