/* Poker Game Specific Styles */
.game-board#poker-board {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 80vh;
    padding: 20px;
    box-sizing: border-box;
}

.hand-area, .community-area {
    width: 100%;
    text-align: center;
    margin: 10px 0;
}

.hand-label {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 8px;
}

.community-area .cards {
    min-height: 100px; /* Ensure space is reserved */
}

.pot-info {
    font-weight: bold;
    font-size: 1.2rem;
    color: #ffd700; /* Gold color for pot */
    margin-top: 10px;
}

.game-status {
    font-size: 1.1rem;
    font-weight: bold;
    min-height: 25px;
    margin: 10px 0;
}

#poker-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    min-height: 40px;
}

#poker-actions button {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    transition: background-color 0.2s;
}

#poker-actions button:hover {
    background-color: #0056b3;
}

#poker-actions button:disabled {
    background-color: #555;
    cursor: not-allowed;
}

#poker-actions .fold-btn {
    background-color: #dc3545;
}
#poker-actions .fold-btn:hover {
    background-color: #c82333;
}

#poker-actions .check-btn {
    background-color: #28a745;
}
#poker-actions .check-btn:hover {
    background-color: #218838;
}
