body {
  font-family: Arial, sans-serif;
  background-color: #1c1c1c;
  color: #f5f5f5;
  padding: 20px;
  text-align: center;
}

form {
  display: inline-block;
  margin: 10px;
}

button {
  padding: 12px 24px;
  font-size: 16px;
  margin: 5px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background-color: #2e8b57;
  color: white;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #246b46;
}

#resultat {
  margin-top: 20px;
  font-size: 18px;
  color: #ffd700;
}

.grid-equipement {
  margin-top: 20px;
}


.boutique-grid, .vente-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.item-card {
  background: #333;
  color: #fff;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  width: 180px;
  border: 2px solid #555;
}

.item-card h3 {
  margin: 0;
  font-size: 16px;
}

.item-card button {
  margin-top: 10px;
  background-color: #2e8b57;
  color: white;
  padding: 8px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.item-card button:hover {
  background-color: #246b46;
}


.combat-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.monstre-card {
  background: #2b2b2b;
  color: white;
  padding: 15px;
  border-radius: 8px;
  width: 180px;
  text-align: center;
  border: 2px solid #666;
}

.monstre-card h3 {
  margin: 0;
  font-size: 16px;
}

.monstre-card p {
  margin: 5px 0;
}

.monstre-card button {
  margin-top: 10px;
  background-color: #c0392b;
  color: white;
  padding: 8px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.monstre-card button:hover {
  background-color: #922b21;
}
