.center-text {
  text-align: center;
}

.form-container-wrapper {
  display: flex;
  justify-content: center;
}

.form-container {
  display: grid;
  grid-template-columns: max-content auto;
  gap: 10px 20px;
  max-width: 700px; /* Set a maximum width for the form */
}

.form-group {
  display: contents;
  margin-bottom: 10px;
}

.form-group label {
  grid-column: 1;
}

.form-group input,
.form-group select,
.form-group .form-control {
  grid-column: 2;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #fff;
  background-color: #4CAF50;
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px #999;
}

.btn:hover {background-color: #3e8e41}

.btn:active {
  background-color: #3e8e41;
  box-shadow: 0 2px #666;
  transform: translateY(2px);
}

.button-container {
  margin-top: 20px;
}

.battle-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  gap: 10pc
  align
}

.actor-container {
  text-align: center;
  width: 30%;
}

.actor-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

.health-bar {
  background-color: #ccc;
  border: 1px solid #000;
  height: 20px;
  width: 100%;
  margin: 10px 0;
  position: relative;
}

.health-bar-fill {
  background-color: #4caf50;
  height: 100%;
  position: absolute;
}

.stats-comparison {
  width: 40%;
}

.stats-comparison table {
  width: 100%;
  border-collapse: collapse;
}

.stats-comparison th, .stats-comparison td {
  border: 1px solid #000;
  padding: 8px;
  text-align: center;
}

.move-combinations {
  margin-top: 30px;
}

.move-combinations table {
  width: 100%;
  border-collapse: collapse;
}

.move-combinations th, .move-combinations td {
  border: 1px solid #000;
  padding: 8px;
  text-align: center;
}

.defender-damage {
  background-color: #d0e7ff; /* Pale blue */
}

.attacker-damage {
  background-color: #ffd0d0; /* Pale red */
}

.defender-dead {
  background-color: #87ceeb; /* Bright blue */
}

.attacker-dead {
  background-color: #ff7f7f; /* Bright red */
}