.azul-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.azul-popup-overlay-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 48px 40px;
	max-width: 420px;
	width: 90%;
	text-align: center;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.azul-popup-spinner {
	width: 48px;
	height: 48px;
	border: 4px solid #e0e0e0;
	border-top-color: #0073aa;
	border-radius: 50%;
	animation: azul-overlay-spin 0.8s linear infinite;
	margin: 0 auto 24px;
}

@keyframes azul-overlay-spin {
	to {
		transform: rotate(360deg);
	}
}

.azul-popup-message {
	font-size: 18px;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 0 8px;
	line-height: 1.4;
}

.azul-popup-submessage {
	font-size: 14px;
	color: #666666;
	margin: 0 0 28px;
	line-height: 1.4;
}

.azul-popup-close-btn {
	display: inline-block;
	padding: 10px 32px;
	background: transparent;
	color: #0073aa;
	border: 2px solid #0073aa;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	line-height: 1;
}

.azul-popup-close-btn:hover {
	background: #0073aa;
	color: #ffffff;
}

.azul-popup-close-btn:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.3);
}
