p {
	font-family: monospace;
	color: white;
}

h1 {
	font-family: monospace;
	color: white;
}

h2 {
	font-family: monospace;
	color: white;
}

body {
	background-color: #414141;
	display: flex;
	flex-direction: column;
	margin: 0px;
	/* overflow: hidden; */

	/* background-image: url("/assets/cool-background.png");
	background-blend-mode: darken; */

}

#background {
	position: absolute;
	z-index: -1;
	padding: 0px;
	margin: 0px;
}

.navbar {
	background-color: rgba(0, 0, 0, 0.5);
	padding: 5px;
	display: flex;
}

.navbar a {
	font-size: 16px;
	margin-left: 50px;
	border-style: solid;
	border-color: white;
	border-width: 1px;
}

.navbar a:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.navbar p {
	padding: 10px 5px 10px 5px;
	margin: 0px
}

.content {
	margin: 15px
}

.content p {
	font-size: 16px;
}

.main-image {
	margin-right: 10px;
}

.website {
	max-width: 150px;
	text-align: center;

	border: 1px solid white;
	border-radius: 5px;

	margin: 10px;
}

.website p {
	font-size: 12px;
}

.website-title {
	font-size: 20px !important;
}

.websites {
	flex-direction: row;
	display: flex;
}

.scroll-y {
	overflow-y: auto !important;
}


/* Grades Table Styles */
.tableWrapper {
	width: 100%;
	position: relative;
}

.tableScroll {
	height: calc(100vh - 90px);
	overflow: auto;

}

.tableScroll::-webkit-scrollbar {
	width: 10px;
}

.tableScroll::-webkit-scrollbar-track {
	background: rgb(51, 51, 51);
	border: solid 1px rgb(61, 61, 61);
}

.tableScroll::-webkit-scrollbar-thumb {
	background-color: rgb(128, 128, 128);
	border-radius: 5px;
	width: 5px;
}

.gradesTable {
	font-family: monospace;
	color: #ebebeb;

	border-spacing: 0;
	border-collapse: collapse;
	width: 100%;

	background-color: rgb(26, 26, 26);
}

.gradesTable thead {
	background-color: rgb(51, 51, 51);
	font-size: 14px;
	height: 42px;
}

.gradesTable th,
.gradesTable td {
	padding-left: 25px;
}

.gradesTable tr {
	border-bottom-color: rgb(71, 71, 71);
	border-bottom-width: 1px;
	border-bottom-style: solid;

	border-top-color: rgb(71, 71, 71);
	border-top-width: 1px;
	border-top-style: solid;

	height: 40px;
}

.gradesTable tr:hover {
	background-color: rgb(51, 51, 51);
	cursor: pointer;
}

.optionHeader p,
.gradesTable thead th {
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: left;

	font-weight: normal;
}

.userForm {
	font-family: monospace;
	color: white;
}

.userForm input,
.userForm textarea {
	background-color: rgb(150, 150, 150);
	border: solid 1px rgb(61, 61, 61);

	/* margin: 10px; */
	/* margin-left: 15px; */
	/* padding-left: 5px; */
	/* height: 30px; */
	/* width: calc(100% - 35px); */
	/* box-sizing: border-box; */
	font-family: monospace;
	color: white;
}

.userForm label {
	font-size: 16px;
}

.userFormSubmit {
	background-color: rgb(102, 102, 102);
	border: none;
	font-family: monospace;
	color: white;
	font-size: 24px;
	margin-left: 10px;
	margin-right: 10px;
}