section.motion {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: max-content;
}

button {
	border: none;
	border-radius: 20px;
	font-weight: bold;
	margin: 5px 10px;
	padding: 10px 16px;
	cursor: pointer;
}

button.vote {
	background-color: lightgreen;
	font-size: x-large;
}

button.instructions {
	background-color: lightgray;
	font-size: large;
}

button.close {
	background-color: lightgray;
	font-size: large;
	margin: 10px;
	border: none;
	border-radius: 10px;
}

button.vote.demo,
button.instructions.demo {
	font-size: inherit;
	margin: 0;
	padding: 5px;
}

button:not(.demo):hover {
	scale: 1.1;
	transition: transform 0.2s;
}

table.ballot_details th {
	text-align: left;
	padding: 5px 10px;
}

.redBold {
	font-weight: bold;
	color: red;
}
