.wgab-match-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.wgab-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.wgab-pot-info {
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #666;
}

.wgab-highlight {
    font-weight: bold;
    color: #0073aa;
}

.wgab-bet-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wgab-input-amount {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.wgab-bet-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
}

.wgab-btn-bet {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}

.wgab-btn-bet:hover { background: #005177; }

.wgab-avatars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.wgab-avatar-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f4f4f4;
    padding: 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.wgab-response-message {
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
}