/* c:\xampp\htdocs\bingo\assets\css\style.css */

body {
    background-color: #f8f9fa;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

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

.bola-sorteada {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff, #0d6efd);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin: 5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cartela-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    margin-top: 15px;
}

.cartela-cell {
    border: 2px solid #333;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    background-color: white;
}

.cartela-cell.acerto {
    background-color: #198754;
    color: white;
}

/* Print CSS for Cartelas */
@media print {
    body {
        background-color: white;
    }
    nav, .no-print {
        display: none !important;
    }
    .print-cartela {
        page-break-inside: avoid;
        margin-bottom: 20px;
        border: 2px dashed #ccc;
        padding: 15px;
    }
    .container {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}
