body {
	display: flex;
	flex-direction: column;
		/*justify-content: center;
		align-items: center;*/
	height: 100vh;
	background-color: #f4f4f4;
	font-family: Arial, sans-serif;
	margin: 0;
}
.login-container {
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	width: 300px;
	text-align: center;
}
.login-container h2 {
	margin-bottom: 20px;
}
.login-container input {
	width: 100%;
	padding: 10px;
	margin: 10px 0;
	border: 1px solid #ccc;
	border-radius: 5px;
}
.login-container button {
	width: 100%;
	padding: 10px;
	background: #007bff;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}
.login-container button:hover {
	background: #0056b3;
}

.map-toolbar {
	height: 100px;
	background: #007bff;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: bold;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
.map-content {
	display: flex;
	flex-grow: 1;
}
.map-sidepanel {
	width: 300px;
	background: white;
	padding: 20px;
	box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.1);
}
.map-container {
	flex-grow: 1;
	background: #ddd;
	display: flex;
	justify-content: center;
	align-items: center;
}
.map-footer {
	height: 20px;
	background: #007bff;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
}
