body {
	width: 90%;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

body > * {
	margin: 8px;
	padding: 8px;
}

.rsvp {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.logout {
	position: absolute;
	top: 0;
	right: 0;
}

.line {
	width: 100%;
	margin: 16px 48px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	background-color: white;
}

.choices {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.choice {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 4px;
}

.name {
	margin: 0 32px;
	font-size: 32px;
}

.name, .question {
	margin: 0 32px;
}

.answers {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: center;
}

.answer {
	width: 128px;
	flex: 1;
	text-align: center;
}

input[type="radio"] {
	display: none;
}

label {
	display: block;
	background-color: #eee;
	border: 1px solid #ccc;
	cursor: pointer;
	line-height: 32px;
}

label:hover {
	background-color: #ddd;
}

input[type="radio"][id$="_yes"]:checked + label {
	background-color: #afa;
}

input[type="radio"][id$="_no"]:checked + label {
	background-color: #faa;
}
  
input[type="submit"] {
	margin: 16px auto;
	padding: 8px 16px;
	border: 1px solid #444;
	border-radius: 8px;
	background-color: #eee;
	color: black;
}

input[type="submit"]:hover {
	background-color: #ccc;
	cursor: pointer;
}
