/*
  deck_page.css
  デッキページ用の追加スタイル。カード枚数表示の黒丸・白枠・中央白文字。
*/
.deck-card-count-circle {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 50px;
  height: 30px;
  background: #000000;
  border: 0px solid #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #fff;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 0px 8px rgb(255, 255, 255);
  pointer-events: none;
}

.deck-card-set-label {
  position: absolute;
  right: 5px;
  bottom: 36px;
  background-color: #990000;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: bold;
  z-index: 2;
  pointer-events: none;
}

.deck-card-item {
  position: relative;
}
