.toast-alert {
	position: fixed;
	top: 20px;
	right: 20px;
	min-width: 220px;
	z-index: 2000;
	display: none;
}

.page-shell {
	font-family: Arial, sans-serif;
	max-width: 1600px;
	margin: 0 auto;
	padding: 0;
}

.header {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 15%;
	background-color: #363062;
	border-radius: 0 0 10px 10px;
	top: 0;
	z-index: 50;
	position: sticky;
	padding: 8px 0;
}

.header h1 {
	color: #f5f5f5;
	font-size: 40px;
}

.tabs-left {
	border-right: 2px solid #ddd;
	margin-top: 20px;
}

.tabs-left>li {
	margin-bottom: 5px;
}

.tabs-left>li>a {
	display: block;
	border-radius: 0;
	background: #f8f8f8;
	border: 1px solid #ddd;
	color: #333;
}

.tabs-left>li>a:hover {
	background: #e9ecef;
}

.tabs-left>li.active>a {
	background: #363062 !important;
	color: white !important;
}

.form-group {
	background: #f5f5f5;
	padding: 20px;
	border-radius: 10px;
	width: 100%;
	margin: 15px 0 0 0;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 300px;
}

.form-title {
	color: #363062;
	font-size: 25px;
	margin-bottom: 20px;
}

.form-input {
	width: 50%;
	height: 40px;
	margin-bottom: 20px;
	font-size: 16px;
	padding: 5px;
}

.action-button {
	width: 50%;
	height: 40px;
	font-size: 16px;
	background-color: #363062;
	color: #f5f5f5;
	border: none;
	cursor: pointer;
	border-radius: 8px;
}

.form-group p {
	margin-top: 20px;
	color: #363062;
	font-size: 20px;
}

.footer {
	width: 100%;
	height: 15%;
	justify-content: center;
	display: flex;
	align-items: center;
	font-size: 10px;
	background-color: #f99417;
	margin: 10px 0 0 0;
	padding: 10px 0 0 0;
	border-radius: 10px 10px 0 0;
}

.footer p {
	text-align: center;
	font-weight: bold;
	font-size: 18px;
	color: #f5f5f5;
}