.clg-overlay {
	position: fixed;
	inset: 0;
	background: rgba(35, 41, 66, 0.65);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999999;
	padding: 20px;
	box-sizing: border-box;
}

.clg-modal {
	background: #fff;
	border-radius: 10px;
	max-width: 440px;
	width: 100%;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
	font-family: 'Open Sans', Arial, sans-serif;
}

.clg-modal-header {
	background: #5b7dbc;
	color: #fff;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.clg-modal-title {
	font-family: 'Century Gothic', 'Open Sans', Arial, sans-serif;
	font-weight: 600;
	font-size: 18px;
}

.clg-modal-close {
	background: none;
	border: none;
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

.clg-modal-body {
	padding: 22px 20px;
}

.clg-modal-message {
	margin: 0;
	color: #232942;
	font-size: 15px;
	line-height: 1.5;
	white-space: pre-line;
}

.clg-modal-footer {
	padding: 0 20px 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.clg-btn {
	display: inline-block;
	padding: 10px 18px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	border: none;
	font-family: 'Open Sans', Arial, sans-serif;
}

.clg-btn-primary {
	background: #5b7dbc;
	color: #fff;
}

.clg-btn-primary:hover {
	background: #4a6aa5;
	color: #fff;
}

.clg-btn-secondary {
	background: #f1f1f1;
	color: #232942;
}

.clg-btn-secondary:hover {
	background: #e2e2e2;
}
