﻿body {
	background-color: black;
	vertical-align:top;
	font-size: 1.2rem;
}

.landing {
	padding: 20px;
	text-align: center;
}

.image-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
}

.top-right-text {
	position: absolute;
	top: 0;
	right: 0;
	padding: 20px;
	font-family: 'Segoe UI', sans-serif;
	font-size: 2.5rem;
	color: white;
}

.login-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	background-color: black; /* Optional page background */
}

.login-box {
	background-color: #fff;
	padding: 30px 40px;
	border: 1px solid gold;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	font-family: 'Segoe UI', sans-serif;
	font-size:1.5rem;
}

.login-button {
	margin-top: 10px;
	padding: 5px 20px 5px 20px;
	font-size: 1.5rem;
	text-align:center;
}

.login-box input[type="text"],
.login-box input[type="password"] {
	font-size: 2.0rem;
	padding: 10px;
	width: 100%;
	box-sizing: border-box;
}

.flex-layout {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 10% 5px;
	background-color: white;
}

.flex-spacer {
	flex: 1 1 10%;
}

.flex-panel {
	flex: 1 1 40%;
	padding: 10px;
}

.info-box {
	width: 100%;
	border-radius: 5px;
	border: 1px solid #ccc;
	padding: 20px;
	background-color: #f9f9f9;
}

.info-box legend {
	font-weight: bold;
	font-size: 1.1rem;
	margin-bottom: 10px;
}

.input-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-top: 10px;
}

.defaultLabel {
	font-size: 1.2rem;
}

.defaultTextBox {
	font-size: 1.2rem;
}

legend {
	font-size:1.5rem;
}

.center-container {
	width: 100%;
	display: flex;
	justify-content: center;
}

.inner-wrapper {
	width: 80%;
}

.pickr {
	position: fixed !important;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
	z-index: 9999; /* Ensure it stays on top */
}

.popup-color-picker {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1000; /* Ensure it appears above other elements */
	background-color: #fff; /* Optional: Background for the popup */
	padding: 20px; /* Optional: Add some padding */
	border-radius: 8px; /* Optional: Rounded corners */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Add a shadow */
}

.picturePanel {
	padding:10%;
	vertical-align:middle;
	text-align:center;
	margin:10%;
}

.picture {
	width:80%;
	resize: inline;
}