body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.bingo-board {
    display: grid;
    grid-template-columns: repeat(9, 50px);
    grid-template-rows: repeat(10, 50px);
    gap: 5px;
}

.bingo-cell {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border: 2px solid #ccc;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.bingo-cell:hover {
    background-color: #f9f9f9;
}

.bingo-cell.marked {
    background-color: #d1e7dd;
    color: #0f5132;
}

.candidate {
	background-color: blue;
	margin: 0.3rem;
	border-radius: 0.3rem;
	padding: 0.3rem;
	color: white;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.winner {
	background-color: red;
	margin: 0.3rem;
	border-radius: 0.3rem;
	padding: 0.3rem;
}

#reboot-button {
	display: block;
	padding: 0.5rem;
	border-radius: 0.3rem;
	background-color: #007bff;
	color: white;
	border: none;
	cursor: pointer;
	margin-top: 1rem;
	margin-left: auto;

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