#cbg-grimorio-container, #cbg-game-container, #cbg-bd-container {
    font-family: Arial, sans-serif;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cbg-section {
    margin-bottom: 30px;
}

.cbg-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.cbg-card {
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 6px;
    width: 140px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.2s;
}

.cbg-card:hover {
    transform: translateY(-3px);
}

.cbg-card.in-deck {
    border-color: #0073aa;
    background: #f0f6fc;
}

.cbg-card h4 {
    margin: 5px 0;
    font-size: 14px;
}

.cbg-card p {
    font-size: 12px;
    margin: 3px 0;
}

.cbg-card button {
    margin-top: 8px;
    padding: 4px 8px;
    font-size: 11px;
    cursor: pointer;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
}

.cbg-card button:hover {
    background: #005177;
}

.cbg-badge.inicial {
    display: inline-block;
    margin-top: 8px;
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
}
