.statblock-container {
  margin: auto;
  margin-top: 2px;
  margin-bottom: 2px;
  border: solid 4px black;
  border-radius: 20px;
  width: 85%;
  align-items: center;
  background: radial-gradient(circle, #545a79, rgba(47, 52, 77, 0.631372549) 100%);
  color: white;
  padding: 10px;
}

.bestiary-titles {
  margin: auto;
  margin-top: 2px;
  margin-bottom: 2px;
  width: 85%;
  align-items: center;
  color: white;
}

@media (max-width: 1024px) {
  .statblock-container {
    width: 100%;
  }
  .bestiary-titles {
    width: 100%;
  }
}
.bestiary-name {
  background: radial-gradient(circle at 50% 50%, black 80%, rgba(0, 0, 0, 0) 100%);
  padding: 8px 0px 0px 0px;
  border-radius: 7px;
  text-align: center;
  border: #d7b740 2px solid;
  border-left: none;
  border-right: none;
  font-size: 16px;
}

.bestiary-name h3 {
  margin: 0px;
}

.statblock-container:hover {
  background-color: #252525;
  color: rgb(211, 191, 207);
}

.statblock-title {
  font-size: 18px;
  font-weight: bold;
}

#health-display {
  width: 80px; /* Circle size */
  height: 80px; /* Circle size */
  background: radial-gradient(circle, #488b45, rgba(58, 122, 20, 0.631) 100%);
  border-radius: 50%; /* Makes it round */
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid white; /* Circle border */
  font-size: 26px; /* Adjusts the size of the text */
  margin: 0 auto; /* Centers the circle horizontally */
}

#power-display {
  width: 80px; /* Circle size */
  height: 80px; /* Circle size */
  background: radial-gradient(circle, #8502ff, #630ab6 100%);
  border-radius: 50%; /* Makes it round */
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid white; /* Circle border */
  font-size: 26px; /* Adjusts the size of the text */
  margin: 0 auto; /* Centers the circle horizontally */
}

#spell-attack-display {
  width: 60px;
  text-align: center;
  background-color: rgb(0, 0, 0);
  border: 1px #494e6b solid;
  font-size: 18px;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
}

#spell-damage-display {
  width: 60px;
  text-align: center;
  background-color: rgb(0, 0, 0);
  border: 1px #494e6b solid;
  font-size: 18px;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
}

.statblock-border {
  margin: auto;
  margin-top: 2px;
  margin-bottom: 2px;
  border: solid 2px black;
  border-radius: 20px;
  width: 70%;
  align-items: center;
  background-color: rgb(88, 88, 88);
  color: white;
  padding: 10px;
}

.selected-statblock {
  background-color: rgba(85, 65, 130, 0.5);
  border: 4px solid black;
}

.details-row {
  padding: 30px;
}

.mob-filter-btn {
  width: 90px;
  height: 90px;
  padding: 0px;
  margin: 0px 8px 10px 8px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  border: solid #98878f 5px;
  background-color: rgb(85, 65, 130);
  color: white;
}

.mob-filter-btn.selected {
  background-color: white;
  color: black;
  border-color: rgb(85, 65, 130);
}

li {
  font-size: 14px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.statblock-immunities {
  margin: auto;
  width: 90%;
  text-align: center;
}

.statblock-resistances {
  margin: auto;
  width: 90%;
  text-align: center;
}

.stat-display-container {
  display: flex;
  align-items: center;
}

.monster-name {
  display: inline-block;
  padding: 0px 20px 0px 20px;
  font-size: 16px;
}

.resist-block {
  margin: auto;
  width: 60px;
  height: 60px;
  font-size: 14px;
}

.physical {
  border: 3px solid black;
  border-color: grey;
  color: white;
}

.fire {
  border: 3px solid black;
  border-color: red;
  color: white;
}

.lightning {
  border: 3px solid black;
  border-color: rgb(224, 255, 51);
  color: white;
}

.cold {
  border: 3px solid black;
  border-color: blue;
  color: white;
}

.psychic {
  border: 3px solid black;
  border-color: purple;
  color: white;
}

.dark {
  border: 3px solid black;
  border-color: black;
  color: white;
}

.divine {
  border: 3px solid black;
  border-color: rgb(255, 255, 255);
  color: white;
}

.arcane {
  border: 3px solid black;
  border-color: rgb(75, 228, 255);
  color: white;
}

.resist-block {
  display: inline-flex;
  width: 80px;
}

.resist-inner {
  width: 80px;
  justify-content: center;
}

.inner-resist {
  font-size: 16px;
  width: 50px;
  padding-top: 10px;
  height: 50px;
  background-color: #252525;
  border-radius: 50%;
  margin: auto;
}

.monster-details {
  font-size: 14px;
  padding: 0px 20px 0px 20px;
  display: inline-block;
  text-align: left;
}

.move-title {
  font-size: 16px;
  margin-top: -10px;
  margin-bottom: -4px;
}

.statblock-stats {
  background-color: black;
  width: 100%;
  padding-top: 10px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}

.statblock-details-table {
  margin: auto;
  width: 100%;
  border-collapse: collapse;
  align-items: center;
}

.statblock-defense-table {
  margin: auto;
  width: 90%;
  border-collapse: collapse;
  align-items: center;
}

.statblock-attribute-table {
  margin: auto;
  width: 90%;
  border-collapse: collapse;
  align-items: center;
  margin-top: -8px;
  margin-bottom: -8px;
}

.test {
  background-color: #252525;
  border-radius: 20%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  border: 4px solid #494e6b;
}

.test2 {
  background-color: #252525;
  border-radius: 20%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  border: 4px solid #494e6b;
}

.statblock-attribute-cell {
  width: 20%;
  text-align: left;
  border: 1px solid black;
  text-align: center;
  border: none;
  font-size: 14px;
  font-weight: bold;
}

.statblock-attribute-title {
  width: 20%;
  text-align: left;
  border: 1px solid black;
  text-align: center;
  border: none;
  font-size: 14px;
  font-weight: bold;
}

.statblock-label {
  font-weight: 400;
  font-size: 14px;
}

.statblock-value {
  font-weight: 200;
  font-size: 14px;
}

.list-container {
  width: 90%;
  margin: auto;
  background-color: #252525;
  padding: 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  border: #494e6b 2px solid;
}/*# sourceMappingURL=statblock.css.map */