body {
	margin: 0px;
	font-family: Arial, Helvetica, sans-serif;
	height: 100%;
}
input {
	font-size: 24px;
}
select {
	font-size: 24px;
}
label {
	font-size: 24px;
}

h3 {
	font-size: large;
	text-align: left;
	margin-left: 60px;
}

p {
	font-size: medium;
	margin-left: 80px;
	margin-top: 5px;
	margin-bottom: 5px;
}

#page {
	display: flex;
	flex-flow: column;
	justify-content: flex-start;
	gap: 3px;
	background-color: #c0c0ff;
	width: 100%;
	height: 100vh;
}
#header {
	display: flex;
	flex-flow: row;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	/* height: 60px; */
	background-color: blue;
	color: white;
	padding-left: 20px;
}
#home-button {
	margin-top: 10px;
	margin-left: 50px;
	width: 100px;
}

#help-content {
	display: flex;
	flex-flow: column;
	justify-content: flex-start;
	align-items: left;
	background-color: #c0c0ff;
	width: 100%;
}

#content {
	display: flex;
	flex-flow: column;
	justify-content: flex-start;
	align-items: center;
	background-color: #c0c0ff;
	width: 100%;
}

#content-block {
	display: flex;
	flex-flow: column;
	justify-content: space-around;
	align-items: center;
	background-color: #c0c0ff;
	width: 100%;
}

#main-page {
	display: flex;
	flex-flow: column;
	justify-content: flex-start;
	align-items: center;
	background-image: url(building.jpg);
	background-size: 480px;
	background-color: #c0c0ff;
	/* padding-bottom: 50px; */
	width: 480px;
	height: 326px;
	margin: 3px auto;
}

.sel-button {
	margin-left: 20px;
	margin-top: 20px;
	background-color: #c0c0ff;
	height: 50px;
	width: 300px;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 30px;
	border-radius: 8px;
	box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.5);
}

.hdr-button {
	/* margin-left: 20px;
	margin-top: 20px; */
	background-color: #c0c0ff;
	height: 36px;
	width: 100px;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 24px;
	border-radius: 8px;
	border-radius: 8px;
	box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.5);
}

.instruction {
	font-size: 18px;
	width: 80%;
	margin: 10px auto;
	background-color: #c0c0ff;
}

table, th, td {
	font-size: 20px;
	border: 1px solid;
	border-collapse: collapse;
}

td {
	padding: 2px 20px;
}

.tr-selected {
	background-color: #ffff00;
}

.tr-not-selected {
	background-color: #ffffff;
}

.tr-scheduled {
	background-color: #c00000;
}

#sched-div {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-evenly;
	align-items: flex-start;
	/* margin-left: 40px; */
	/* margin-top: 20px; */
	/* padding: 0px 10px; */
	font-size: 24px;
	width: 80%;
}

#sched-input {
	display: flex;
	flex-flow: column;
	/* margin-left: 40px; */
	margin-top: 20px;
	padding: 0px 10px;
	/* font-size: 24px; */
}

#date-div {
	display: flex;
	flex-flow: column;
}

#sched-date {
	display: flex;
	flex-flow: column;
	margin-top: 20px;
	/* margin-left: 40px; */
}

#sched-times {
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin-top: 20px;
}
.sched-time {
	font-size: 36px;
}
.sched-name {
	font-size: 30px;
}

.end-button {
	margin-right: 20px;
	height: 40px;
}

.entry-div {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: left;
}

#buttons-div {
	display: flex;
	flex-flow: row;
	margin-top: 20px;
	margin-left: 20px;
}

#add-controls {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	/* align-items: left; */
	margin: 20px auto;
	gap: 10px;

}