body {
    font-family:'Oswald';
    background-image: url(images/table_.png);
    
    font-weight: bold;
    color: white;
    text-align: center;
}
button{
    cursor: pointer;
    border-radius: 4px;
    
}
.top-buttons{
    display: flex;
    justify-content: flex-end;
    padding: 10px;
}
#reload-button img{
    width: 30px;
    height: 30px;
}
#reload-button{
    background: goldenrod;
    font-weight: bold;
    border: 2px solid black;
    color: #000000;
    width: 50px;
    height: 50px;
    font-weight: bold;
    border: none;
    
}
.cards-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px 0;
}
#player-cards-container,
#dealer-cards-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}
.card {
    width: 80px;
    align-items: center;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.card:hover {
    transform: scale(1.1);
}

#container{
    display: flex;          
    justify-content: center; 
    align-items: center;    
    margin: 0; 
}
#total-el{
    margin-top: 0;
}
#dealer-totalEl{
    margin-top: 0;
    color:rgb(255, 255, 255);
}
#dealer-info{
    display: none;
    margin-top: 0;
    margin-bottom: 16px;
    color:rgb(255, 255, 255);
}
#message-el{
    font-size: 3vh;
}
#start-bet-btns{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#bet-el{
    margin-top: 0;
    margin-bottom: 16px;
    display: none;
}

#cards-el{
    margin-top: 0;
}
#text-elms{
    display:none;
    flex-direction: column;
    
}
#dealer-el{
    margin-top:0;
    margin-bottom: 16px;
    color:rgb(255, 0, 0);
    font-size: 3vh;
}


#bet-input {
    display: none; 
  }
.hidden {
    display: none;
}
#bet{
    width:50px;
    background-color:rgba(66, 222, 63, 0.852);
    border-radius: 4px;
}
h1 {
    color: goldenrod;
}
#busted-txt{
    color:red;
}
#win-txt{
    color:goldenrod;
    font-size: 8vh;
}
#continue-button{
    display:none;
    background:red;
    border: 2px solid black;
    color: #000000;
    width: 150px;
    height: 8vh;
    font-weight: bold;
    border: none;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-left: 8px;
    margin-right: 8px;
    margin-bottom: 4px;
    margin-top: 2px;
}
#submit-bet{
    background: goldenrod;
    font-weight: bold;

}
#start-button{
    display: inline-block;
}
#hit-button,#stand-button{
    display:none;
}
#place-bet-button{
    align-items: center;
    font-weight: bold;
    background:rgb(33, 211, 63);
    width:8vh;
    height: 8vh;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-left:0px;
    margin-right: 0px;
    margin-bottom: 4px;
    margin-top: 2px;
}
#stand-button,#start-button,#hit-button {
    color: #000000;
    width: 150px;
    background: goldenrod;
    height: 8vh;
    font-weight: bold;
    border: none;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-left: 8px;
    margin-right: 8px;
    margin-bottom: 4px;
    margin-top: 2px;
}