


body {
    font-family: Arial, sans-serif;
    text-align: center;
}

#jogador-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

#jogador, #charlie {
    flex: 1 1 300px;
    margin: 10px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

#bingo-board, #bingo-board-charlie {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 20px;
    width: 100%;
}

.bingo-cell {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
}

.bingo-cell div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    cursor: pointer;
}

.bingo-cell.selected div {
    background-color: yellow;
}

#sorteio-numeros, #numeros-sorteados {
    margin-top: 20px;
    font-size: 1.5em;
}

button {
    padding: 10px 20px;
    margin: 5px;
    font-size: 1em;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}
