/* Keep the focused wild Pokémon status independent from the team sidebar. */
#stage .target-card {
  left: 50% !important;
  right: auto !important;
  top: 68px !important;
  width: min(240px, calc(100% - 32px)) !important;
  max-width: none !important;
  transform: translateX(-50%);
  z-index: 12;
  pointer-events: none;
  text-align: center;
}

#stage .target-card .target-hp {
  height: 8px;
}

@media (max-width: 740px) {
  #stage .target-card {
    top: 56px !important;
    width: min(210px, calc(100% - 24px)) !important;
  }
}
