#board {
  display:none;
}
.site-content{
  background-color: #CE86B9!important;
}

.table-area-style {
  border: 5px dotted white;
  border-radius: 10px;
  display: flex;
  overflow-x: auto;
}

.hand-area-style {
  margin-top: 20px;
}

.slots {
  padding: 0.5em;
  border: 1px solid;
  display: none;
  width: 25%;
}


.game-card, .card-table {
  position: relative;
  border: 10px solid #FAA31C;
  margin: 10px;
  padding: 10px;
  border-radius: 15px;
  float: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #EDE592;
  width: 25%;
  height: 38vw;
}

.game-card{
  cursor: pointer;
}

.card-title, .card-year, .card-question, .slot-text {
  font-size: 1.5vw!important;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  color: black!important;
}

@media (max-width: 768px) {
  .card-title {
    font-size: 2.5vw;
  }
  .card-description,
  .card-year {
    font-size: 2vw;
  }
}

.popup-style {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.popup-content-style {
  margin: 50px 20px;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  height: 100%;
  overflow: auto;
}

.popup-title {
  margin-top: 0;
}

.close-popup-style {
  background-color: #f44336;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}
.popup-title, .popup-description {
  color: black;
}

.game-card.dragging::before {
    content: "";
    position: absolute;
    top: -2vw;
    left: 50%;
    transform: translateX(-40%);
    width: 0;
    height: 0;
    border-left: 2vw solid transparent;
    border-right: 2vw solid transparent;
    border-bottom: 2vw solid #fff;
}
