@charset "UTF-8";
.configurator {
  width: 100%;
  height: 100vh;
  background-color: black;
  color: white;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow: hidden;
}
.configurator-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 10px 20px;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}
.configurator-header h1 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(45deg, #fff, #ccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.configurator-header .header-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}
.configurator-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  min-height: 0;
}
.configurator-content .content-grid {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 1200px) {
.configurator-content .content-grid {
    grid-template-columns: 1fr;
    gap: 15px;
}
}
.column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1200px) {
.column {
    gap: 15px;
}
}
.section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 8px;
}
.section .section-header h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
}
.section .section-header .header-buttons {
  display: flex;
  gap: 8px;
}
.section > h2 {
  margin: 0 0 15px 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 8px;
}
.cards-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.card-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.card-input-group .card-label {
  font-weight: 500;
  color: #ccc;
  font-size: 0.85rem;
}
.card-input-group .card-input {
  padding: 10px 14px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.card-input-group .card-input:focus {
  outline: none;
  border-color: #4a9eff;
  box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.2);
}
.card-input-group .card-input.error {
  border-color: #ff4757;
  box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.2);
}
.settings-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.setting-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.setting-group label {
  font-weight: 500;
  color: #ccc;
  font-size: 0.85rem;
}
.setting-group .error-message {
  color: #ff4757;
  font-size: 0.8rem;
  margin-top: 3px;
}
.input, .select {
  padding: 10px 14px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.input:focus, .select:focus {
  outline: none;
  border-color: #4a9eff;
  box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.2);
}
.input.small, .select.small {
  width: 70px;
  padding: 6px 10px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 500;
  color: #ccc;
  font-size: 0.85rem;
}
.checkbox-label.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.checkbox-label .checkbox {
  position: relative;
  width: 20px;
  height: 20px;
  appearance: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}
.checkbox-label .checkbox:checked {
  background: #4a9eff;
  border-color: #4a9eff;
}
.checkbox-label .checkbox:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}
.checkbox-label .checkbox:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.2);
}
.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}
.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 500;
  color: #ccc;
  font-size: 0.85rem;
}
.radio-group label input[type=radio] {
  position: relative;
  width: 18px;
  height: 18px;
  appearance: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}
.radio-group label input[type=radio]:checked {
  border-color: #4a9eff;
  background: rgba(255, 255, 255, 0.05);
}
.radio-group label input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4a9eff;
}
.radio-group label input[type=radio]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.2);
}
.contract-input-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contract-input-group .contract-display {
  color: #4a9eff;
  font-weight: 500;
  font-size: 1.1rem;
}
.fake-tricks-inputs {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}
.fake-tricks-inputs .fake-input-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fake-tricks-inputs .fake-input-group label {
  font-size: 0.85rem;
  color: #aaa;
}
.active-positions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.active-positions .position-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.active-positions .position-buttons {
  display: flex;
  gap: 8px;
}
.controls-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-direction: column;
  gap: 12px;
}
.control-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.control-item span {
  color: #ccc;
  font-size: 0.85rem;
}
.key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  user-select: none;
}
.keys {
  display: flex;
  align-items: center;
  gap: 4px;
}
.key-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.btn {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.btn.btn-primary {
  background: linear-gradient(135deg, #4a9eff 0%, #357abd 100%);
  color: white;
  box-shadow: 0 3px 10px rgba(74, 158, 255, 0.3);
}
.btn.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(74, 158, 255, 0.4);
}
.btn.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn.btn-small {
  padding: 5px 10px;
  font-size: 0.75rem;
}
.btn.btn-large {
  padding: 10px 24px;
  font-size: 0.95rem;
}
.configurator-footer {
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.configurator-footer .footer-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.configurator-footer .footer-content .author {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 400;
}
.error-list {
  margin-top: 8px;
  max-height: 100px;
  overflow-y: auto;
}
.error-list .error-item {
  color: #ff4757;
  font-size: 0.8rem;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 71, 87, 0.2);
}
.error-list .error-item:last-child {
  border-bottom: none;
}
.configurator-content::-webkit-scrollbar {
  width: 8px;
}
.configurator-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.configurator-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}
.configurator-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}
.one-dimensional-hand-view[data-v-9456e0de] {
  position: absolute;
  width: 100%;
  height: 100%;
}

.center-panel[data-v-399a864d] {
  padding: 16%;
  position: relative;
}
.center-panel .frame[data-v-399a864d] {
  position: absolute;
  top: 8%;
  left: 8%;
  right: 8%;
  bottom: 8%;
  border-radius: 2px;
  padding: 10%;
}
.center-panel .frame.show-frame[data-v-399a864d] {
  outline: white solid 3px;
}
.center-panel .frame.show-frame .center-frame-label[data-v-399a864d] {
  cursor: default;
  position: absolute;
  outline: solid white 1px;
  padding: 2px 5px;
  background-color: black;
  border-radius: 2px;
  width: calc((95vh - 20px - 8px - 6px) / 4.5 * 53 / 80);
  text-align: center;
  text-transform: uppercase;
  color: white;
  font-size: 2vh;
  font-weight: bold;
}
.center-panel .frame.show-frame .center-frame-label.label-nonvul[data-v-399a864d] {
  background-color: rgb(77, 117, 77);
}
.center-panel .frame.show-frame .center-frame-label.label-vul[data-v-399a864d] {
  background-color: rgb(172, 21, 0);
  text-decoration: underline;
}
.center-panel .frame.show-frame .center-frame-label.focused[data-v-399a864d] {
  background-color: yellow;
  color: black;
}
.center-panel .frame.show-frame .center-frame-label-north[data-v-399a864d] {
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.center-panel .frame.show-frame .center-frame-label-east[data-v-399a864d] {
  right: 0;
  top: 50%;
  transform: translateX(50%) translateY(-50%) rotate(90deg);
  transform-origin: 50% 50%;
}
.center-panel .frame.show-frame .center-frame-label-south[data-v-399a864d] {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(50%);
}
.center-panel .frame.show-frame .center-frame-label-west[data-v-399a864d] {
  top: 50%;
  left: 0;
  transform: translateX(-50%) translateY(-50%) rotate(270deg);
  transform-origin: 50% 50%;
}.trick-view[data-v-b854850b] {
  aspect-ratio: 1;
  position: relative;
}
.trick-view-origin[data-v-b854850b] {
  position: absolute;
}
.trick-view-origin-north[data-v-b854850b] {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.trick-view-origin-south[data-v-b854850b] {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.trick-view-origin-east[data-v-b854850b] {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.trick-view-origin-west[data-v-b854850b] {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.trick-view[data-v-b854850b] {
  position: relative;
}
.trick-view-origin[data-v-b854850b] {
  position: absolute;
}
.trick-view-origin-north[data-v-b854850b] {
  width: 100%;
}
.trick-view-origin-north div[data-v-b854850b] {
  margin: 0 auto;
  height: calc((95vh - 20px - 8px - 6px) / 4.5);
  width: calc((95vh - 20px - 8px - 6px) / 4.5 * 53 / 80);
}
.trick-view-origin-east[data-v-b854850b] {
  height: 100%;
  right: 0;
  display: flex;
  align-items: center;
}
.trick-view-origin-east div[data-v-b854850b] {
  width: calc((95vh - 20px - 8px - 6px) / 4.5);
  height: calc((95vh - 20px - 8px - 6px) / 4.5 * 53 / 80);
}
.trick-view-origin-south[data-v-b854850b] {
  width: 100%;
  bottom: 0;
}
.trick-view-origin-south div[data-v-b854850b] {
  margin: 0 auto;
  height: calc((95vh - 20px - 8px - 6px) / 4.5);
  width: calc((95vh - 20px - 8px - 6px) / 4.5 * 53 / 80);
}
.trick-view-origin-west[data-v-b854850b] {
  height: 100%;
  display: flex;
  align-items: center;
}
.trick-view-origin-west div[data-v-b854850b] {
  width: calc((95vh - 20px - 8px - 6px) / 4.5);
  height: calc((95vh - 20px - 8px - 6px) / 4.5 * 53 / 80);
}
.vertical.trick-view .trick-view-origin-west div[data-v-b854850b] {
  width: calc((95vh - 20px - 8px - 6px) / 4.5 * 53 / 80);
  height: calc((95vh - 20px - 8px - 6px) / 4.5);
}
.vertical.trick-view .trick-view-origin-east div[data-v-b854850b] {
  width: calc((95vh - 20px - 8px - 6px) / 4.5 * 53 / 80);
  height: calc((95vh - 20px - 8px - 6px) / 4.5);
}
.debug .trick-view-origin-north div[data-v-b854850b] {
  background-color: lightblue;
}
.debug .trick-view-origin-east div[data-v-b854850b] {
  background-color: lightgoldenrodyellow;
}
.debug .trick-view-origin-south div[data-v-b854850b] {
  background-color: lightgreen;
}
.debug .trick-view-origin-west div[data-v-b854850b] {
  background-color: lightpink;
}
.absolute[data-v-b854850b] {
  position: absolute;
}.card[data-v-46c11ddf] {
  position: absolute;
  cursor: default;
  transition: transform 0.2s ease;
}
.card img[data-v-46c11ddf] {
  width: 100%;
  height: 100%;
  display: block;
}

/* Don't remove the card from the DOM, just hide it for animation in hide-unhide situations */
.card.hidden[data-v-46c11ddf] {
  visibility: collapse;
}
.card.hidden .back[data-v-46c11ddf], .card.hidden .front[data-v-46c11ddf] {
  display: none;
}
.card .back[data-v-46c11ddf] {
  display: none;
}
.card.reverse .front[data-v-46c11ddf] {
  display: none;
}
.card.reverse .back[data-v-46c11ddf] {
  display: block;
}
.card.playable[data-v-46c11ddf]:not(.reverse) {
  cursor: pointer;
}
.card.playable-dummy[data-v-46c11ddf]:not(.reverse) {
  cursor: pointer;
}
.card.playable[data-v-46c11ddf]:hover {
  transform: scale(1.05);
  z-index: 1000;
}
.card[data-v-46c11ddf] {
  height: calc((95vh - 20px - 8px - 6px) / 4.5);
  aspect-ratio: 530/800;
  display: inline-block;
  position: absolute;
  transition: transform ease 1s;
  top: 0;
  left: 0;
  transform-origin: 0 0;
}
.card.playable img[data-v-46c11ddf], .card.playable-dummy img[data-v-46c11ddf] {
  transition: ease-in-out 0.2s;
}
.card.playable:hover:not(.reverse) img[data-v-46c11ddf] {
  transform: translateY(-10%);
}
.card.playable-dummy:hover:not(.reverse) img[data-v-46c11ddf] {
  transform: translateX(-10%);
}
.card:not(.reverse) img.front[data-v-46c11ddf] {
  z-index: 1;
  display: initial;
}
.card.reverse img.back[data-v-46c11ddf] {
  z-index: 1;
  display: initial;
}
.card img[data-v-46c11ddf] {
  z-index: -1;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: fill;
}
#cards[data-v-cb2fdda8] {
  height: 0px;
  width: 0px;
}
.debug .card.playable {
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.7);
}
.debug .card.playable-dummy {
  box-shadow: 0 0 10px rgba(255, 255, 0, 0.7);
}
.debug-panel[data-v-cfa80093] {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #00ff00;
    border: 1px solid #00ff00;
    border-radius: 4px;
    padding: 8px;
    font-family: monospace;
    font-size: 12px;
    z-index: 9999;
    min-width: 200px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}
.debug-header[data-v-cfa80093] {
    font-weight: bold;
    border-bottom: 1px solid #00ff00;
    margin-bottom: 6px;
    padding-bottom: 4px;
}
.debug-item[data-v-cfa80093] {
    display: flex;
    justify-content: space-between;
    margin: 4px 0;
}
.debug-item-label[data-v-cfa80093] {
    margin-right: 10px;
}
.debug-item-value[data-v-cfa80093] {
    font-weight: bold;
}
.bidding-box[data-v-fd7c8f1d] {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 12px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.bidding-box .disabled[data-v-fd7c8f1d] {
  opacity: 0.5;
  cursor: not-allowed;
}
.bidding-box[data-v-fd7c8f1d]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  border-radius: 12px;
  pointer-events: none;
}
.bidding-box-level[data-v-fd7c8f1d] {
  display: flex;
  gap: 4px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.bidding-box-other[data-v-fd7c8f1d] {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}
.bidding-box-other[data-v-fd7c8f1d]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}
.bidding-box-bid[data-v-fd7c8f1d] {
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.8rem;
  height: 2.2rem;
  font-weight: 600;
  font-size: 0.8rem;
  position: relative;
  overflow: hidden;
}
.bidding-box-bid[data-v-fd7c8f1d]::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}
.bidding-box-bid[data-v-fd7c8f1d]:hover:not(.disabled) {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.bidding-box-bid[data-v-fd7c8f1d]:hover:not(.disabled)::before {
  left: 100%;
}
.bidding-box-bid[data-v-fd7c8f1d]:active:not(.disabled) {
  transform: translateY(-1px) scale(1.02);
}
.bidding-box-bid .level[data-v-fd7c8f1d] {
  color: white;
  font-weight: 700;
  margin-right: 0.2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.bidding-box-bid .suit[data-v-fd7c8f1d] {
  font-size: 1rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}
.bidding-box-bid.suit-clubs[data-v-fd7c8f1d] {
  color: #60a5fa;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.15) 0%, rgba(96, 165, 250, 0.05) 100%);
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.1);
}
.bidding-box-bid.suit-clubs[data-v-fd7c8f1d]:hover {
  box-shadow: 0 8px 25px rgba(96, 165, 250, 0.2);
  border-color: rgba(96, 165, 250, 0.6);
}
.bidding-box-bid.suit-diamonds[data-v-fd7c8f1d] {
  color: #fb923c;
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.15) 0%, rgba(251, 146, 60, 0.05) 100%);
  border-color: rgba(251, 146, 60, 0.4);
  box-shadow: 0 0 20px rgba(251, 146, 60, 0.1);
}
.bidding-box-bid.suit-diamonds[data-v-fd7c8f1d]:hover {
  box-shadow: 0 8px 25px rgba(251, 146, 60, 0.2);
  border-color: rgba(251, 146, 60, 0.6);
}
.bidding-box-bid.suit-hearts[data-v-fd7c8f1d] {
  color: #f87171;
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.15) 0%, rgba(248, 113, 113, 0.05) 100%);
  border-color: rgba(248, 113, 113, 0.4);
  box-shadow: 0 0 20px rgba(248, 113, 113, 0.1);
}
.bidding-box-bid.suit-hearts[data-v-fd7c8f1d]:hover {
  box-shadow: 0 8px 25px rgba(248, 113, 113, 0.2);
  border-color: rgba(248, 113, 113, 0.6);
}
.bidding-box-bid.suit-spades[data-v-fd7c8f1d] {
  color: white;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}
.bidding-box-bid.suit-spades[data-v-fd7c8f1d]:hover {
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}
.bidding-box-bid.suit-notrump[data-v-fd7c8f1d] {
  color: #9ca3af;
  background: linear-gradient(135deg, rgba(156, 163, 175, 0.15) 0%, rgba(156, 163, 175, 0.05) 100%);
  border-color: rgba(156, 163, 175, 0.4);
  box-shadow: 0 0 20px rgba(156, 163, 175, 0.1);
}
.bidding-box-bid.suit-notrump[data-v-fd7c8f1d]:hover {
  box-shadow: 0 8px 25px rgba(156, 163, 175, 0.2);
  border-color: rgba(156, 163, 175, 0.6);
}
.bidding-box-bid.pass[data-v-fd7c8f1d] {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
}
.bidding-box-bid.pass[data-v-fd7c8f1d]:hover {
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.25);
  border-color: rgba(34, 197, 94, 0.7);
}
.bidding-box-bid.double[data-v-fd7c8f1d] {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.15);
}
.bidding-box-bid.double[data-v-fd7c8f1d]:hover {
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.7);
}
.bidding-box-bid.redouble[data-v-fd7c8f1d] {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}
.bidding-box-bid.redouble[data-v-fd7c8f1d]:hover {
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
  border-color: rgba(59, 130, 246, 0.7);
}.bid[data-v-d13381d7] {
  display: inline-block;
  transition: ease 1s;
}
.bid img[data-v-d13381d7] {
  top: 50%;
  left: 50%;
}.bid-stack[data-v-6d7bb093] {
  position: relative;
}
.bid-stack .bid[data-v-6d7bb093] {
  position: absolute;
}
.bid-stack .bid[data-v-6d7bb093]:hover {
  z-index: 100;
}
.bid-stack .bid-animate[data-v-6d7bb093] {
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
}
.bid-stack .flowFromTop[data-v-6d7bb093] {
  animation-name: flowFromTop-6d7bb093;
  transform: translateY(-20px);
}
.bid-stack .flowFromBottom[data-v-6d7bb093] {
  animation-name: flowFromBottom-6d7bb093;
  transform: translateY(20px);
}
.bid-stack .flowFromLeft[data-v-6d7bb093] {
  animation-name: flowFromLeft-6d7bb093;
  transform: translateX(-20px);
}
.bid-stack .flowFromRight[data-v-6d7bb093] {
  animation-name: flowFromRight-6d7bb093;
  transform: translateX(20px);
}
@keyframes flowFromTop-6d7bb093 {
0% {
    transform: translateY(-20px);
}
100% {
    transform: translateY(0);
}
}
@keyframes flowFromBottom-6d7bb093 {
0% {
    transform: translateY(20px);
}
100% {
    transform: translateY(0);
}
}
@keyframes flowFromLeft-6d7bb093 {
0% {
    transform: translateX(-20px);
}
100% {
    transform: translateX(0);
}
}
@keyframes flowFromRight-6d7bb093 {
0% {
    transform: translateX(20px);
}
100% {
    transform: translateX(0);
}
}
.debug[data-v-6d7bb093] {
  z-index: 9999;
  color: red;
  position: absolute;
  top: 0;
  left: 0;
}.bidding-center-panel {
  aspect-ratio: 1;
  position: relative;
  grid-row: 2;
  grid-column: 2;
  padding: 10px;
  display: grid;
  align-self: center;
}
.bidding-center-panel.animate {
  transition: all 1s;
}
.bidding-center-panel.bidding-center-panel-auction {
  gap: 3px;
  grid-template-columns: 10vh auto 10vh;
  grid-template-rows: 10vh auto 10vh;
}
.bidding-center-panel:not(.bidding-center-panel-auction) {
  padding: 7% 7% 7% 7%;
  grid-template-columns: 0 auto 0;
  grid-template-rows: 0 auto 0;
}
.bidding-center-panel:not(.bidding-center-panel-auction).dummy-north {
  padding: 12% 7% 2% 7%;
}
.bidding-center-panel:not(.bidding-center-panel-auction).dummy-south {
  padding: 2% 7% 12% 7%;
}
.bidding-center-panel .bidding-center-panel-container {
  grid-column: 2;
  grid-row: 2;
  position: relative;
}
.bidding-center-panel .bid-stack-north {
  grid-row: 1;
  grid-column: 2;
}
.bidding-center-panel .bid-stack-east {
  grid-row: 2;
  grid-column: 3;
}
.bidding-center-panel .bid-stack-south {
  grid-row: 3;
  grid-column: 2;
}
.bidding-center-panel .bid-stack-west {
  grid-column: 1;
  grid-row: 2;
}
.absolute {
  position: absolute;
}.debug .bid-stack-north[data-v-6633ddcd] {
  background-color: lightblue;
}
.debug .bid-stack-east[data-v-6633ddcd] {
  background-color: lightgoldenrodyellow;
}
.debug .bid-stack-south[data-v-6633ddcd] {
  background-color: lightgreen;
}
.debug .bid-stack-west[data-v-6633ddcd] {
  background-color: lightpink;
}
.one-dimensional-hand-view[data-v-e13cf9d7] {
  position: absolute;
  width: 100%;
  height: 100%;
}

.main-view {
  padding: 8px;
  padding-top: 6px;
  max-height: 100vh;
  aspect-ratio: 1;
  background-color: black;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
}
.main-view .center-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}
.main-view.vertical .hand-west {
  margin-top: calc((95vh - 20px - 8px - 6px) / 4.5);
  margin-bottom: calc((95vh - 20px - 8px - 6px) / 4.5);
}
.main-view.vertical .hand-east {
  margin-top: calc((95vh - 20px - 8px - 6px) / 4.5);
  margin-bottom: calc((95vh - 20px - 8px - 6px) / 4.5);
}
.main-view .center-frame-container {
  position: relative;
}
.main-view .bidding-center-panel {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.main-view .bidding-center-panel-fake {
  position: absolute;
  top: 0;
  width: 100%;
}
.main-view .bidding-center-panel-fake .center-frame-label {
  display: none;
}
.main-view .trick-view {
  width: 100%;
  aspect-ratio: 1;
}
.main-view .center-frame {
  min-height: 0;
  aspect-ratio: 1;
  display: grid;
  overflow: hidden;
}
.debug .hand-north {
  background-color: lightblue;
}
.debug .hand-east {
  background-color: lightgoldenrodyellow;
}
.debug .hand-south {
  background-color: lightgreen;
}
.debug .hand-west {
  background-color: lightpink;
}
.end-text {
  color: white;
  position: absolute;
  font-size: 5vh;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
  vertical-align: middle;
}
.filler {
  flex: 1;
}
.debug .filler {
  background-color: red;
}.bidding-history[data-v-8951b103] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  grid-template-rows: min-content;
  color: white;
  font-size: 2.4vh;
  text-align: center;
  margin-top: 1.5em;
}
.bidding-history .separator[data-v-8951b103] {
  grid-column: 1/span 4;
  height: 0;
  height: 1px;
  background-color: white;
}
.bidding-history .header[data-v-8951b103] {
  padding: 2px 10px;
}
.bidding-history .header-south[data-v-8951b103],
.bidding-history .header-north[data-v-8951b103],
.bidding-history .bid-view-south[data-v-8951b103],
.bidding-history .bid-view-north[data-v-8951b103] {
  color: goldenrod;
}
.bidding-history .bid-view[data-v-8951b103] {
  padding-bottom: 6px;
}.status-panel[data-v-afe37bad] {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  column-gap: 10px;
  padding-top: 50px;
}
.status-panel div[data-v-afe37bad],
.status-panel span[data-v-afe37bad] {
  padding: 4px 14px;
}
.status-panel .trick-count-panel[data-v-afe37bad] {
  display: grid;
  grid-template-columns: 1fr 20px 1fr;
}
.status-panel .c-tricks[data-v-afe37bad] {
  display: flex;
  flex-direction: column;
  grid-row: 2;
  padding: 0;
  outline: solid 1px white;
  outline-offset: -1px;
}
.status-panel .c-tricks .t-label[data-v-afe37bad] {
  background-color: white;
  color: black;
}
.status-panel .c-tricks.c-tricks-ns[data-v-afe37bad] {
  grid-column: 1;
}
.status-panel .c-tricks.c-tricks-ew[data-v-afe37bad] {
  grid-column: 3;
}
.status-panel .c-tricks .t-count[data-v-afe37bad] {
  grid-column: 1;
  grid-row: 3;
}
.status-panel .t-contract[data-v-afe37bad] {
  padding-left: 30px;
  padding-right: 30px;
  outline: solid 1px white;
  outline-offset: -1px;
}.control-panel[data-v-c21a913e] {
  display: flex;
  gap: 10px;
  flex-direction: column;
  width: 240px;
}
.control-panel .buttons[data-v-c21a913e] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.control-panel .suit-row[data-v-c21a913e] {
  display: flex;
  gap: 1px;
  padding: 1px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}
.control-panel .suit-row.suit-spades[data-v-c21a913e] {
  border-color: rgba(255, 255, 255, 0.2);
}
.control-panel .suit-row.suit-hearts[data-v-c21a913e] {
  border-color: rgba(248, 113, 113, 0.3);
  background: rgba(248, 113, 113, 0.05);
}
.control-panel .suit-row.suit-diamonds[data-v-c21a913e] {
  border-color: rgba(251, 146, 60, 0.3);
  background: rgba(251, 146, 60, 0.05);
}
.control-panel .suit-row.suit-clubs[data-v-c21a913e] {
  border-color: rgba(96, 165, 250, 0.3);
  background: rgba(96, 165, 250, 0.05);
}
.control-panel .suit-row.suit-disabled[data-v-c21a913e] {
  opacity: 0.3;
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.control-panel .suit-row.suit-disabled button[data-v-c21a913e] {
  cursor: not-allowed;
}
.control-panel button[data-v-c21a913e] {
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 1.8rem;
  height: 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}
.control-panel button[data-v-c21a913e]:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}
.control-panel button[data-v-c21a913e]:disabled {
  color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
  cursor: not-allowed;
  opacity: 0.2;
  border-color: rgba(255, 255, 255, 0.05);
}
.control-panel button .content-label[data-v-c21a913e] {
  font-weight: 600;
}
.control-panel button .hotkey-label[data-v-c21a913e] {
  font-size: 0.5rem;
  opacity: 0.7;
}
.control-panel button:disabled .hotkey-label[data-v-c21a913e] {
  opacity: 0.3;
}
.control-panel .hearts[data-v-c21a913e] {
  color: #f87171;
  border-color: rgba(248, 113, 113, 0.4);
}
.control-panel .hearts[data-v-c21a913e]:hover:not(:disabled) {
  background: rgba(248, 113, 113, 0.1);
  border-color: rgba(248, 113, 113, 0.6);
}
.control-panel .diamonds[data-v-c21a913e] {
  color: #fb923c;
  border-color: rgba(251, 146, 60, 0.4);
}
.control-panel .diamonds[data-v-c21a913e]:hover:not(:disabled) {
  background: rgba(251, 146, 60, 0.1);
  border-color: rgba(251, 146, 60, 0.6);
}
.control-panel .spades[data-v-c21a913e] {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}
.control-panel .spades[data-v-c21a913e]:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
.control-panel .clubs[data-v-c21a913e] {
  color: #60a5fa;
  border-color: rgba(96, 165, 250, 0.4);
}
.control-panel .clubs[data-v-c21a913e]:hover:not(:disabled) {
  background: rgba(96, 165, 250, 0.1);
  border-color: rgba(96, 165, 250, 0.6);
}
.claim-input[data-v-c21a913e] {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}
.claim-input[data-v-c21a913e]::-webkit-outer-spin-button, .claim-input[data-v-c21a913e]::-webkit-inner-spin-button {
  display: none;
}
.claim-input[data-v-c21a913e]:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}
.claim-input[data-v-c21a913e]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.claim-input[type=number][data-v-c21a913e] {
  -moz-appearance: textfield; /* Firefox */
  appearance: textfield;
}.presenter-view {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 100vh minmax(400px, 2fr);
  background-color: black;
}
.presenter-view ::selection {
  color: none;
  background: none;
}
.presenter-view .game-view {
  grid-column: 2;
}
.presenter-view .side-panel {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.presenter-view .control-panel {
  position: absolute;
  bottom: 0;
  right: 0;
}
.appear {
  animation: appear 2s linear forwards;
}
@keyframes appear {
0% {
    opacity: 0;
}
100% {
    opacity: 1;
}
}* {
  box-sizing: border-box;
}
h1,
h2 {
  margin: 0;
}
#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2c3e50;
  height: 100%;
}
body {
  height: 100vh;
  margin: 0;
  overflow: hidden;
}
.app-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.app-layer-hidden {
  visibility: hidden;
  pointer-events: none;
}