.banner {
	background-color: var(--background-light);
	width: 100%;
}

.login-form {
	width: 350px;
}

.login-banner {
	background-color: var(--background-light2);
	width: 100%;
}

.login-banner tr td {
	font-size:1em;
	font-weight:bold;
	padding-top:2px;
	white-space: nowrap;
}

.menu-link {
	text-decoration: none;
}

.menubar-icon {
	padding: 0px 5px 5px !important;
	color: black;
	text-decoration: none;
}

.icon {
	border: 0px;
}

@media all and (min-width: 900px) {
	.banner {
		font-size: 25px;
	}

	.banner a img {
		width: 50px;
	}

	.login-banner tr td {
		height: 27px;
		width: 35px;
	}

	.menu-link {
		font-size: 15px;
	}

	.menu-table tr {
		height: 30px;
	}

	.icon {
		height: 150px;
	}


	.login-form {
		height: 200px;
	}

	.prefs-modal {
		width: 400px;
		left: 20;
		top: 60;
	}
}

@media all and (max-width: 900px) {
	body {
		font-size: 40px;
	}

	.banner {
		font-size: 10vw;
	}

	.banner a img {
		width: 150px;
	}

	.login-form {
		width: 100%;
		height: 600px;
	}

	.login-form form table tr td {
		font-size: 6vw;
		height: 3vw;
		margin-right: 20px;
	}

	.login-form form table tr td input {
		font-size: 6vw;
		width: 100%;
	}

	.login-banner tr td {
		height: 120px;
		font-size: 60px;
	}


	.menu-table tr {
		height: 100px;
	}

	.menu-link {
		font-size: 60px;
	}

	.icon {
		height: 300px;
	}

	.prefs-modal {
		width: 100%;
		left: 0;
		top: 0;

	}

}

table {
	padding: 2px 0 0 0;
	margin: 0 0 2px 0;
	border-spacing: 0;
}

.items-table tr {
	height: 25px;
}

.items-table tr:nth-child(even){
	background-color: var(--background-light3);
}

.items-table tr td {
	padding: 5px;
}

.zoom {
	padding: 5px;
	transition: transform .2s; /* Animation */
	height: 100px;
	margin: 0 auto;
}

.zoom:hover {
	transform: scale(2); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

/* The Modal */
.edit-popup {
	display: none; /* Hidden by default */
	position: absolute; /* Stay in place */
	z-index: 1; /* Sit on top */
	left: 10%;
	top: 0;
	width: 800px; /* Full width */
	height: 810px; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.edit-popup-content {
	background-color: var(--background-light3);
	margin: 5% auto;
	padding: 10px;
	border: 1px solid var(--background-med);
	width: 90%; /* Could be more or less, depending on screen size */
	height: 700px;
}

.edit-popup-content table tr td {
	padding: 10px;
}

/* The Close Button */
.close {
	color: var(--background-med2);
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

.prompt {
	float: left;
	width: 200px;
	font-weight: bold;
}
.input {
	float: left;
	width: 500px;
}

.prefs-modal {
	display: none; /* Hidden by default */
	position: absolute; /* Stay in place */
	z-index: 1; /* Sit on top */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.prefs-modal-menu {
	background-color: #fefefe;
	margin: 5% auto; /* 5% from the top and centered */
	padding: 20px;
	border: 1px solid #888;
	width: 60%; /* Could be more or less, depending on screen size */
	line-height: 1.5em;
}

.modal-close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.modal-close:hover,
.modal-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}