body {
    font-family: Arial, sans-serif;
    background-color: #2a5c2a;
    color: white;
    margin: 0;
    padding: 20px;
}

.poker-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #1a3a1a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

h1 {
    text-align: center;
    color: gold;
    margin-bottom: 20px;
}

.game-info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    background-color: #0a2a0a;
    padding: 10px;
    border-radius: 5px;
}

.community-cards {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.odds-display {
    background-color: #0a2a0a;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.odds-item {
    display: flex;
    justify-content: space-between;
}

.odds-name {
    font-weight: bold;
}

.odds-value {
    color: gold;
}

.player-area {
    margin-top: 30px;
    background-color: #0a2a0a;
    padding: 20px;
    border-radius: 5px;
}

.player-cards {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.card-placeholder {
    width: 80px;
    height: 120px;
    background-color: white;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 24px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.player-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

button {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    background-color: gold;
    color: #1a3a1a;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #ffd700;
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

#bet-amount {
    width: 60px;
    padding: 5px;
    border-radius: 5px;
    border: none;
}

.game-log {
    margin-top: 20px;
    padding: 10px;
    background-color: #0a2a0a;
    border-radius: 5px;
    height: 100px;
    overflow-y: auto;
}

.game-log p {
    margin: 5px 0;
}
