body {
	font-family: 'Arial', sans-serif;
	background-color: #f4f4f4;
	margin: 0;
	padding: 50px 0;
}

.hidden {
	display: none;
}

#rallyOptions {
	max-width: 500px;
	background-color: #ffffff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	margin: 0 auto;
}

label {
	display: block;
	margin-bottom: 20px;
	font-size: 0.9em;
}

input[type="radio"] {
	margin-right: 10px;
}

input[type="text"],
select {
	width: 90%;
	padding: 10px 15px;
	margin-top: 5px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1em;
	outline: none;
	transition: border-color 0.2s;
}

input[type="text"]:focus,
select:focus {
	border-color: #007BFF;
}

input[type="submit"] {
	background-color: #007BFF;
	color: #ffffff;
	padding: 10px 15px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.2s;
}

input[type="submit"]:hover {
	background-color: #0056b3;
}