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

.baccarat-hands {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.baccarat-hand {
  width: 45%;
  text-align: center;
}

.baccarat-hand .cards {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
  min-height: 100px;
}

.baccarat-bets {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.baccarat-bets button {
  padding: 10px 15px;
}

#bet-player {
  background-color: #4caf50;
}

#bet-banker {
  background-color: #2196F3;
}

#bet-tie {
  background-color: #ff9800;
}

.baccarat-bets button:hover {
  opacity: 0.9;
}

#baccarat-message {
  text-align: center;
  min-height: 24px;
  margin-top: 10px;
  font-weight: bold;
}

@media (max-width: 600px) {
  .baccarat-hand .cards {
    flex-wrap: wrap;
  }
}