.tracker {
  display: block;
  margin: auto;
  max-width: 800px;
  height: 300px;
  box-shadow: 0 0 8px rgb(0, 0, 0);
}

.tracker * {
  font-size: x-large;
}

.tracker > div {
  position: absolute;
  max-width: 800px;
  width: 100%;
  height: 300px;
}

.status-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: repeat(3, 120px);
}

.status {
  width: 200px;
  height: 100px;
  /* max-width: 100%; */
}

.status > div {
  height: 100px;
  width: 200px;
  margin: auto;
}

@media (max-width: 1100px) {
  .status-list {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: repeat(5, 200px);
  }

  .status {
    height: 160px;
    width: 220px;
  }

  .status > div {
    height: 160px;
    width: 220px;
  }
}

.status .tracker-text > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

.tracker-text {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.tracker-text > div {
  display: flex;
  align-items: baseline;
  flex-direction: row;
  justify-content: center;
}

.tracker-text img {
  height: 25px;
  /* margin-right:10px; */
  margin-left:10px;
}

.turnButtons button {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.turnButtons img {
  max-width: 100%;
  max-height: 40%;
}

.tracker-logic {
  display: flex;
  flex-direction: row-reverse;
}

.tracker-logic > button {
  width: 100%;
  height: 100%;
  background: none;
  border: none;
}

.tracker-logic > button:active {
  /* box-shadow: inset 0 0 5px rgb(0, 0, 0); */
  background-color: rgba(0, 0, 0, 0.2);
}

.tracker-active,
.tracker-max {
  display: inline-block;
}

.tracker-active {
  font-size: xx-large;
  font-weight: bold;
}

.tracker-max {
  font-size: medium;
  color: rgb(100, 100, 100);
}

.turnButtons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 10px 1fr;
  row-gap: 5px;
  column-gap: 5px;
  max-width: 80%;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

.turnButtons > *,
.status-button {
  height: 100px;
  font-size: xx-large;
}

.status-button {
  width: 80%;
  display: block;
  margin: auto;
}

#status-section button {
  background-color: white;
  box-shadow: 0 0 5px 0px var(--hana-highlight-color);
  border: none;
}

#status-section button:hover {
  box-shadow: 0 0 2px 2px var(--hana-highlight-color);
}

#status-section button:active {
  box-shadow: 0 0 2px 4px var(--hana-highlight-color);
}

.status-list-inline {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  gap:30px;
  margin-top:10px;
  margin-bottom:10px;
}

.status-list-inline * {
  font-size: xx-large;
}

.status-list-inline .status-image {
  height: 50px;
}

.counter {
  width: unset !important;
}

.counter > div {
  width: unset !important;
}

.HP {
  background-color: rgb(255, 165, 165);
}

.ST {
  background-color: rgb(246, 255, 149);
}

.Sanity {
  background-color: rgb(149, 175, 255);
}

.Light {
  background-color: rgb(255, 255, 255);
}

@media (max-width: 1100px) {
  .swal2-popup {
    scale: 1.5;
  }
}
