body {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif, sans-serif;
    background-image: url(Pokerwallpaper.jpg); 
    background-size: cover;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

h1 {
    color: gold;
    font-size: 100px;
    margin-top: 20px;
    text-decoration:underline;
}

.chips-container {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.chip {
    width: 115px;
    height: 110px;
    border-radius: 50%;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px; /* Schriftgröße für Casino Token */
    font-weight: bold; /* Fettdruck für Casino Token */
    box-shadow: 0 5px 6px rgba(0, 0, 0, 0.3); /* Schatten für Casino Token */
    padding-bottom: 5px;
}

.chip.red {
    background-image: url(RoterCoin.png);
    background-position-x: center;
    background-size: cover;
    color: gold; 
}

.chip.lightblue {
    background-image: url(BlueCoin.png);
    background-position-x: center;
    background-size: cover;
    color: gold; 
}

.chip.green {
    background-image: url(GreenCoin.png);
    background-position-x: center;
    background-size: cover;
    color: gold; 
}

.chip.black {
    background-image: url(BlackCoin.png);
    background-position-x: center;
    background-size: cover;
    color: gold; 
}

.chip.darkblue {
    background-image: url(DarkblueCoin.png);
    background-position-x: center;
    background-size: cover;
    color: gold; 
}

.chip.orange {
    background-image: url(OrangeCoin.png);
    background-position-x: center;
    background-size: cover;
    color: gold; 
}
/* Weitere Farben ... */

.chip button {
    font-size: 20px;
    padding: 5px 2.5px;
    margin: 5px;
    font-weight: bold;
    background-color: transparent;
    color: black;
    border: none;
    cursor: pointer;
}

.chip span {
    font-size: 25px;
    margin: 5px;
}

.value-container {
    margin-bottom: 5px;
    margin-top: 5px;
    display: flex;
    justify-content: center;
}

.input-container {
    display: flex;
    flex-direction: column;
    margin: 16px;
}

.input-container label {
    color: gold;
    margin-bottom: 5px;
    text-align: center; /* Zentriert den Text des Labels */
    margin-top: 0; /* Fügt oberen Abstand hinzu */
}

.input-container input {
    width: 95px; /* Breite der Input-Felder */
    text-align: center; /* Zentriert den Text in den Input-Feldern */
    margin-top: 5px;
}


button {
    font-size: 20px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: gold;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.result-container {
    font-weight: bold;
    margin-top: 20px;
}

.green {
    color: green;
}

.red {
    color: red;
}

/* Neue Klasse, um die Schriftfarbe für Nullwerte anzupassen */
.chip.zero {
    color: gold;
}

/* Neue Klasse, um den "Fertig"-Knopf mittig zu positionieren */
#finish-btn {
    display: block;
    margin: 0 auto;
    margin-top: 20px;
}
/* Neue Klasse für den "Reset"-Knopf */
#reset-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 16px;
    padding: 5px 10px;
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}