body {
	background-color: #5996acf1;
	color: #e0c9a8;
	font-size: 1.6em;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	background-image: url("/images/background.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: 100% 100%;
	margin: 0;
	padding: 0;
	max-height: 100vh;
}
div {
	padding-top: 15px;
	padding-left: 25px;
}
html {
	margin: 0;
	padding: 0;
}
th {
	padding: 12px 15px;
	text-align: left;
	font-weight: bold;
	border-bottom: 2px solid #ddd; /* Subtle line below headers */
}
td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid #ddd; /* Subtle line between rows */
	font-size: 0.7em;
}
/*      Id Selectors    */
#winnerTable {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
}
#tryAgainMessage {
	display: none;
	text-align: center;
	width: 20%;
	font-size: 1.6em;
	border-radius: 10px;
	border: #fbe9d0 solid 3px;
	color: #183039;
	background-color: #5996acf1;

	padding: 10px;
	font-weight: bold;

	position: absolute;
	left: 75%;
	top: 75%;
	transform: translateY(-50%);
}
#realSubmit {
	display: flex;
	position: absolute;
	width: 8%;
	height: 50px;
	opacity: 0;
	left: 38%;
}
#title {
	font-size: 1.5em;
	text-align: center;
	color: #234754;
	padding-top: 20px;
	font-weight: bold;
}
#wrapForm {
	border: #e0c9a8 solid 5px;
	border-radius: 25px;
	width: 40%;
	margin: auto;
	margin-top: 20px;
	display: block;
	background-color: #5996acf1;
	padding: 20px;
}
#wrapScoreboard {
	border: #e0c9a8 solid 5px;
	border-radius: 25px;
	width: 50%;
	margin: auto;
	margin-top: 20px;
	display: block;
	background-color: #5996acf1;
	padding: 20px;
}
#description {
	text-align: center;
	font-style: italic;
}
#submitButton {
	width: 150px;
	height: 50px;
	font-size: large;
	border-radius: 10px;
	border: #fbe9d0 solid 1px;
	color: #244855;
	font-size: 0.8em;
	background-color: #5996acf1;
}
#submitWrapper {
	display: flex;
	justify-content: center;
	padding: 20px;
}
#timeDisplay {
	text-align: center;
	width: 20%;
	height: 50px;
	font-size: 1.2em;
	border-radius: 10px;
	border: #fbe9d0 solid 3px;
	color: #183039;
	background-color: #5996acf1;

	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;

	position: absolute;
	left: 75%;
	top: 30%;
	transform: translateY(-50%);
}

#ruleDisplay {
	text-align: center;
	width: 20%;
	min-height: 120px;
	font-size: large;
	border-radius: 10px;
	border: #fbe9d0 solid 3px;
	color: #183039;
	background-color: #5996acf1;

	padding: 10px;
	font-weight: bold;

	position: absolute;
	left: 75%;
	top: 53%;
	transform: translateY(-50%);
}

#rules {
	margin: 0;
	padding-left: 20px;
	line-height: 150%;
	text-align: left;
	font-weight: normal;
}

#passwordOutput,
#emailOutput,
#usernameOutput,
#phoneNumberOutput {
	display: none;
	color: #244855;
	margin: auto;
	border: #fbe9d0 solid 2px;
	border-radius: 8px;
	width: 92%;
	margin-left: 0;
	padding: 10px;
	font-size: 0.8em;
	line-height: 130%;
}
#winnerTitle {
	color: #244855;
	text-align: center;
	font-size: 2em;
}
#winnerP {
	text-align: center;
}
/*      Class Selectors    */
.block {
	display: block;
	color: #244855;
	padding: 5px;
	font-size: 0.85em;
}
.textbox {
	outline: none;
	position: relative;
	border-radius: 2px;
	margin: 0 0 20px 0;
	padding-left: 5px;
	box-sizing: border-box;
	background-color: #5996acf1;
	height: 40px;
	font-size: 0.8em;
	color: #244855;
	border-bottom: 2px #fbe9d0 solid;
	border-top: none;
	border-left: none;
	border-right: none;
}
.textbox::-webkit-calendar-picker-indicator {
	display: none; /* Hide the default dropdown arrow */
}
