
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;
}
.row  {
  display: flex;
  justify-content: center;
}
.row p {
  font-size: larger;
  font-weight: bolder;
  text-align: center;
  color: rgb(236, 176, 115);
  padding: 0px;
  margin: 0px;
}
.text_box {
  margin-left: 20px;
  margin-right: 10px;
}
.container { 
  display: block;
  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;
}


