body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

#game {
    text-align: center;
    margin-top: 50px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #333;
}

#dealer, #player {
    margin-bottom: 20px;
}

#dealer-hand, #player-hand {
    display: inline-block;
    margin-right: 10px;
}

.card {
    width: 100px;
    height: 150px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 8px;
    text-align: center;
    line-height: 150px;
    font-size: 24px;
    position: relative;
}

#dealer-hand {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#dealer-hand .card {
    position: relative;
    left: -50px; /* Anpassung der Überlappung */
    z-index: 1; /* Um die Karten zu überlappen */
}

#player-hand {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#player-hand .card {
    position: relative;
    left: -50px; /* Anpassung der Überlappung */
    z-index: 1; /* Um die Karten zu überlappen */
}


.symbol {
    font-size: 30px;
}

button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}
/* Hier Ihre vorhandenen CSS-Stile */

#bet-section {
    margin-bottom: 20px;
}

/* Vorheriger CSS-Code bleibt unverändert */

#bet-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

#bet-input-row {
    display: flex;
    align-items: center;
}

#bet-input-row button {
    margin: 0 5px;
}

#bet-amount, #balance {
    margin-top: 10px;
}

