/* ENEMY */

.enemy-section {
  background-color: var(--color-1);
  margin: 1rem 0;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
}

.grid-4 {
  display: grid;
  grid-template-columns: 1rem repeat(3, 1fr) 2rem;
  justify-items: center;
  align-items: center;
}

.statistics {
  font-size: 1rem;
  font-weight: 600;
  background-color: var(--color-0);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  box-shadow: inset 0 0 0.2rem rgba(0, 0, 0, 0.2);
}

.increased-run-times,
.progress-per-run,
.left-run-times {
  margin: 1rem;
}

.materials-per-run {
  display: flex;
  align-items: center;
}

.materials-per-run img {
  width: 2rem;
  margin-left: 0.8rem;
}

.enemy-headers {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.enemies {
  row-gap: 1rem;
}

.enemy-row-item {
  width: 10rem;
  text-align: center;
  color: var(--color-9);
  font-size: 1rem;
  border-radius: 100rem;
  padding: 0.4rem;
  border: none;
}

.enemy-row-item:focus {
  outline: none;
  box-shadow: 0 0 0.2rem var(--color-9);
}

.activate-enemy {
  width: 1rem;
  height: 1rem;
  accent-color: var(--color-9);
}

.delete-row {
  width: 1.8rem;
  height: 1.8rem;
}

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

.add-enemy-btn {
  width: 2rem;
  height: 2rem;
  margin-top: 1rem;
}
