/* Allgemeine Stile */
body {
    overflow: hidden;
}

/* Bingo Board Stile */
.number-cell {
    transition: all 0.3s ease;
}

.number-cell.called {
    background-color: #4CAF50;
    color: white;
}

.current-number {
    font-size: 275px; /* oder noch größer wenn gewünscht */
    line-height: 1;
	animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Mini Bingo Board Styles */
.grid-cols-15 {
    grid-template-columns: repeat(15, 1fr);
}

#miniBingoBoard {
    aspect-ratio: 3/1;
}

#miniBingoBoard > div {
    aspect-ratio: 1;
    font-size: 0.7rem;
    font-weight: bold;
}

.bingo-grid {
    display: grid;
    grid-template-columns: repeat(15, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 0.5rem;
    height: 100%;
}

/* Modal Stile */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

/* Print Stile */
@media print {
    body {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    .number-cell {
        border: 1px solid #000;
    }

    .bingo-card {
        page-break-inside: avoid;
    }

    .header-cell {
        background-color: #000 !important;
        color: white !important;
    }

    .emoji-cell {
        background-color: #f0f0f0 !important;
    }
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .bingo-grid {
        gap: 0.25rem;
    }

    .number-cell {
        font-size: 1rem;
    }

    .current-number {
        font-size: 4rem;
    }
}