.alert-error .icon-Alert-Octagon {
    font-size: 1.5rem;
    color: #E0593E;
}

.alert-error p {
    font-weight: bold;
    line-height: 20px;
}

.alert-base svg {
	width: 30px;
	height: 30px;
	min-width: 30px;
	min-height: 30px;
	position: absolute;
	left: 11px;
}

.alert-success .icon-Checkmark-Round {
    font-size: 1.5rem;
    color: #5ABB7A;
}

.aligner--contentStart {
	display: none;
}

.aligner--centerVertical {
	font-weight: 400;
}

.alert-success p {
    font-weight: bold;
    line-height: 20px;
}

.alert-container {
	position: fixed;
	width: 100%;
	height: auto;
	top: 55px;
	left: 0;
	z-index: 9999;
}

.alert-base {
	position: relative;
	text-align: center;
	max-width: 500px;
    width: 100%;
	margin: auto auto 5px;
	transition: opacity 0.3s;
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: center;
	padding: 16px 50px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	border-radius: 5px;
}

.alert-close-btn {
	margin-left: 14px;
	color: #1D2433;
	font-size: 22px;
	line-height: 20px;
	cursor: pointer;
	transition: 0.3s;
	position: absolute;
	right: 13px;
	top: 5px;
}

.alert-close-btn:hover {
	color: #1D2433;
}

.alert-error {
	color: #750000;
	background-color: #ffe0dc;
}

.alert-error svg {
	stroke: red;
}

.alert-success {
	color: #007200;
	background-color: #f3fcf4;
}

.forms-wrapper {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
}

/* JSON Data Sidebar */
.menu-json-data-sidebar {
	background-color: #f9f9f9;
	padding: 20px;
	margin-bottom: 20px;
	border: 1px solid #ddd;
	border-radius: 5px;
}

.menu-json-data-sidebar pre {
	white-space: pre-wrap;
	word-wrap: break-word;
}

/* Form Styles */
.form-wrapper {
	margin-bottom: 20px;
}

.form-wrapper form {
	background-color: #fff;
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-header {
	margin-bottom: 20px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
}

.form-header h3 {
	margin: 0;
	color: #0073e6;
}

.fieldset {
	margin-bottom: 20px;
}

.fieldset label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}

.fieldset input[type="text"],
.fieldset select {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-sizing: border-box;
	font-size: 16px;
}

.form-button-container {
	text-align: right;
}

.form-button-container input[type="submit"] {
	background-color: #0073e6;
	color: #fff;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	transition: background-color 0.3s;
}

.form-button-container input[type="submit"]:hover {
	background-color: #005bb5;
}