
body {
  background-image: url('/images/blackjack_table.png');
  background-size: cover;      /* Ensures the image covers the screen */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat;
  }
.cards-container img {
  display: block;
  margin: 10px;
  margin-bottom: 0px;
  height: 130px;
  width: auto;
}
.container { 
  display: block;
  flex-direction: column;
  justify-content: center;    
}
.status-container {
  display: flex;
  justify-content: center;
  justify-items: space-around; 
  font-size: x-large;
  font-weight: bold; 
  margin-left: 20px;
  margin-right: 20px;
  padding: 0px;
}
.chips-container {
  display: flex;
  padding-left: 0px;
}
.bet-container {
  display: flex;
}
.chips,.bet{
  color: lightblue;
}
.chip-stack, .bet-amt {
  color: white;
}
.message-container {
  padding: 0px 0px 0px 0px;
  display: flex;
  justify-content: center;
}
.message {
  color: rgb(236, 176, 115);
}
.dealer-cards-container {
  display: block;
  justify-content: center;
}
.cards-container {
  padding: 0px 10px 5px 0px;
  display: flex;
  justify-content: center;
}
.split_hands {
  display: flex;
  justify-content: center;
}
.main_hand {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.extra_hand {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.button-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 0px 0px 0px;  
  margin: 0px;
}
.bet-button-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0px;
  margin-top: 10px;
}
.play-button-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  /*justify-items: space-around; */
  padding: 0px;
}
.bet-button {
  display: block;
  background-color: #4444FF;
  font-size: 22px;
  color: #FFFFFF;
  border-radius: 20px;
  font-family: serif;
  font-weight: bold;
  padding: 10px;
  transition-duration: 0.8s;
  margin: 10px;
}
.bet-button:hover {
  background-color: red;
}
.play-button {
  display: block;
  width: 12%;
  margin: 5px;
  margin-bottom: 200px;
  background-color: #4444FF;
  font-size: 22px;
  color: #FFFFFF;
  border-radius: 20px;
  font-family: serif;
  font-weight: bold;
  padding: 15px;
  transition-duration: 0.8s;
}
.play-button:hover {
  background-color: red;
}


