.error-modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
}

.error-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1001;
	min-width: 500px;
	max-width: 700px;
}

.error-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.error-modal-title {
	font-size: 18px;
	font-weight: bold;
	color: #333;
}

.error-modal-close {
	background: none;
	border: none;
	font-size: 25px;
	cursor: pointer;
	color: #666;
}

.error-modal-body {
	margin-bottom: 15px;
}

.error-modal-message {
	color: #d32f2f;
	margin-bottom: 10px;
	line-height: 1.5;
}

.error-modal-footer {
	display: flex;
	justify-content: flex-end;
}

.error-modal-button {
	padding: 8px 16px;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	font-size: 14px;
}

.error-modal-button-close {
	background-color: #f5f5f5;
	color: #333;
}

.error-modal-button-close:hover {
	background-color: #e0e0e0;
}
