body {
  background-color: rgb(255, 255, 255);
}
.card-img {
  object-fit: cover;
  height: 100%;
  border-radius: 4.8%;
  overflow: hidden;
}
.pool {
  max-height: 30rem;
  overflow-y: scroll;
  background-color: rgb(48, 48, 48);
}
#deckPool {
  overflow-x: auto;
}
#deckPool .row.flex-nowrap {
  flex-wrap: nowrap;
}
.card-responsive {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.card-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.card-stack {
  position: relative;
  min-height: 300px;
}
.card-item {
  position: absolute;
  left: 0;
  transition: transform 0.1s ease, z-index 0.1s ease;
  pointer-events: none;
}
.card {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.1s ease;
}
.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10%;
  z-index: 4000;
}
.card:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2),
      0 0 10px rgba(240, 255, 156, 0.6);
  z-index: 4000;
  outline: 1px solid;
  cursor: pointer;
}
.pool-card:nth-child(n+2) {
  margin-top: -120%;
}
.window {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 15vw;
}
.card,
.card * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.card:focus {
  outline: none;
}
.card {
  -webkit-tap-highlight-color: transparent;
}
.dark-color {
  background-color: rgb(28, 28, 28);
}
html,
body {
  height: 100%;
  margin: 0;
}
.window .card,
.window .card:hover,
.window .card * {
  padding: 0.2rem;
  border-radius: 9%;
  transform: none !important;
  box-shadow: none !important;
  z-index: auto !important;
  cursor: default !important;
  pointer-events: none !important;
  transition: none !important;
  outline: none !important;
  background-color: transparent !important;
  border: none !important;
}
.expand-button {
  padding-right: 1rem;
  font-size: 1.5rem;
}
.expand-button:hover {
  cursor: pointer;
  color: rgb(199, 139, 255);
}
#deckPoolContainer,
#sideboardPoolContainer,
#testHandContainer {
  transition: max-height 0.2s;
  overflow: hidden;
  max-height: 50vh;
}
.land-buttons {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
}
.land-buttons button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  padding: 0.4rem;
}
#mainControls button {
  font-size: 0.6rem;
}