html,
body {
  margin: 0;
}

* {
  box-sizing: border-box;
  user-select: none;
}

.page-pokemon {
  min-height: 100vh;
  background: linear-gradient(180deg, #d6e4fa, transparent);
  background-attachment: fixed;
  overflow: hidden;
}

.iTable {
  display: flex;
  margin: 24px auto 24px;
  width: fit-content;
  color: #ffffff;
  font-size: 12px;
  border: 1px solid black;
  border-radius: 8px;
  background-color: rgb(128, 128, 128);
  overflow: hidden;
  --wt1: 24px;
  --wt2: 64px;
  --ht1: 24px;
}

.iBar {
  display: flex;
  flex-direction: column;
}

.iRTitle {
  width: var(--wt1);
  text-align: center;
  line-height: var(--wt1);
  writing-mode: tb-rl;
  letter-spacing: 8px;
  font-weight: bold;
  background-color: rgb(188, 65, 58);
}

.iLogo {
  text-align: center;
  height: calc(var(--ht1) * 3);
  line-height: calc(var(--ht1) * 3);
  cursor: pointer;
}

.iLogo.big {
  height: calc(var(--ht1) * 4);
  line-height: calc(var(--ht1) * 4);
}

.iContent {
  display: flex;
  flex-direction: column;
}

.iIndex {
  border-top: 1px solid #ffffff;
  font-weight: bold;
  font-size: 14px;
  background-color: rgb(58, 101, 188);
}

.iTTitle {
  height: var(--ht1);
  line-height: var(--ht1);
  text-align: center;
  letter-spacing: 8px;
  font-weight: bold;
  background-color: rgb(58, 101, 188);
}

.iTd {
  display: flex;
  width: var(--wt2);
  height: var(--ht1);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.iTdText {
  height: 20px;
  width: 60px;
  text-align: center;
  line-height: 20px;
  border-radius: 4px;
}

.bg0 {
  background-color: rgb(91, 91, 91);
}

.bg100 {
  background-color: #ffffff;
  color: #333333;
}

.bg50 {
  background-color: rgb(228, 63, 63);
}

.bg25 {
  background-color: rgb(90, 62, 62);
}

.bg200 {
  background-color: rgb(61, 197, 61);
}

.bg400 {
  background-color: rgb(225, 0, 255);
}

.iMark {
  background-color: rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0.5);
}

.flex {
  display: flex !important;
}

.none {
  display: none !important;
}

.Pokemon-Mark {
  display: flex;
  align-items: center;
  width: 60px;
  height: 20px;
  font-size: 12px;
  border-radius: 4px;
  background-color: #414e5a;
  color: #ffffff;
  overflow: hidden;
  user-select: none;
  cursor: pointer;
}

.Pokemon-Mark img {
  width: 20px;
  height: 20px;
  object-fit: none;
}

.Pokemon-Mark .iText {
  flex: 1;
  text-align: center;
}

.Pokemon-Mark.hiddenText {
  width: 20px;
}

.Pokemon-Mark.hiddenText .iText {
  display: none;
}

.options {
  text-align: center;
}

.tips {
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}
