.blackjack-table {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
}

.hands-container {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

#insuranceBtn {
  background-color: #f39c12;
  color: white;
}

#insuranceBtn:hover {
  background-color: #e67e22;
}

#dealBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #cccccc;
}

.hand {
  width: 48%;
}

.total {
  font-weight: bold;
  margin-top: 10px;
}

.actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

#bj-message {
  text-align: center;
  min-height: 24px;
  margin-top: 10px;
}

@media (max-width: 600px) {
  .card {
    width: 40px;
    height: 60px;
    font-size: 18px;
  }
}